@indice/ng-components 0.5.1 → 0.6.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/indice-ng-components.mjs +1395 -1748
- package/fesm2022/indice-ng-components.mjs.map +1 -1
- package/package.json +9 -8
- package/types/indice-ng-components.d.ts +1959 -0
- package/index.d.ts +0 -1929
|
@@ -0,0 +1,1959 @@
|
|
|
1
|
+
import * as _angular_core from '@angular/core';
|
|
2
|
+
import { OnInit, OnChanges, OnDestroy, ElementRef, NgZone, SimpleChanges, ChangeDetectorRef, QueryList, TemplateRef, Signal, AfterContentInit, AfterContentChecked, AfterViewChecked, ComponentRef, ViewContainerRef, EnvironmentInjector, ApplicationRef, Injector, Type, StaticProvider, AfterViewInit, PipeTransform, InjectionToken, Renderer2, RendererFactory2, ModuleWithProviders, EnvironmentProviders } from '@angular/core';
|
|
3
|
+
import { Observable, Subject, Subscription } from 'rxjs';
|
|
4
|
+
import * as i2 from '@angular/router';
|
|
5
|
+
import { Params, ActivatedRouteSnapshot, Route, Router, ActivatedRoute, Event as Event$1 } from '@angular/router';
|
|
6
|
+
import * as i4 from '@angular/forms';
|
|
7
|
+
import { ControlValueAccessor, AbstractControl } from '@angular/forms';
|
|
8
|
+
import * as _indice_ng_components from '@indice/ng-components';
|
|
9
|
+
import * as i3 from '@indice/ng-auth';
|
|
10
|
+
import { AuthService } from '@indice/ng-auth';
|
|
11
|
+
import { User } from 'oidc-client-ts';
|
|
12
|
+
import { Observable as Observable$1 } from 'rxjs/internal/Observable';
|
|
13
|
+
import * as i1 from '@angular/common';
|
|
14
|
+
import { Location } from '@angular/common';
|
|
15
|
+
|
|
16
|
+
declare class ClickOutsideDirective implements OnInit, OnChanges, OnDestroy {
|
|
17
|
+
private _el;
|
|
18
|
+
private _ngZone;
|
|
19
|
+
private platformId;
|
|
20
|
+
readonly clickOutsideEnabled: _angular_core.InputSignal<boolean>;
|
|
21
|
+
readonly attachOutsideOnClick: _angular_core.InputSignal<boolean>;
|
|
22
|
+
readonly delayClickOutsideInit: _angular_core.InputSignal<boolean>;
|
|
23
|
+
readonly emitOnBlur: _angular_core.InputSignal<boolean>;
|
|
24
|
+
readonly exclude: _angular_core.InputSignal<string>;
|
|
25
|
+
readonly excludeBeforeClick: _angular_core.InputSignal<boolean>;
|
|
26
|
+
readonly clickOutsideEvents: _angular_core.InputSignal<string>;
|
|
27
|
+
readonly clickOutside: _angular_core.OutputEmitterRef<Event>;
|
|
28
|
+
private _nodesExcluded;
|
|
29
|
+
private _events;
|
|
30
|
+
constructor(_el: ElementRef, _ngZone: NgZone, platformId: any);
|
|
31
|
+
ngOnInit(): void;
|
|
32
|
+
ngOnDestroy(): void;
|
|
33
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
34
|
+
private _init;
|
|
35
|
+
private _initOnClickBody;
|
|
36
|
+
private _excludeCheck;
|
|
37
|
+
private _onClickBody;
|
|
38
|
+
/**
|
|
39
|
+
* Resolves problem with outside click on iframe
|
|
40
|
+
* @see https://github.com/arkon/ng-click-outside/issues/32
|
|
41
|
+
*/
|
|
42
|
+
private _onWindowBlur;
|
|
43
|
+
private _emit;
|
|
44
|
+
private _shouldExclude;
|
|
45
|
+
private _initClickOutsideListener;
|
|
46
|
+
private _removeClickOutsideListener;
|
|
47
|
+
private _initAttachOutsideOnClickListener;
|
|
48
|
+
private _removeAttachOutsideOnClickListener;
|
|
49
|
+
private _initWindowBlurListener;
|
|
50
|
+
private _removeWindowBlurListener;
|
|
51
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClickOutsideDirective, never>;
|
|
52
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[clickOutside]", never, { "clickOutsideEnabled": { "alias": "clickOutsideEnabled"; "required": false; "isSignal": true; }; "attachOutsideOnClick": { "alias": "attachOutsideOnClick"; "required": false; "isSignal": true; }; "delayClickOutsideInit": { "alias": "delayClickOutsideInit"; "required": false; "isSignal": true; }; "emitOnBlur": { "alias": "emitOnBlur"; "required": false; "isSignal": true; }; "exclude": { "alias": "exclude"; "required": false; "isSignal": true; }; "excludeBeforeClick": { "alias": "excludeBeforeClick"; "required": false; "isSignal": true; }; "clickOutsideEvents": { "alias": "clickOutsideEvents"; "required": false; "isSignal": true; }; }, { "clickOutside": "clickOutside"; }, never, never, true, never>;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
interface IAppNotifications {
|
|
56
|
+
messages: Observable<IResultSet<NavLink>>;
|
|
57
|
+
getMessage?: (predicate: (value: any, index: number, obj: any[]) => any) => any | undefined;
|
|
58
|
+
markMessageRead?: (predicate: (value: any, index: number, obj: any[]) => any) => any | undefined;
|
|
59
|
+
refresh?: () => void | undefined;
|
|
60
|
+
inboxAction?: () => void | undefined;
|
|
61
|
+
}
|
|
62
|
+
interface IAppLanguagesService {
|
|
63
|
+
options: Observable<MenuOption[]> | undefined;
|
|
64
|
+
selected?: string;
|
|
65
|
+
default?: string;
|
|
66
|
+
setSelected?: (lang: string) => void | undefined;
|
|
67
|
+
}
|
|
68
|
+
interface IAppLinks {
|
|
69
|
+
public: Observable<NavLink[]>;
|
|
70
|
+
main: Observable<NavLink[]>;
|
|
71
|
+
profile: Observable<NavLink[]>;
|
|
72
|
+
profileActions: Observable<NavLink[]>;
|
|
73
|
+
legal: Observable<NavLink[]>;
|
|
74
|
+
brand: Observable<NavLink[]>;
|
|
75
|
+
notifications?: Observable<NavLink>;
|
|
76
|
+
}
|
|
77
|
+
declare class NavLink {
|
|
78
|
+
constructor(text: string, path: string, exact?: boolean, external?: boolean, icon?: string, data?: any, queryParams?: Params);
|
|
79
|
+
text: string;
|
|
80
|
+
path: string;
|
|
81
|
+
exact: boolean;
|
|
82
|
+
external: boolean;
|
|
83
|
+
icon: string | undefined;
|
|
84
|
+
type: string;
|
|
85
|
+
data: any | undefined;
|
|
86
|
+
queryParams: Params | undefined;
|
|
87
|
+
}
|
|
88
|
+
declare class ExternalNavLink extends NavLink {
|
|
89
|
+
constructor(text: string, path: string, openInNewTab?: boolean, icon?: string);
|
|
90
|
+
type: string;
|
|
91
|
+
}
|
|
92
|
+
declare class FragmentNavLink extends NavLink {
|
|
93
|
+
constructor(text: string, path: string, icon?: string);
|
|
94
|
+
type: string;
|
|
95
|
+
}
|
|
96
|
+
declare class NotificationNavLink extends NavLink {
|
|
97
|
+
isRead: boolean;
|
|
98
|
+
creationDate?: Date | undefined;
|
|
99
|
+
constructor(text: string, path: string, isRead: boolean, creationDate?: Date | undefined);
|
|
100
|
+
}
|
|
101
|
+
declare class NavLinkSeparator extends NavLink {
|
|
102
|
+
isRead: boolean;
|
|
103
|
+
creationDate?: Date | undefined;
|
|
104
|
+
constructor(text: string, path: string, isRead: boolean, creationDate?: Date | undefined);
|
|
105
|
+
type: string;
|
|
106
|
+
}
|
|
107
|
+
declare class ViewAction {
|
|
108
|
+
type: string;
|
|
109
|
+
key: string | null;
|
|
110
|
+
param: any;
|
|
111
|
+
icon: string;
|
|
112
|
+
tooltip: string | null;
|
|
113
|
+
text?: string;
|
|
114
|
+
constructor(type: string, key: string | null, param: any, icon: string, tooltip: string | null, text?: string);
|
|
115
|
+
}
|
|
116
|
+
declare class ListViewType {
|
|
117
|
+
static Tiles: string;
|
|
118
|
+
static Table: string;
|
|
119
|
+
static Map: string;
|
|
120
|
+
static Gallery: string;
|
|
121
|
+
}
|
|
122
|
+
declare class RouterViewAction extends ViewAction {
|
|
123
|
+
outlet: string | null;
|
|
124
|
+
link: string | null;
|
|
125
|
+
constructor(icon: string, link: string, outlet: string | null, tooltip: string | null, text?: string);
|
|
126
|
+
}
|
|
127
|
+
declare class SwitchViewAction extends ViewAction {
|
|
128
|
+
constructor(view: string, icon: string, tooltip: string | null);
|
|
129
|
+
}
|
|
130
|
+
interface IResultSet<T> {
|
|
131
|
+
count: number;
|
|
132
|
+
items: T[];
|
|
133
|
+
}
|
|
134
|
+
declare class HeaderMetaItem {
|
|
135
|
+
key: string | null;
|
|
136
|
+
icon: string | null;
|
|
137
|
+
text: string | null;
|
|
138
|
+
}
|
|
139
|
+
declare class MenuOption {
|
|
140
|
+
constructor(text: string, value: any, description?: string, data?: any, icon?: string);
|
|
141
|
+
text: string;
|
|
142
|
+
value: any;
|
|
143
|
+
description: string | undefined;
|
|
144
|
+
data: any | undefined;
|
|
145
|
+
icon: string | undefined;
|
|
146
|
+
}
|
|
147
|
+
declare enum PagerPosition {
|
|
148
|
+
Top = "top",
|
|
149
|
+
Bottom = "bottom",
|
|
150
|
+
Both = "both"
|
|
151
|
+
}
|
|
152
|
+
interface IAddress {
|
|
153
|
+
id?: string;
|
|
154
|
+
street?: string | null;
|
|
155
|
+
streetNumber?: string | null;
|
|
156
|
+
city?: string | null;
|
|
157
|
+
region?: string | null;
|
|
158
|
+
postalCode?: string | null;
|
|
159
|
+
country?: string | null;
|
|
160
|
+
}
|
|
161
|
+
interface IShellConfig {
|
|
162
|
+
appLogo: string;
|
|
163
|
+
appLogoAlt: string;
|
|
164
|
+
breadcrumb: boolean;
|
|
165
|
+
customFooterComponent?: any;
|
|
166
|
+
customHeaderComponent?: any;
|
|
167
|
+
fluid: boolean;
|
|
168
|
+
layout?: ShellLayoutType;
|
|
169
|
+
showAlertsOnHeader?: boolean;
|
|
170
|
+
showFooter: boolean;
|
|
171
|
+
showHeader: boolean;
|
|
172
|
+
showLangsOnHeader?: boolean;
|
|
173
|
+
showUserNameOnHeader?: boolean;
|
|
174
|
+
showPictureOnHeader?: boolean;
|
|
175
|
+
}
|
|
176
|
+
interface IBreadcrumbLabelProcessor {
|
|
177
|
+
process(context: BreadcrumbContext): string | Observable<string>;
|
|
178
|
+
}
|
|
179
|
+
interface BreadcrumbContext {
|
|
180
|
+
routeSnapshot?: ActivatedRouteSnapshot;
|
|
181
|
+
route?: Route;
|
|
182
|
+
defaultValue?: string;
|
|
183
|
+
}
|
|
184
|
+
declare enum ShellLayoutType {
|
|
185
|
+
Stacked = "Stacked",
|
|
186
|
+
Sidebar = "Sidebar"
|
|
187
|
+
}
|
|
188
|
+
declare class DefaultShellConfig implements IShellConfig {
|
|
189
|
+
appLogo: string;
|
|
190
|
+
appLogoAlt: string;
|
|
191
|
+
breadcrumb: boolean;
|
|
192
|
+
fluid: boolean;
|
|
193
|
+
layout: ShellLayoutType;
|
|
194
|
+
showAlertsOnHeader: boolean;
|
|
195
|
+
showFooter: boolean;
|
|
196
|
+
showHeader: boolean;
|
|
197
|
+
showUserNameOnHeader: boolean;
|
|
198
|
+
showPictureOnHeader: boolean;
|
|
199
|
+
}
|
|
200
|
+
declare enum SCREEN_SIZE {
|
|
201
|
+
XS = 0,
|
|
202
|
+
SM = 1,
|
|
203
|
+
MD = 2,
|
|
204
|
+
LG = 3,
|
|
205
|
+
XL = 4
|
|
206
|
+
}
|
|
207
|
+
interface IScreenSize {
|
|
208
|
+
id: SCREEN_SIZE;
|
|
209
|
+
name: string;
|
|
210
|
+
css: string;
|
|
211
|
+
}
|
|
212
|
+
declare enum ToastType {
|
|
213
|
+
Info = "info",
|
|
214
|
+
Success = "success",
|
|
215
|
+
Error = "error",
|
|
216
|
+
Warning = "warning"
|
|
217
|
+
}
|
|
218
|
+
declare const NULL_TOAST: Toast;
|
|
219
|
+
interface Toast {
|
|
220
|
+
type: ToastType;
|
|
221
|
+
title: string;
|
|
222
|
+
body: string;
|
|
223
|
+
delay: number;
|
|
224
|
+
}
|
|
225
|
+
declare enum SidePaneSize {
|
|
226
|
+
Default = "",
|
|
227
|
+
Small25 = "25%",
|
|
228
|
+
Medium50 = "50%",
|
|
229
|
+
Large75 = "75%",
|
|
230
|
+
Fullscreen = "100%"
|
|
231
|
+
}
|
|
232
|
+
declare enum SidePaneOverlayType {
|
|
233
|
+
Default = "",
|
|
234
|
+
None = "-opacity-0",
|
|
235
|
+
Light = "",
|
|
236
|
+
Dark = "-opacity-50"
|
|
237
|
+
}
|
|
238
|
+
interface IValidationProblemDetails {
|
|
239
|
+
type?: string | undefined;
|
|
240
|
+
title?: string | undefined;
|
|
241
|
+
status?: number | undefined;
|
|
242
|
+
detail?: string | undefined;
|
|
243
|
+
instance?: string | undefined;
|
|
244
|
+
errors?: Record<string, string[]> | undefined;
|
|
245
|
+
}
|
|
246
|
+
type UserSettingKey = 'MobileSideBar';
|
|
247
|
+
|
|
248
|
+
declare class DropDownMenuComponent implements OnInit, OnChanges {
|
|
249
|
+
options: MenuOption[] | undefined;
|
|
250
|
+
selectedValue: any | null | undefined;
|
|
251
|
+
readonly multiple: _angular_core.InputSignal<boolean>;
|
|
252
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
253
|
+
readonly showIcons: _angular_core.InputSignal<boolean>;
|
|
254
|
+
private selectedOption$;
|
|
255
|
+
get selectedOption(): MenuOption | null;
|
|
256
|
+
set selectedOption(option: MenuOption | null);
|
|
257
|
+
readonly selectedChange: _angular_core.OutputEmitterRef<any>;
|
|
258
|
+
readonly selectedChanged: _angular_core.OutputEmitterRef<any>;
|
|
259
|
+
private expanded$;
|
|
260
|
+
get expanded(): boolean;
|
|
261
|
+
set expanded(value: boolean);
|
|
262
|
+
constructor();
|
|
263
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
264
|
+
ngOnInit(): void;
|
|
265
|
+
isSelected(option: MenuOption): boolean;
|
|
266
|
+
onClickOutside($event: any): void;
|
|
267
|
+
selectOption(option: MenuOption): void;
|
|
268
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DropDownMenuComponent, never>;
|
|
269
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DropDownMenuComponent, "lib-drop-down-menu", never, { "options": { "alias": "options"; "required": false; }; "selectedValue": { "alias": "selected"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "showIcons": { "alias": "show-icons"; "required": false; "isSignal": true; }; }, { "selectedChange": "selectedChange"; "selectedChanged": "selectedChanged"; }, never, never, true, never>;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
declare class PagerComponent implements OnInit, OnChanges {
|
|
273
|
+
private router;
|
|
274
|
+
readonly busy: _angular_core.InputSignal<boolean>;
|
|
275
|
+
readonly count: _angular_core.InputSignal<number | null>;
|
|
276
|
+
page: number;
|
|
277
|
+
readonly pageSize: _angular_core.InputSignal<number>;
|
|
278
|
+
readonly pageSizeOptions: _angular_core.InputSignal<MenuOption[]>;
|
|
279
|
+
pages: MenuOption[];
|
|
280
|
+
readonly pageChanged: _angular_core.OutputEmitterRef<number>;
|
|
281
|
+
readonly pageSizeChanged: _angular_core.OutputEmitterRef<number>;
|
|
282
|
+
canPreviousPage: boolean;
|
|
283
|
+
canNextPage: boolean;
|
|
284
|
+
sortOptions: MenuOption[];
|
|
285
|
+
readonly sort: _angular_core.InputSignal<string | null>;
|
|
286
|
+
readonly sortdir: _angular_core.InputSignal<string | null>;
|
|
287
|
+
readonly sortChanged: _angular_core.OutputEmitterRef<string>;
|
|
288
|
+
readonly sortdirChanged: _angular_core.OutputEmitterRef<string>;
|
|
289
|
+
sortdirIcon: string;
|
|
290
|
+
constructor(router: Router);
|
|
291
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
292
|
+
ngOnInit(): void;
|
|
293
|
+
private calcPages;
|
|
294
|
+
nextPage(): void;
|
|
295
|
+
previousPage(): void;
|
|
296
|
+
gotoPage(page: number): void;
|
|
297
|
+
pageSizeOptionChanged(pageSize: number): void;
|
|
298
|
+
pageOptionChanged(page: number): void;
|
|
299
|
+
sortOptionChanged(sort: string): void;
|
|
300
|
+
toggleSortdir(): void;
|
|
301
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PagerComponent, never>;
|
|
302
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PagerComponent, "lib-pager", never, { "busy": { "alias": "busy"; "required": false; "isSignal": true; }; "count": { "alias": "count"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": false; }; "pageSize": { "alias": "page-size"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "page-size-options"; "required": false; "isSignal": true; }; "sortOptions": { "alias": "sort-options"; "required": false; }; "sort": { "alias": "sort"; "required": false; "isSignal": true; }; "sortdir": { "alias": "sort-dir"; "required": false; "isSignal": true; }; }, { "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "sortChanged": "sortChanged"; "sortdirChanged": "sortdirChanged"; }, never, ["[pager-near-content]"], true, never>;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
declare class BreadcrumbItem {
|
|
306
|
+
title?: (string | Observable<string>) | undefined;
|
|
307
|
+
url?: string | undefined;
|
|
308
|
+
constructor(title?: (string | Observable<string>) | undefined, url?: string | undefined);
|
|
309
|
+
level: number;
|
|
310
|
+
get urlSegments(): string[] | undefined;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
declare class UtilitiesService {
|
|
314
|
+
constructor();
|
|
315
|
+
problemDetails?: IValidationProblemDetails;
|
|
316
|
+
get validationErrors(): string[];
|
|
317
|
+
getValidationProblemDetails(problemDetails: IValidationProblemDetails): string[];
|
|
318
|
+
getPathFromUrl(url: string): string | undefined;
|
|
319
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<UtilitiesService, never>;
|
|
320
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<UtilitiesService>;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
declare class BreadcrumbService {
|
|
324
|
+
private _router;
|
|
325
|
+
private _utilities;
|
|
326
|
+
breadcrumbLabelResolver?: IBreadcrumbLabelProcessor | undefined;
|
|
327
|
+
_shellConfig?: any | undefined;
|
|
328
|
+
private _defaultHome;
|
|
329
|
+
private _breadcrumb$;
|
|
330
|
+
constructor(_router: Router, _utilities: UtilitiesService, breadcrumbLabelResolver?: IBreadcrumbLabelProcessor | undefined, _shellConfig?: any | undefined);
|
|
331
|
+
breadcrumb: Observable<BreadcrumbItem[]>;
|
|
332
|
+
private _getDefaultHomeItem;
|
|
333
|
+
private _getRouteTitle;
|
|
334
|
+
private _buildBreadcrumb;
|
|
335
|
+
private _findRouteFromUrl;
|
|
336
|
+
private _findParentRoutes;
|
|
337
|
+
private _flattenRoutes;
|
|
338
|
+
private _getBreadcrumbRouteData;
|
|
339
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbService, [null, null, { optional: true; }, { optional: true; }]>;
|
|
340
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<BreadcrumbService>;
|
|
341
|
+
}
|
|
342
|
+
declare class BreadcrumbRouteData {
|
|
343
|
+
_level: number;
|
|
344
|
+
isHome: boolean;
|
|
345
|
+
_fullPath?: string | undefined;
|
|
346
|
+
constructor(_level: number, isHome: boolean, _fullPath?: string | undefined);
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
declare class BreadcrumbComponent implements OnInit {
|
|
350
|
+
private _breadcrumbService;
|
|
351
|
+
private _cdr;
|
|
352
|
+
constructor(_breadcrumbService: BreadcrumbService, _cdr: ChangeDetectorRef);
|
|
353
|
+
ngOnInit(): void;
|
|
354
|
+
isAsync(value: any): boolean;
|
|
355
|
+
breadcrumb: BreadcrumbItem[];
|
|
356
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
357
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BreadcrumbComponent, "lib-breadcrumb", never, {}, {}, never, never, true, never>;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
declare namespace Operators {
|
|
361
|
+
const EQUALS: {
|
|
362
|
+
label: string;
|
|
363
|
+
value: string;
|
|
364
|
+
description: string;
|
|
365
|
+
};
|
|
366
|
+
const NOT_EQUALS: {
|
|
367
|
+
label: string;
|
|
368
|
+
value: string;
|
|
369
|
+
description: string;
|
|
370
|
+
};
|
|
371
|
+
const GREATER_THAN: {
|
|
372
|
+
label: string;
|
|
373
|
+
value: string;
|
|
374
|
+
description: string;
|
|
375
|
+
};
|
|
376
|
+
const LESS_THAN: {
|
|
377
|
+
label: string;
|
|
378
|
+
value: string;
|
|
379
|
+
description: string;
|
|
380
|
+
};
|
|
381
|
+
const GREATER_THAN_EQUAL: {
|
|
382
|
+
label: string;
|
|
383
|
+
value: string;
|
|
384
|
+
description: string;
|
|
385
|
+
};
|
|
386
|
+
const LESS_THAN_EQUAL: {
|
|
387
|
+
label: string;
|
|
388
|
+
value: string;
|
|
389
|
+
description: string;
|
|
390
|
+
};
|
|
391
|
+
const CONTAINS: {
|
|
392
|
+
label: string;
|
|
393
|
+
value: string;
|
|
394
|
+
description: string;
|
|
395
|
+
};
|
|
396
|
+
const IN: {
|
|
397
|
+
label: string;
|
|
398
|
+
value: string;
|
|
399
|
+
description: string;
|
|
400
|
+
};
|
|
401
|
+
}
|
|
402
|
+
declare enum QueryParameters {
|
|
403
|
+
VIEW = "view",
|
|
404
|
+
PAGE_SIZE = "pagesize",
|
|
405
|
+
PAGE = "page",
|
|
406
|
+
SEARCH = "search",
|
|
407
|
+
SORT_FIELD = "sort",
|
|
408
|
+
SORT_DIRECTION = "dir",
|
|
409
|
+
FILTER = "filter",
|
|
410
|
+
FILTER_FROM = "from",
|
|
411
|
+
FILTER_TO = "to"
|
|
412
|
+
}
|
|
413
|
+
interface SearchOption {
|
|
414
|
+
name: string;
|
|
415
|
+
field: string;
|
|
416
|
+
dataType: FilterClause.Dt;
|
|
417
|
+
array?: boolean;
|
|
418
|
+
multiTerm?: boolean;
|
|
419
|
+
options?: SelectInputOption[];
|
|
420
|
+
placeholder?: string;
|
|
421
|
+
readonly?: boolean;
|
|
422
|
+
}
|
|
423
|
+
interface SelectInputOption {
|
|
424
|
+
value: any;
|
|
425
|
+
label: string;
|
|
426
|
+
description?: string;
|
|
427
|
+
}
|
|
428
|
+
type IDictionary<T> = Record<string, T>;
|
|
429
|
+
declare const OperatorOptions: IDictionary<{
|
|
430
|
+
label: string;
|
|
431
|
+
value: string;
|
|
432
|
+
description?: string;
|
|
433
|
+
}[]>;
|
|
434
|
+
declare namespace FilterClause {
|
|
435
|
+
type Op = 'eq' | 'neq' | 'gt' | 'lt' | 'gte' | 'lte' | 'contains' | 'in';
|
|
436
|
+
type Dt = 'string' | 'integer' | 'number' | 'boolean' | 'datetime' | 'array' | 'daterange' | undefined;
|
|
437
|
+
}
|
|
438
|
+
declare class FilterClause {
|
|
439
|
+
member: string;
|
|
440
|
+
value: any;
|
|
441
|
+
operator: FilterClause.Op;
|
|
442
|
+
dataType: FilterClause.Dt;
|
|
443
|
+
uiName: string | undefined;
|
|
444
|
+
uiOperator: string | undefined;
|
|
445
|
+
uiValue: string | undefined;
|
|
446
|
+
constructor(member: string, value: any, operator?: FilterClause.Op, dataType?: FilterClause.Dt, searchOptions?: SearchOption[]);
|
|
447
|
+
static parse(text: string): FilterClause | undefined;
|
|
448
|
+
toString(): string;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
declare class ListColumnComponent {
|
|
452
|
+
readonly title: _angular_core.InputSignal<string | null>;
|
|
453
|
+
readonly fullWidth: _angular_core.InputSignal<boolean>;
|
|
454
|
+
template: any | null;
|
|
455
|
+
constructor();
|
|
456
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListColumnComponent, never>;
|
|
457
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListColumnComponent, "lib-list-column", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "full-width"; "required": false; "isSignal": true; }; }, {}, ["template"], ["*"], true, never>;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
declare class ListTileComponent {
|
|
461
|
+
template: any | null;
|
|
462
|
+
constructor();
|
|
463
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListTileComponent, never>;
|
|
464
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListTileComponent, "lib-list-tile", never, {}, {}, ["template"], ["*"], true, never>;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
declare class ListDetailsSectionComponent {
|
|
468
|
+
template: any | null;
|
|
469
|
+
constructor();
|
|
470
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListDetailsSectionComponent, never>;
|
|
471
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListDetailsSectionComponent, "lib-list-details-section", never, {}, {}, ["template"], ["*"], true, never>;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
declare class ListViewComponent implements OnChanges {
|
|
475
|
+
searchOptions: SearchOption[];
|
|
476
|
+
readonly filters: _angular_core.InputSignal<FilterClause[]>;
|
|
477
|
+
readonly busy: _angular_core.InputSignal<boolean>;
|
|
478
|
+
items: any[] | null | undefined;
|
|
479
|
+
readonly count: _angular_core.InputSignal<number | null>;
|
|
480
|
+
readonly page: _angular_core.InputSignal<number>;
|
|
481
|
+
readonly view: _angular_core.InputSignal<string>;
|
|
482
|
+
readonly sort: _angular_core.InputSignal<string | null>;
|
|
483
|
+
readonly pageSize: _angular_core.InputSignal<number>;
|
|
484
|
+
readonly pageSizeOptions: _angular_core.InputSignal<MenuOption[]>;
|
|
485
|
+
readonly sortOptions: _angular_core.InputSignal<MenuOption[]>;
|
|
486
|
+
readonly operatorsDisabled: _angular_core.InputSignal<boolean>;
|
|
487
|
+
readonly sortdir: _angular_core.InputSignal<string | null>;
|
|
488
|
+
readonly tilesCount: _angular_core.InputSignal<number>;
|
|
489
|
+
readonly showPager: _angular_core.InputSignal<boolean>;
|
|
490
|
+
pagerPosition: any | undefined;
|
|
491
|
+
readonly detailsSectionPropertyCount: _angular_core.InputSignal<string | null>;
|
|
492
|
+
set cols(refs: QueryList<ListColumnComponent>);
|
|
493
|
+
set tiles(ref: ListTileComponent);
|
|
494
|
+
set details(ref: ListDetailsSectionComponent);
|
|
495
|
+
readonly pageChanged: _angular_core.OutputEmitterRef<number>;
|
|
496
|
+
readonly pageSizeChanged: _angular_core.OutputEmitterRef<number>;
|
|
497
|
+
readonly detailsOpened: _angular_core.OutputEmitterRef<{
|
|
498
|
+
item: any;
|
|
499
|
+
open: boolean;
|
|
500
|
+
}>;
|
|
501
|
+
readonly sortChanged: _angular_core.OutputEmitterRef<string>;
|
|
502
|
+
readonly sortdirChanged: _angular_core.OutputEmitterRef<string>;
|
|
503
|
+
readonly advancedSearchChanged: _angular_core.OutputEmitterRef<FilterClause[]>;
|
|
504
|
+
private multipleFullWidth;
|
|
505
|
+
expandIcon: string;
|
|
506
|
+
collapseIcon: string;
|
|
507
|
+
tableViewSupported: boolean;
|
|
508
|
+
fullWidthTHClass: string;
|
|
509
|
+
fullWidthTDClass: string;
|
|
510
|
+
tilesViewSupported: boolean;
|
|
511
|
+
detailsSectionSupported: boolean;
|
|
512
|
+
loaderItems: any[];
|
|
513
|
+
columns: any[];
|
|
514
|
+
tilesDeckClass: string;
|
|
515
|
+
tileTemplate: any | null | undefined;
|
|
516
|
+
detailsTemplate: any | null | undefined;
|
|
517
|
+
constructor();
|
|
518
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
519
|
+
emitPageChanged($event: number): void;
|
|
520
|
+
emitPageSizeChanged($event: number): void;
|
|
521
|
+
emitSortChanged($event: string): void;
|
|
522
|
+
emitSortdirChanged($event: string): void;
|
|
523
|
+
emitAdvancedSearchChanged($event: FilterClause[]): void;
|
|
524
|
+
toggleDetails(item: any): void;
|
|
525
|
+
private setTilesDeckClass;
|
|
526
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListViewComponent, never>;
|
|
527
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListViewComponent, "lib-list-view", never, { "searchOptions": { "alias": "search-options"; "required": false; }; "filters": { "alias": "filters"; "required": false; "isSignal": true; }; "busy": { "alias": "busy"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; }; "count": { "alias": "count"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": false; "isSignal": true; }; "view": { "alias": "view"; "required": false; "isSignal": true; }; "sort": { "alias": "sort"; "required": false; "isSignal": true; }; "pageSize": { "alias": "page-size"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "page-size-options"; "required": false; "isSignal": true; }; "sortOptions": { "alias": "sort-options"; "required": false; "isSignal": true; }; "operatorsDisabled": { "alias": "operators-disabled"; "required": false; "isSignal": true; }; "sortdir": { "alias": "sort-dir"; "required": false; "isSignal": true; }; "tilesCount": { "alias": "tiles-count"; "required": false; "isSignal": true; }; "showPager": { "alias": "show-pager"; "required": false; "isSignal": true; }; "pagerPosition": { "alias": "pager-position"; "required": false; }; "detailsSectionPropertyCount": { "alias": "details-section-property-count"; "required": false; "isSignal": true; }; }, { "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "detailsOpened": "detailsOpened"; "sortChanged": "sortChanged"; "sortdirChanged": "sortdirChanged"; "advancedSearchChanged": "advancedSearchChanged"; }, ["tiles", "details", "cols"], ["[pager-near-content]", "*"], true, never>;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
declare class ListViewEmptyStateComponent implements OnInit {
|
|
531
|
+
readonly title: _angular_core.InputSignal<string>;
|
|
532
|
+
readonly subTitle: _angular_core.InputSignal<string>;
|
|
533
|
+
readonly newItemLabel: _angular_core.InputSignal<string>;
|
|
534
|
+
constructor();
|
|
535
|
+
ngOnInit(): void;
|
|
536
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListViewEmptyStateComponent, never>;
|
|
537
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListViewEmptyStateComponent, "lib-list-view-empty-state", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "subTitle": { "alias": "sub-title"; "required": false; "isSignal": true; }; "newItemLabel": { "alias": "new-item-label"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
declare class SkeletonLoaderComponent implements OnInit {
|
|
541
|
+
readonly count: _angular_core.InputSignal<number>;
|
|
542
|
+
readonly type: _angular_core.InputSignal<string>;
|
|
543
|
+
readonly deckClass: _angular_core.InputSignal<string>;
|
|
544
|
+
constructor();
|
|
545
|
+
ngOnInit(): void;
|
|
546
|
+
counter(i: number): number[];
|
|
547
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SkeletonLoaderComponent, never>;
|
|
548
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonLoaderComponent, "lib-skeleton-loader", never, { "count": { "alias": "count"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "deckClass": { "alias": "deck-class"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
declare class CollapsiblePanelComponent implements OnInit {
|
|
552
|
+
readonly title: _angular_core.InputSignal<string | null>;
|
|
553
|
+
visible: boolean;
|
|
554
|
+
constructor();
|
|
555
|
+
ngOnInit(): void;
|
|
556
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CollapsiblePanelComponent, never>;
|
|
557
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CollapsiblePanelComponent, "lib-collapsible-panel", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
declare class KpiTileComponent implements OnInit {
|
|
561
|
+
readonly title: _angular_core.InputSignal<string | undefined>;
|
|
562
|
+
readonly busy: _angular_core.InputSignal<boolean>;
|
|
563
|
+
readonly kpi: _angular_core.InputSignal<any>;
|
|
564
|
+
readonly hideBtn: _angular_core.InputSignal<boolean | undefined>;
|
|
565
|
+
readonly actionText: _angular_core.InputSignal<string>;
|
|
566
|
+
readonly tileAction: _angular_core.OutputEmitterRef<any>;
|
|
567
|
+
constructor();
|
|
568
|
+
ngOnInit(): void;
|
|
569
|
+
emitTileAction($event: any): boolean;
|
|
570
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KpiTileComponent, never>;
|
|
571
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KpiTileComponent, "lib-kpi-tile", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "busy": { "alias": "busy"; "required": false; "isSignal": true; }; "kpi": { "alias": "kpi"; "required": false; "isSignal": true; }; "hideBtn": { "alias": "hideBtn"; "required": false; "isSignal": true; }; "actionText": { "alias": "action-text"; "required": false; "isSignal": true; }; }, { "tileAction": "tile-action"; }, never, ["*"], true, never>;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
declare class DatepickerComponent implements OnInit, ControlValueAccessor {
|
|
575
|
+
locale: string;
|
|
576
|
+
private cdr;
|
|
577
|
+
readonly readonly: _angular_core.InputSignal<boolean>;
|
|
578
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
579
|
+
inline: boolean;
|
|
580
|
+
readonly displayFormat: _angular_core.InputSignal<string | undefined>;
|
|
581
|
+
readonly placeholder: _angular_core.InputSignal<string | undefined>;
|
|
582
|
+
value: Date | undefined | null;
|
|
583
|
+
readonly valueChange: _angular_core.OutputEmitterRef<Date | null | undefined>;
|
|
584
|
+
readonly dateInput: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
585
|
+
readonly minDate: _angular_core.InputSignal<Date | undefined>;
|
|
586
|
+
readonly maxDate: _angular_core.InputSignal<Date | undefined>;
|
|
587
|
+
showCalendar: boolean;
|
|
588
|
+
showYears: boolean;
|
|
589
|
+
monthNames: readonly string[];
|
|
590
|
+
dayNames: readonly string[];
|
|
591
|
+
month: number;
|
|
592
|
+
year: number;
|
|
593
|
+
calendarDates: any[];
|
|
594
|
+
calendarYears: any[];
|
|
595
|
+
showCalendarYears: any[];
|
|
596
|
+
blankDays: any[];
|
|
597
|
+
calendarYearPage: number;
|
|
598
|
+
private yearsPerPage;
|
|
599
|
+
private onChange$;
|
|
600
|
+
private onTouched$;
|
|
601
|
+
ngOnInit(): void;
|
|
602
|
+
constructor(locale: string, cdr: ChangeDetectorRef);
|
|
603
|
+
writeValue(obj: any): void;
|
|
604
|
+
registerOnChange(fn: (_: any) => void): void;
|
|
605
|
+
registerOnTouched(fn: any): void;
|
|
606
|
+
onBlur(event: any): void;
|
|
607
|
+
selectDateValue(date: any): void;
|
|
608
|
+
selectYearValue(year: any): void;
|
|
609
|
+
previousMonth(): void;
|
|
610
|
+
nextMonth(): void;
|
|
611
|
+
previousYear(): void;
|
|
612
|
+
nextYear(): void;
|
|
613
|
+
private compareDates;
|
|
614
|
+
private calcDays;
|
|
615
|
+
private updateDays;
|
|
616
|
+
private paginate;
|
|
617
|
+
private getDateFromInput;
|
|
618
|
+
openYears(): void;
|
|
619
|
+
openCalendar(): void;
|
|
620
|
+
closeCalendar(): void;
|
|
621
|
+
outOfRangeDate(date: any): boolean;
|
|
622
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DatepickerComponent, never>;
|
|
623
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DatepickerComponent, "lib-date-picker", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "inline": { "alias": "inline"; "required": false; }; "displayFormat": { "alias": "display-format"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; "isSignal": true; }; "maxDate": { "alias": "maxDate"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
declare class ToasterService {
|
|
627
|
+
private _subject;
|
|
628
|
+
constructor();
|
|
629
|
+
toast$: Observable<Toast>;
|
|
630
|
+
show(type: ToastType, title?: string, body?: string, delay?: number): void;
|
|
631
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToasterService, never>;
|
|
632
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ToasterService>;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
declare class ToasterContainerComponent implements OnInit {
|
|
636
|
+
private toaster;
|
|
637
|
+
private cdr;
|
|
638
|
+
toasts: Toast[];
|
|
639
|
+
constructor(toaster: ToasterService, cdr: ChangeDetectorRef);
|
|
640
|
+
ngOnInit(): void;
|
|
641
|
+
remove(index: number): void;
|
|
642
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToasterContainerComponent, never>;
|
|
643
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToasterContainerComponent, "lib-toaster-container", never, {}, {}, never, never, true, never>;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
declare class ToasterComponent implements OnInit {
|
|
647
|
+
toast: Toast | undefined;
|
|
648
|
+
readonly i: _angular_core.InputSignal<number>;
|
|
649
|
+
readonly remove: _angular_core.OutputEmitterRef<number>;
|
|
650
|
+
isMobile: boolean;
|
|
651
|
+
closed: boolean;
|
|
652
|
+
constructor();
|
|
653
|
+
ngOnInit(): void;
|
|
654
|
+
closeToast(index: number): void;
|
|
655
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToasterComponent, never>;
|
|
656
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToasterComponent, "lib-toaster", never, { "toast": { "alias": "toast"; "required": false; }; "i": { "alias": "i"; "required": false; "isSignal": true; }; }, { "remove": "remove"; }, never, never, true, never>;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
declare class AvatarInitialsComponent implements OnInit {
|
|
660
|
+
readonly name: _angular_core.InputSignal<string | null | undefined>;
|
|
661
|
+
readonly large: _angular_core.InputSignal<boolean>;
|
|
662
|
+
initials?: string;
|
|
663
|
+
circleColor: string;
|
|
664
|
+
private colors;
|
|
665
|
+
constructor();
|
|
666
|
+
ngOnInit(): void;
|
|
667
|
+
private createInititals;
|
|
668
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AvatarInitialsComponent, never>;
|
|
669
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AvatarInitialsComponent, "lib-avatar-initials", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; "large": { "alias": "large"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
declare class ToggleComponent implements OnInit, ControlValueAccessor {
|
|
673
|
+
value: boolean | null | undefined;
|
|
674
|
+
readonly disabled: _angular_core.InputSignal<boolean | null | undefined>;
|
|
675
|
+
readonly privateLabel: _angular_core.InputSignal<string>;
|
|
676
|
+
readonly publicLabel: _angular_core.InputSignal<string>;
|
|
677
|
+
readonly valueChange: _angular_core.OutputEmitterRef<boolean>;
|
|
678
|
+
private onChange$;
|
|
679
|
+
private onTouched$;
|
|
680
|
+
private cdr;
|
|
681
|
+
constructor();
|
|
682
|
+
writeValue(obj: any): void;
|
|
683
|
+
registerOnChange(fn: any): void;
|
|
684
|
+
registerOnTouched(fn: any): void;
|
|
685
|
+
onBlur(event: any): void;
|
|
686
|
+
ngOnInit(): void;
|
|
687
|
+
changeValue(): void;
|
|
688
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToggleComponent, never>;
|
|
689
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToggleComponent, "lib-toggle", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "privateLabel": { "alias": "privateLabel"; "required": false; "isSignal": true; }; "publicLabel": { "alias": "publicLabel"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
declare class SidePaneComponent implements OnInit, OnDestroy, OnChanges {
|
|
693
|
+
private router;
|
|
694
|
+
private document;
|
|
695
|
+
protected showPane: boolean;
|
|
696
|
+
sizeContainerStyle: string;
|
|
697
|
+
overlayStyle: string;
|
|
698
|
+
readonly size: _angular_core.InputSignal<SidePaneSize | undefined>;
|
|
699
|
+
readonly onComplete: _angular_core.OutputEmitterRef<boolean>;
|
|
700
|
+
readonly onOpen: _angular_core.OutputEmitterRef<any>;
|
|
701
|
+
readonly onClose: _angular_core.OutputEmitterRef<any>;
|
|
702
|
+
readonly params: _angular_core.InputSignal<any>;
|
|
703
|
+
template: TemplateRef<any> | undefined;
|
|
704
|
+
constructor(router: Router, document: any);
|
|
705
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
706
|
+
ngOnDestroy(): void;
|
|
707
|
+
ngOnInit(): void;
|
|
708
|
+
onSidePaneActivated(component: any): void;
|
|
709
|
+
private initPane;
|
|
710
|
+
private overlayToClass;
|
|
711
|
+
private sizeToClass;
|
|
712
|
+
onSidePaneDeactivated($event: any): void;
|
|
713
|
+
show(): void;
|
|
714
|
+
hide(): void;
|
|
715
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidePaneComponent, never>;
|
|
716
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": { "alias": "visible"; "required": false; }; "size": { "alias": "pane-size"; "required": false; "isSignal": true; }; "params": { "alias": "params"; "required": false; "isSignal": true; }; "template": { "alias": "template"; "required": false; }; }, { "onComplete": "onComplete"; "onOpen": "onOpen"; "onClose": "onClose"; }, never, ["*"], true, never>;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
declare class NavLinksListComponent implements OnInit, OnDestroy {
|
|
720
|
+
readonly links: _angular_core.InputSignal<Observable<NavLink[]> | undefined>;
|
|
721
|
+
readonly activeFragment: _angular_core.InputSignal<Observable<string> | undefined>;
|
|
722
|
+
readonly navLinkClass: _angular_core.InputSignal<string>;
|
|
723
|
+
readonly navLinkActiveClass: _angular_core.InputSignal<string | string[]>;
|
|
724
|
+
readonly containerClass: _angular_core.InputSignal<string | string[] | undefined>;
|
|
725
|
+
readonly showIcons: _angular_core.InputSignal<boolean | undefined>;
|
|
726
|
+
readonly showText: _angular_core.InputSignal<boolean | undefined>;
|
|
727
|
+
readonly largeIcons: _angular_core.InputSignal<boolean>;
|
|
728
|
+
fragmentValue: string | undefined;
|
|
729
|
+
private fragmentSub$;
|
|
730
|
+
private cdr;
|
|
731
|
+
constructor();
|
|
732
|
+
ngOnDestroy(): void;
|
|
733
|
+
ngOnInit(): void;
|
|
734
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NavLinksListComponent, never>;
|
|
735
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NavLinksListComponent, "lib-nav-links-list", never, { "links": { "alias": "links"; "required": false; "isSignal": true; }; "activeFragment": { "alias": "active-fragment"; "required": false; "isSignal": true; }; "navLinkClass": { "alias": "link-class"; "required": false; "isSignal": true; }; "navLinkActiveClass": { "alias": "link-active-class"; "required": false; "isSignal": true; }; "containerClass": { "alias": "container-class"; "required": false; "isSignal": true; }; "showIcons": { "alias": "show-icons"; "required": false; "isSignal": true; }; "showText": { "alias": "show-text"; "required": false; "isSignal": true; }; "largeIcons": { "alias": "large-icons"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
declare class ComboboxComponent implements OnInit {
|
|
739
|
+
private _debouncer;
|
|
740
|
+
private _items;
|
|
741
|
+
private cdr;
|
|
742
|
+
private _defaultItemsFilter;
|
|
743
|
+
constructor();
|
|
744
|
+
readonly id: _angular_core.InputSignal<string>;
|
|
745
|
+
readonly placeholder: _angular_core.InputSignal<string | undefined>;
|
|
746
|
+
set items(items: any[]);
|
|
747
|
+
get items(): any[];
|
|
748
|
+
readonly itemTemplate: _angular_core.InputSignal<TemplateRef<HTMLElement> | undefined>;
|
|
749
|
+
readonly selectedItemsFilter: _angular_core.InputSignal<(item: any) => boolean | null>;
|
|
750
|
+
readonly selectedItemTemplate: _angular_core.InputSignal<TemplateRef<HTMLElement> | undefined>;
|
|
751
|
+
noResultsTemplate: TemplateRef<unknown> | undefined;
|
|
752
|
+
readonly busy: _angular_core.InputSignal<boolean>;
|
|
753
|
+
multiple: boolean;
|
|
754
|
+
readonly debounceMs: _angular_core.InputSignal<number>;
|
|
755
|
+
readonly onSearch: _angular_core.OutputEmitterRef<string | undefined>;
|
|
756
|
+
readonly onItemSelected: _angular_core.OutputEmitterRef<any>;
|
|
757
|
+
showResults: boolean;
|
|
758
|
+
selectedItems: any[];
|
|
759
|
+
value: string | undefined;
|
|
760
|
+
protected searchTerm: string;
|
|
761
|
+
ngOnInit(): void;
|
|
762
|
+
onInputClick(): void;
|
|
763
|
+
onClickOutside(): void;
|
|
764
|
+
onInputKeyUp(event: any): void;
|
|
765
|
+
onListItemSelected(item: any): void;
|
|
766
|
+
removeItem(item: any): void;
|
|
767
|
+
private emitSearchEvent;
|
|
768
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ComboboxComponent, never>;
|
|
769
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ComboboxComponent, "lib-combobox", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; "isSignal": true; }; "selectedItemsFilter": { "alias": "selectedItemsFilter"; "required": false; "isSignal": true; }; "selectedItemTemplate": { "alias": "selectedItemTemplate"; "required": false; "isSignal": true; }; "noResultsTemplate": { "alias": "noResultsTemplate"; "required": false; }; "busy": { "alias": "busy"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; }; "debounceMs": { "alias": "debounceMs"; "required": false; "isSignal": true; }; }, { "onSearch": "onSearch"; "onItemSelected": "onItemSelected"; }, never, never, true, never>;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
declare class EnhancedComboboxComponent implements OnInit {
|
|
773
|
+
private _debouncer;
|
|
774
|
+
private _items;
|
|
775
|
+
private cdr;
|
|
776
|
+
constructor();
|
|
777
|
+
readonly id: _angular_core.InputSignal<string>;
|
|
778
|
+
readonly placeholder: _angular_core.InputSignal<string | undefined>;
|
|
779
|
+
readonly itemTemplate: _angular_core.InputSignal<TemplateRef<HTMLElement> | undefined>;
|
|
780
|
+
readonly selectedItemTemplate: _angular_core.InputSignal<TemplateRef<HTMLElement> | undefined>;
|
|
781
|
+
noResultsTemplate: TemplateRef<unknown> | undefined;
|
|
782
|
+
readonly busy: _angular_core.InputSignal<boolean>;
|
|
783
|
+
readonly multiple: _angular_core.InputSignal<boolean>;
|
|
784
|
+
readonly debounceMs: _angular_core.InputSignal<number>;
|
|
785
|
+
readonly displayShowMoreOption: _angular_core.InputSignal<boolean>;
|
|
786
|
+
readonly equalityPredicate: _angular_core.InputSignal<(item: any, otherItem: any) => boolean>;
|
|
787
|
+
readonly selectedItemsFilter: _angular_core.InputSignal<(item: any) => boolean>;
|
|
788
|
+
set items(items: any[]);
|
|
789
|
+
get items(): any[];
|
|
790
|
+
readonly onSearch: _angular_core.OutputEmitterRef<string | undefined>;
|
|
791
|
+
readonly onItemSelected: _angular_core.OutputEmitterRef<any>;
|
|
792
|
+
readonly onShowMore: _angular_core.OutputEmitterRef<any>;
|
|
793
|
+
showResults: boolean;
|
|
794
|
+
selectedItems: any[];
|
|
795
|
+
value: string | undefined;
|
|
796
|
+
protected searchTerm: string;
|
|
797
|
+
ngOnInit(): void;
|
|
798
|
+
onInputClick(): void;
|
|
799
|
+
onClickOutside(): void;
|
|
800
|
+
onInputKeyUp(event: any): void;
|
|
801
|
+
onListItemSelected(item: any): void;
|
|
802
|
+
removeItem(item: any): void;
|
|
803
|
+
private emitSearchEvent;
|
|
804
|
+
emitShowMoreEvent(event: MouseEvent): void;
|
|
805
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EnhancedComboboxComponent, never>;
|
|
806
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EnhancedComboboxComponent, "lib-enhanced-combobox", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; "isSignal": true; }; "selectedItemTemplate": { "alias": "selectedItemTemplate"; "required": false; "isSignal": true; }; "noResultsTemplate": { "alias": "noResultsTemplate"; "required": false; }; "busy": { "alias": "busy"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "debounceMs": { "alias": "debounceMs"; "required": false; "isSignal": true; }; "displayShowMoreOption": { "alias": "displayShowMoreOption"; "required": false; "isSignal": true; }; "equalityPredicate": { "alias": "equalityPredicate"; "required": false; "isSignal": true; }; "selectedItemsFilter": { "alias": "selectedItemsFilter"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; }; }, { "onSearch": "onSearch"; "onItemSelected": "onItemSelected"; "onShowMore": "onShowMore"; }, never, never, true, never>;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
declare class LibTabLabelDirective {
|
|
810
|
+
template: TemplateRef<any>;
|
|
811
|
+
constructor(template: TemplateRef<any>);
|
|
812
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LibTabLabelDirective, never>;
|
|
813
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<LibTabLabelDirective, "[libTabLabel]", never, {}, {}, never, never, true, never>;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
declare class LibTabComponent implements OnInit {
|
|
817
|
+
readonly _tabGroup?: ILibTabGroupAccessor | undefined;
|
|
818
|
+
private _isActive;
|
|
819
|
+
constructor(_tabGroup?: ILibTabGroupAccessor | undefined);
|
|
820
|
+
/** The content provided for the tab. */
|
|
821
|
+
content: TemplateRef<any> | null;
|
|
822
|
+
/** A label template for the tab header. */
|
|
823
|
+
label: LibTabLabelDirective | undefined;
|
|
824
|
+
/** Indicates the unique id assigned in the tab. */
|
|
825
|
+
id: string | undefined;
|
|
826
|
+
readonly labelText: _angular_core.InputSignal<string | undefined>;
|
|
827
|
+
/** Indicates the index of the tab. */
|
|
828
|
+
get index(): number;
|
|
829
|
+
/** Indicates whether the tab is active. */
|
|
830
|
+
get isActive(): boolean;
|
|
831
|
+
/** Setter for LibTabComponent isActive property. */
|
|
832
|
+
set isActive(isActive: boolean);
|
|
833
|
+
ngOnInit(): void;
|
|
834
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LibTabComponent, [{ optional: true; }]>;
|
|
835
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LibTabComponent, "lib-tab", never, { "id": { "alias": "id"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; "isSignal": true; }; }, {}, ["label"], ["*"], true, never>;
|
|
836
|
+
}
|
|
837
|
+
/** Minimal shape of the parent tab group that a tab reads (typed here to avoid a circular import). */
|
|
838
|
+
interface ILibTabGroupAccessor {
|
|
839
|
+
readonly tabs: Signal<readonly LibTabComponent[]>;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
declare class LibTabGroupComponent implements OnInit, AfterContentInit, AfterContentChecked, ILibTabGroupAccessor {
|
|
843
|
+
constructor();
|
|
844
|
+
/** The inner tabs of the group. */
|
|
845
|
+
readonly tabs: _angular_core.Signal<readonly LibTabComponent[]>;
|
|
846
|
+
/** Emmited when a step change occurs. */
|
|
847
|
+
protected readonly tabChanged: _angular_core.OutputEmitterRef<LibTabComponent>;
|
|
848
|
+
/** The current tab. */
|
|
849
|
+
get currentTab(): LibTabComponent | undefined;
|
|
850
|
+
/** The index (starting from zero) of the current tab. */
|
|
851
|
+
get currentΤabIndex(): number | undefined;
|
|
852
|
+
ngOnInit(): void;
|
|
853
|
+
protected onTabChanged(selectedTab: LibTabComponent): void;
|
|
854
|
+
protected onTabSelectChanged(selectedTabIndex: number): void;
|
|
855
|
+
ngAfterContentInit(): void;
|
|
856
|
+
ngAfterContentChecked(): void;
|
|
857
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LibTabGroupComponent, never>;
|
|
858
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LibTabGroupComponent, "lib-tab-group", never, {}, { "tabChanged": "tabChanged"; }, ["tabs"], never, true, never>;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
declare class LibStepInfoDirective {
|
|
862
|
+
template: TemplateRef<any>;
|
|
863
|
+
constructor(template: TemplateRef<any>);
|
|
864
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LibStepInfoDirective, never>;
|
|
865
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<LibStepInfoDirective, "[libStepInfo]", never, {}, {}, never, never, true, never>;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
declare class LibStepLabelDirective {
|
|
869
|
+
template: TemplateRef<any>;
|
|
870
|
+
constructor(template: TemplateRef<any>);
|
|
871
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LibStepLabelDirective, never>;
|
|
872
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<LibStepLabelDirective, "[libStepLabel]", never, {}, {}, never, never, true, never>;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
declare enum StepState {
|
|
876
|
+
Active = "Active",
|
|
877
|
+
Completed = "Completed",
|
|
878
|
+
Upcoming = "Upcoming"
|
|
879
|
+
}
|
|
880
|
+
declare class LibStepComponent {
|
|
881
|
+
readonly _stepper?: ILibStepperAccessor | undefined;
|
|
882
|
+
constructor(_stepper?: ILibStepperAccessor | undefined);
|
|
883
|
+
/** The content provided for the step. */
|
|
884
|
+
readonly content: Signal<TemplateRef<any>>;
|
|
885
|
+
/** The label of the step displayed in header, if applicable. */
|
|
886
|
+
stepLabel: LibStepLabelDirective | undefined;
|
|
887
|
+
/** The info of the step displayed in header, if applicable. */
|
|
888
|
+
stepInfo: LibStepInfoDirective | undefined;
|
|
889
|
+
/** An optional CSS class for the step header. */
|
|
890
|
+
readonly class: _angular_core.InputSignal<string | undefined>;
|
|
891
|
+
/** The abstract control of the step. */
|
|
892
|
+
readonly stepControl: _angular_core.InputSignal<AbstractControl<any, any, any> | undefined>;
|
|
893
|
+
/** Indicates the index of the step. */
|
|
894
|
+
get index(): number;
|
|
895
|
+
/** Indicates whether this step is the last step. */
|
|
896
|
+
get isLast(): boolean;
|
|
897
|
+
/** Indicates whether you can navigate to the step or not. */
|
|
898
|
+
get isValid(): boolean;
|
|
899
|
+
/** Shows the current state of the step. */
|
|
900
|
+
get state(): StepState;
|
|
901
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LibStepComponent, [{ optional: true; }]>;
|
|
902
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LibStepComponent, "lib-step", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "stepControl": { "alias": "stepControl"; "required": false; "isSignal": true; }; }, {}, ["stepLabel", "stepInfo"], ["*"], true, never>;
|
|
903
|
+
}
|
|
904
|
+
/** Minimal shape of the parent stepper that a step reads (typed here to avoid a circular import). */
|
|
905
|
+
interface ILibStepperAccessor {
|
|
906
|
+
readonly steps: Signal<readonly LibStepComponent[]>;
|
|
907
|
+
readonly currentStepIndex: number;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
declare enum StepperType {
|
|
911
|
+
Bullets = "Bullets",
|
|
912
|
+
BulletsAndText = "BulletsAndText",
|
|
913
|
+
Circles = "Circles",
|
|
914
|
+
CirclesWithText = "CirclesWithText",
|
|
915
|
+
Panels = "Panels",
|
|
916
|
+
PanelsWithBorder = "PanelsWithBorder",
|
|
917
|
+
Progress = "Progress",
|
|
918
|
+
Simple = "Simple"
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
/** Change event emitted on step changes. */
|
|
922
|
+
declare class StepSelectedEvent {
|
|
923
|
+
/** Index of the step now selected. */
|
|
924
|
+
selectedIndex: number;
|
|
925
|
+
/** Index of the step previously selected. */
|
|
926
|
+
previouslySelectedIndex: number | undefined;
|
|
927
|
+
/** The step instance now selected. */
|
|
928
|
+
selectedStep: LibStepComponent;
|
|
929
|
+
/** The step instance previously selected. */
|
|
930
|
+
previouslySelectedStep: LibStepComponent | undefined;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
declare class LibStepperComponent implements OnInit, AfterViewChecked, ILibStepperAccessor {
|
|
934
|
+
private _changeDetectorRef;
|
|
935
|
+
private _currentStepIndex;
|
|
936
|
+
private _isCompleted;
|
|
937
|
+
constructor(_changeDetectorRef: ChangeDetectorRef);
|
|
938
|
+
/** The inner steps of the wizard. */
|
|
939
|
+
readonly steps: _angular_core.Signal<readonly LibStepComponent[]>;
|
|
940
|
+
/** Emmited when a step change occurs. */
|
|
941
|
+
readonly stepChanged: _angular_core.OutputEmitterRef<StepSelectedEvent>;
|
|
942
|
+
/** Emmited when the stepper navigates away from the final step. Only emits once. */
|
|
943
|
+
readonly completed: _angular_core.OutputEmitterRef<void>;
|
|
944
|
+
/** Indicates whether each step has to be validated before proceeding to the next. */
|
|
945
|
+
readonly linear: _angular_core.InputSignal<boolean>;
|
|
946
|
+
/** The type of the stepper. */
|
|
947
|
+
readonly type: _angular_core.InputSignal<StepperType>;
|
|
948
|
+
StepState: typeof StepState;
|
|
949
|
+
StepperType: typeof StepperType;
|
|
950
|
+
/** The current wizard step. */
|
|
951
|
+
get currentStep(): LibStepComponent | undefined;
|
|
952
|
+
/** The index (starting from zero) of the current wizard step. */
|
|
953
|
+
get currentStepIndex(): number;
|
|
954
|
+
/** Indicates whether stepper can go a step back. */
|
|
955
|
+
get canGoBack(): boolean;
|
|
956
|
+
/** Indicates whether stepper can go a step forward. */
|
|
957
|
+
get canGoForward(): boolean;
|
|
958
|
+
/** Indicates whether */
|
|
959
|
+
get isCompleted(): boolean;
|
|
960
|
+
ngOnInit(): void;
|
|
961
|
+
ngAfterViewChecked(): void;
|
|
962
|
+
/** Proceeds to the next step, if any. */
|
|
963
|
+
goToNextStep(): void;
|
|
964
|
+
/** Proceeds to the previous step, if any. */
|
|
965
|
+
goToPreviousStep(): void;
|
|
966
|
+
onSelectStep(selectedStep: LibStepComponent): void;
|
|
967
|
+
private updateCurrentStepIndex;
|
|
968
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LibStepperComponent, never>;
|
|
969
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LibStepperComponent, "lib-stepper", never, { "linear": { "alias": "linear"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, { "stepChanged": "stepChanged"; "completed": "completed"; }, ["steps"], never, true, never>;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
declare class ToggleButtonComponent implements OnInit {
|
|
973
|
+
value: boolean;
|
|
974
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
975
|
+
readonly icon: _angular_core.InputSignal<boolean>;
|
|
976
|
+
text: string | null | undefined;
|
|
977
|
+
readonly textTrue: _angular_core.InputSignal<string | null | undefined>;
|
|
978
|
+
readonly textFalse: _angular_core.InputSignal<string | null | undefined>;
|
|
979
|
+
description: string | null | undefined;
|
|
980
|
+
readonly descriptionTrue: _angular_core.InputSignal<string | null | undefined>;
|
|
981
|
+
readonly descriptionFalse: _angular_core.InputSignal<string | null | undefined>;
|
|
982
|
+
readonly valueChange: _angular_core.OutputEmitterRef<boolean>;
|
|
983
|
+
private onChange$;
|
|
984
|
+
private onTouched$;
|
|
985
|
+
private cdr;
|
|
986
|
+
constructor();
|
|
987
|
+
ngOnInit(): void;
|
|
988
|
+
writeValue(obj: any): void;
|
|
989
|
+
registerOnChange(fn: any): void;
|
|
990
|
+
registerOnTouched(fn: any): void;
|
|
991
|
+
onBlur(event: any): void;
|
|
992
|
+
changeValue(): void;
|
|
993
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToggleButtonComponent, never>;
|
|
994
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToggleButtonComponent, "lib-toggle-button", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; }; "textTrue": { "alias": "text-true"; "required": false; "isSignal": true; }; "textFalse": { "alias": "text-false"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; }; "descriptionTrue": { "alias": "description-true"; "required": false; "isSignal": true; }; "descriptionFalse": { "alias": "description-false"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
declare class ToggleButtonsListComponent implements OnInit {
|
|
998
|
+
icon: string | undefined;
|
|
999
|
+
readonly options: _angular_core.InputSignal<MenuOption[] | undefined>;
|
|
1000
|
+
value: any | undefined;
|
|
1001
|
+
readonly compact: _angular_core.InputSignal<boolean>;
|
|
1002
|
+
readonly dropDownMenuPlaceholder: _angular_core.InputSignal<string>;
|
|
1003
|
+
readonly valueChange: _angular_core.OutputEmitterRef<any>;
|
|
1004
|
+
constructor();
|
|
1005
|
+
ngOnInit(): void;
|
|
1006
|
+
selectOption(optionValue: any): void;
|
|
1007
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToggleButtonsListComponent, never>;
|
|
1008
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToggleButtonsListComponent, "lib-toggle-buttons-list", never, { "icon": { "alias": "icon"; "required": false; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; "dropDownMenuPlaceholder": { "alias": "dropDownMenuPlaceholder"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
declare class ContentTileHeaderComponent {
|
|
1012
|
+
template: any | undefined;
|
|
1013
|
+
constructor();
|
|
1014
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ContentTileHeaderComponent, never>;
|
|
1015
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ContentTileHeaderComponent, "lib-content-tile-header", never, {}, {}, ["template"], ["*"], true, never>;
|
|
1016
|
+
}
|
|
1017
|
+
declare class ContentTileItemComponent {
|
|
1018
|
+
readonly title: _angular_core.InputSignal<string | undefined>;
|
|
1019
|
+
readonly template: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
1020
|
+
constructor();
|
|
1021
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ContentTileItemComponent, never>;
|
|
1022
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ContentTileItemComponent, "lib-content-tile-item", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; }, {}, ["template"], ["*"], true, never>;
|
|
1023
|
+
}
|
|
1024
|
+
declare class ContentTileComponent implements OnInit {
|
|
1025
|
+
private router;
|
|
1026
|
+
readonly title: _angular_core.InputSignal<string | undefined>;
|
|
1027
|
+
readonly busy: _angular_core.InputSignal<boolean>;
|
|
1028
|
+
readonly showAction: _angular_core.InputSignal<boolean | undefined>;
|
|
1029
|
+
readonly showFooter: _angular_core.InputSignal<boolean | undefined>;
|
|
1030
|
+
readonly actionText: _angular_core.InputSignal<string>;
|
|
1031
|
+
readonly tileAction: _angular_core.OutputEmitterRef<any>;
|
|
1032
|
+
selectedIndex: number;
|
|
1033
|
+
itemTemplates: any[];
|
|
1034
|
+
set items(refs: QueryList<ContentTileItemComponent>);
|
|
1035
|
+
header: ContentTileHeaderComponent | undefined;
|
|
1036
|
+
constructor(router: Router);
|
|
1037
|
+
ngOnInit(): void;
|
|
1038
|
+
emitTileAction($event: any): boolean;
|
|
1039
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ContentTileComponent, never>;
|
|
1040
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ContentTileComponent, "lib-content-tile", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "busy": { "alias": "busy"; "required": false; "isSignal": true; }; "showAction": { "alias": "show-action"; "required": false; "isSignal": true; }; "showFooter": { "alias": "show-footer"; "required": false; "isSignal": true; }; "actionText": { "alias": "action-text"; "required": false; "isSignal": true; }; }, { "tileAction": "tile-action"; }, ["header", "items"], never, true, never>;
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
declare class StatsGridComponent implements OnChanges {
|
|
1044
|
+
readonly busy: _angular_core.InputSignal<boolean>;
|
|
1045
|
+
readonly count: _angular_core.InputSignal<number>;
|
|
1046
|
+
loader: any[];
|
|
1047
|
+
readonly mode: _angular_core.InputSignal<string>;
|
|
1048
|
+
readonly labels: _angular_core.InputSignal<string[]>;
|
|
1049
|
+
values: number[];
|
|
1050
|
+
readonly colors: _angular_core.InputSignal<string[]>;
|
|
1051
|
+
constructor();
|
|
1052
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1053
|
+
isNumber(value: any): boolean;
|
|
1054
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<StatsGridComponent, never>;
|
|
1055
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StatsGridComponent, "lib-stats-grid", never, { "busy": { "alias": "busy"; "required": false; "isSignal": true; }; "count": { "alias": "count"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "labels": { "alias": "labels"; "required": false; "isSignal": true; }; "values": { "alias": "values"; "required": false; }; "colors": { "alias": "colors"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
declare class ProgressBarComponent implements OnChanges {
|
|
1059
|
+
readonly value: _angular_core.InputSignal<number>;
|
|
1060
|
+
readonly valueText: _angular_core.InputSignal<string | undefined>;
|
|
1061
|
+
readonly total: _angular_core.InputSignal<number>;
|
|
1062
|
+
readonly totalText: _angular_core.InputSignal<string | undefined>;
|
|
1063
|
+
readonly text: _angular_core.InputSignal<string | undefined>;
|
|
1064
|
+
readonly busy: _angular_core.InputSignal<boolean>;
|
|
1065
|
+
percentage: number;
|
|
1066
|
+
constructor();
|
|
1067
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1068
|
+
private calcPercentage;
|
|
1069
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
|
|
1070
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ProgressBarComponent, "lib-progress-bar", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "valueText": { "alias": "value-text"; "required": false; "isSignal": true; }; "total": { "alias": "total"; "required": false; "isSignal": true; }; "totalText": { "alias": "total-text"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "busy": { "alias": "busy"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
declare class AdvancedSearchComponent implements OnInit, OnChanges {
|
|
1074
|
+
readonly advancedSearchChanged: _angular_core.OutputEmitterRef<FilterClause[]>;
|
|
1075
|
+
readonly operatorsDisabled: _angular_core.InputSignal<boolean>;
|
|
1076
|
+
readonly searchOptions: _angular_core.InputSignal<SearchOption[]>;
|
|
1077
|
+
filters: FilterClause[];
|
|
1078
|
+
readonly searchCriteriaLabel: _angular_core.InputSignal<string>;
|
|
1079
|
+
menuOptions: MenuOption[];
|
|
1080
|
+
operatorMenuOptions: MenuOption[];
|
|
1081
|
+
operatorOptions: _indice_ng_components.IDictionary<{
|
|
1082
|
+
label: string;
|
|
1083
|
+
value: string;
|
|
1084
|
+
description?: string;
|
|
1085
|
+
}[]>;
|
|
1086
|
+
operators: Record<string, MenuOption[]>;
|
|
1087
|
+
selectedOperator?: string;
|
|
1088
|
+
selectedField?: SearchOption;
|
|
1089
|
+
fieldValue?: string;
|
|
1090
|
+
fieldValueDateFrom: any;
|
|
1091
|
+
fieldValueDateTo: any;
|
|
1092
|
+
menuOptionsDictionary: Record<string, MenuOption[]>;
|
|
1093
|
+
constructor();
|
|
1094
|
+
ngOnInit(): void;
|
|
1095
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1096
|
+
setSearchOptions(): void;
|
|
1097
|
+
selectedFieldChanged(field: string): void;
|
|
1098
|
+
selectedOperatorChanged(operator: any): void;
|
|
1099
|
+
selectedFieldValueChanged(fieldValue: string): void;
|
|
1100
|
+
search(): void;
|
|
1101
|
+
removeFilter(index: number): void;
|
|
1102
|
+
isDateValueUnpicked(): boolean;
|
|
1103
|
+
isFieldAndOperatorUnpicked(): boolean;
|
|
1104
|
+
clear(): void;
|
|
1105
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AdvancedSearchComponent, never>;
|
|
1106
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AdvancedSearchComponent, "lib-advanced-search", never, { "operatorsDisabled": { "alias": "operators-disabled"; "required": false; "isSignal": true; }; "searchOptions": { "alias": "search-options"; "required": false; "isSignal": true; }; "filters": { "alias": "filters"; "required": false; }; "searchCriteriaLabel": { "alias": "searchCriteriaLabel"; "required": false; "isSignal": true; }; }, { "advancedSearchChanged": "advancedSearchChanged"; }, never, never, true, never>;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
/**
|
|
1110
|
+
* Options passed to {@link ComponentLoader.show}.
|
|
1111
|
+
*
|
|
1112
|
+
* @internal
|
|
1113
|
+
*/
|
|
1114
|
+
declare class ComponentLoaderOptions {
|
|
1115
|
+
/**
|
|
1116
|
+
* The content to be drawn inside `<ng-content>` of `ComponentLoader` attached component.
|
|
1117
|
+
* @remarks
|
|
1118
|
+
* `content` can be `Component` , `TemplateRef` or `String`.
|
|
1119
|
+
*/
|
|
1120
|
+
content?: string | TemplateRef<unknown>;
|
|
1121
|
+
/**
|
|
1122
|
+
* The data to be passed to view for `TemplateRef` case.
|
|
1123
|
+
*/
|
|
1124
|
+
context?: unknown;
|
|
1125
|
+
/**
|
|
1126
|
+
* Initial data to be passed to `content` for `Component` case.
|
|
1127
|
+
*/
|
|
1128
|
+
initialState?: unknown;
|
|
1129
|
+
/**
|
|
1130
|
+
* Other properties passed to attached component.
|
|
1131
|
+
*/
|
|
1132
|
+
[key: string]: unknown;
|
|
1133
|
+
/**
|
|
1134
|
+
* id` - The id of the attached component ref.
|
|
1135
|
+
*/
|
|
1136
|
+
id?: number | string;
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
/**
|
|
1140
|
+
* Provides ways of loading and handling dynamic content.
|
|
1141
|
+
*
|
|
1142
|
+
* @remarks
|
|
1143
|
+
* Do NOT use this directly, create an instance through {@link ComponentLoaderFactory}
|
|
1144
|
+
* You can use this loader in two ways:
|
|
1145
|
+
* - Attaches a component to `ViewContainerRef`.
|
|
1146
|
+
* - Attaches a component to `ViewContainerRef`. The attached component has a `<ng-content>` tag inside its view. The {@link ComponentLoaderOptions.content} will be drawn inside this tag.
|
|
1147
|
+
*
|
|
1148
|
+
* @internal
|
|
1149
|
+
*/
|
|
1150
|
+
declare class ComponentLoader<T extends object> {
|
|
1151
|
+
private vcr;
|
|
1152
|
+
private environmentInjector;
|
|
1153
|
+
private applicationRef;
|
|
1154
|
+
private injector;
|
|
1155
|
+
/**
|
|
1156
|
+
* Before content is shown event.
|
|
1157
|
+
*/
|
|
1158
|
+
onBeforeShow: Subject<unknown>;
|
|
1159
|
+
/**
|
|
1160
|
+
* After show content event.
|
|
1161
|
+
* @returns The id of newly created component ref.
|
|
1162
|
+
*/
|
|
1163
|
+
onShown: Subject<unknown>;
|
|
1164
|
+
/**
|
|
1165
|
+
* Before content is hidden event.
|
|
1166
|
+
* @returns The instance of attached component;
|
|
1167
|
+
*/
|
|
1168
|
+
onBeforeHide: Subject<unknown>;
|
|
1169
|
+
/**
|
|
1170
|
+
* After content is hidden event.
|
|
1171
|
+
* @returns The id of destroyed component ref.
|
|
1172
|
+
*/
|
|
1173
|
+
onHidden: Subject<unknown>;
|
|
1174
|
+
instance?: T;
|
|
1175
|
+
componentRef?: ComponentRef<T>;
|
|
1176
|
+
private componentType?;
|
|
1177
|
+
private container;
|
|
1178
|
+
private providers;
|
|
1179
|
+
private contentRef?;
|
|
1180
|
+
private containerDefaultSelector;
|
|
1181
|
+
private innerComponent?;
|
|
1182
|
+
constructor(vcr: ViewContainerRef | undefined, environmentInjector: EnvironmentInjector, applicationRef: ApplicationRef, injector: Injector);
|
|
1183
|
+
/**
|
|
1184
|
+
* Attaches component.
|
|
1185
|
+
* @param componentType - The type component to attach.
|
|
1186
|
+
* @returns Current instance of {@link ComponentLoader}
|
|
1187
|
+
*/
|
|
1188
|
+
attach(componentType: Type<T>): ComponentLoader<T>;
|
|
1189
|
+
/**
|
|
1190
|
+
* Body will be used in nothing is provided.
|
|
1191
|
+
* @param container - The element in which dynamic content will be drawn inside to. For string case a query to the dom will be executed to find the element.
|
|
1192
|
+
* @returns Current instance of {@link ComponentLoader}
|
|
1193
|
+
*/
|
|
1194
|
+
to(container?: string | ElementRef): ComponentLoader<T>;
|
|
1195
|
+
/**
|
|
1196
|
+
* Adds provider to the providers array. These providers will be injected to the attached component.
|
|
1197
|
+
*
|
|
1198
|
+
* @see {@link https://angular.io/guide/glossary#di-token | Injection Token}
|
|
1199
|
+
*
|
|
1200
|
+
* @param provider - Provider to inject.
|
|
1201
|
+
* @returns Current instance of {@link ComponentLoader}
|
|
1202
|
+
*/
|
|
1203
|
+
provide(provider: StaticProvider): ComponentLoader<T>;
|
|
1204
|
+
/**
|
|
1205
|
+
* Attaches attached component to dom and any dynamic content if provided.
|
|
1206
|
+
* @remarks
|
|
1207
|
+
* Also triggers the {@link ComponentLoader.onBeforeShow} and {@link ComponentLoader.onShown} events.
|
|
1208
|
+
*
|
|
1209
|
+
* @param options - {@link ComponentLoaderOptions}.
|
|
1210
|
+
* @returns A reference to the created content.
|
|
1211
|
+
*/
|
|
1212
|
+
show(options?: ComponentLoaderOptions): ComponentRef<T> | undefined;
|
|
1213
|
+
/**
|
|
1214
|
+
* Removes attached component from dom.
|
|
1215
|
+
* @remarks
|
|
1216
|
+
* Also triggers the {@link ComponentLoader.onBeforeHide} and {@link ComponentLoader.onHidden} events.
|
|
1217
|
+
*
|
|
1218
|
+
* @param id - If provided it is returned through the {@link ComponentLoader.onHidden}.
|
|
1219
|
+
* @returns Current instance of {@link ComponentLoader}
|
|
1220
|
+
*/
|
|
1221
|
+
hide(id?: number | string, result?: any): ComponentLoader<T>;
|
|
1222
|
+
getInnerComponent(): ComponentRef<T> | undefined;
|
|
1223
|
+
private markComponentsForCheck;
|
|
1224
|
+
private createComponentAndAttachToView;
|
|
1225
|
+
private appendContentToContainer;
|
|
1226
|
+
private getContentRef;
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
/**
|
|
1230
|
+
* Use to create instances of {@link ComponentLoader}.
|
|
1231
|
+
*
|
|
1232
|
+
* @public
|
|
1233
|
+
*/
|
|
1234
|
+
declare class ComponentLoaderFactory {
|
|
1235
|
+
private environmentInjector;
|
|
1236
|
+
private injector;
|
|
1237
|
+
private applicationRef;
|
|
1238
|
+
constructor(environmentInjector: EnvironmentInjector, injector: Injector, applicationRef: ApplicationRef);
|
|
1239
|
+
/**
|
|
1240
|
+
* Returns a new instance of {@link ComponentLoader}
|
|
1241
|
+
* @param viewContainerRef - The view container the dynamic content will be attached to.
|
|
1242
|
+
* @returns A new instance of {@link ComponentLoader}.
|
|
1243
|
+
*
|
|
1244
|
+
* @public
|
|
1245
|
+
*/
|
|
1246
|
+
createLoader<T extends object>(viewContainerRef?: ViewContainerRef): ComponentLoader<T>;
|
|
1247
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ComponentLoaderFactory, never>;
|
|
1248
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ComponentLoaderFactory>;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterViewInit, AfterViewChecked {
|
|
1252
|
+
private _router;
|
|
1253
|
+
private _componentLoaderFactory;
|
|
1254
|
+
private _cdr;
|
|
1255
|
+
private _config;
|
|
1256
|
+
private _dynamicComponentHosts;
|
|
1257
|
+
readonly rightPane: _angular_core.Signal<SidePaneComponent | undefined>;
|
|
1258
|
+
readonly busy: _angular_core.InputSignal<boolean>;
|
|
1259
|
+
readonly sidebarFooterTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
1260
|
+
private _routerSub$;
|
|
1261
|
+
showRightPaneSM: boolean;
|
|
1262
|
+
activeConfig: IShellConfig;
|
|
1263
|
+
loaded: boolean;
|
|
1264
|
+
hideSidebar: boolean;
|
|
1265
|
+
constructor(_router: Router, _componentLoaderFactory: ComponentLoaderFactory, _cdr: ChangeDetectorRef, _config: IShellConfig | undefined);
|
|
1266
|
+
ngAfterViewChecked(): void;
|
|
1267
|
+
ngOnInit(): void;
|
|
1268
|
+
ngAfterViewInit(): void;
|
|
1269
|
+
private initCustomComponents;
|
|
1270
|
+
ngOnDestroy(): void;
|
|
1271
|
+
private loadCustomComponent;
|
|
1272
|
+
onSidePaneActivated($event: any): void;
|
|
1273
|
+
onSidePaneDeactivated($event: any): void;
|
|
1274
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShellLayoutComponent, never>;
|
|
1275
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, { "busy": { "alias": "busy"; "required": false; "isSignal": true; }; "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
declare class ShellHeaderComponent implements OnInit, OnDestroy {
|
|
1279
|
+
protected authService: AuthService;
|
|
1280
|
+
protected router: Router;
|
|
1281
|
+
protected route: ActivatedRoute;
|
|
1282
|
+
config: any;
|
|
1283
|
+
links: any;
|
|
1284
|
+
readonly sectionLinksPath: _angular_core.InputSignal<string>;
|
|
1285
|
+
readonly profileMenuVisible: _angular_core.InputSignal<boolean>;
|
|
1286
|
+
readonly showUserNameOnHeader: _angular_core.InputSignal<boolean | undefined>;
|
|
1287
|
+
readonly showPictureOnHeader: _angular_core.InputSignal<boolean | undefined>;
|
|
1288
|
+
readonly showAlerts: _angular_core.InputSignal<boolean | undefined>;
|
|
1289
|
+
readonly showLangs: _angular_core.InputSignal<boolean | undefined>;
|
|
1290
|
+
readonly border: _angular_core.InputSignal<boolean>;
|
|
1291
|
+
readonly busy: _angular_core.InputSignal<boolean>;
|
|
1292
|
+
sectionLinks: Observable<NavLink[]>;
|
|
1293
|
+
mobileMenuExpanded: boolean;
|
|
1294
|
+
userMenuExpanded: boolean;
|
|
1295
|
+
protected routeSubject: Observable<Event$1>;
|
|
1296
|
+
protected routerSub$: Subscription | null;
|
|
1297
|
+
protected userSub$: Subscription | null;
|
|
1298
|
+
protected statusSub$: Subscription | null;
|
|
1299
|
+
user: User | null;
|
|
1300
|
+
avatarName: string | null;
|
|
1301
|
+
activeFragment: any | null;
|
|
1302
|
+
private cdr;
|
|
1303
|
+
constructor(authService: AuthService, router: Router, route: ActivatedRoute, config: any, links: any);
|
|
1304
|
+
ngOnInit(): void;
|
|
1305
|
+
ngOnDestroy(): void;
|
|
1306
|
+
onClickOutside($event: any): void;
|
|
1307
|
+
signin(event: any | null | undefined): void;
|
|
1308
|
+
private setCurrentUser;
|
|
1309
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShellHeaderComponent, never>;
|
|
1310
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShellHeaderComponent, "lib-shell-header", never, { "sectionLinksPath": { "alias": "section-links"; "required": false; "isSignal": true; }; "profileMenuVisible": { "alias": "profile-menu"; "required": false; "isSignal": true; }; "showUserNameOnHeader": { "alias": "show-userName"; "required": false; "isSignal": true; }; "showPictureOnHeader": { "alias": "show-picture"; "required": false; "isSignal": true; }; "showAlerts": { "alias": "show-alerts"; "required": false; "isSignal": true; }; "showLangs": { "alias": "show-langs"; "required": false; "isSignal": true; }; "border": { "alias": "border"; "required": false; "isSignal": true; }; "busy": { "alias": "busy"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
declare class ShellFooterComponent {
|
|
1314
|
+
links: IAppLinks;
|
|
1315
|
+
constructor(links: IAppLinks);
|
|
1316
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShellFooterComponent, never>;
|
|
1317
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShellFooterComponent, "lib-shell-footer", never, {}, {}, never, never, true, never>;
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
declare class ShellSidebarComponent implements OnInit {
|
|
1321
|
+
protected router: Router;
|
|
1322
|
+
protected route: ActivatedRoute;
|
|
1323
|
+
links: any;
|
|
1324
|
+
constructor(router: Router, route: ActivatedRoute, links: any);
|
|
1325
|
+
readonly sectionLinksPath: _angular_core.InputSignal<string>;
|
|
1326
|
+
readonly shellConfig: _angular_core.InputSignal<IShellConfig | undefined>;
|
|
1327
|
+
readonly sticky: _angular_core.InputSignal<boolean>;
|
|
1328
|
+
sectionLinks: Observable$1<NavLink[]>;
|
|
1329
|
+
activeFragment: any | null;
|
|
1330
|
+
get activeNavLinkClass(): string;
|
|
1331
|
+
ngOnInit(): void;
|
|
1332
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShellSidebarComponent, never>;
|
|
1333
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShellSidebarComponent, "lib-shell-sidebar", never, { "sectionLinksPath": { "alias": "section-links"; "required": false; "isSignal": true; }; "shellConfig": { "alias": "config"; "required": false; "isSignal": true; }; "sticky": { "alias": "sticky"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
declare class ShellSidebarHeaderComponent extends ShellHeaderComponent {
|
|
1337
|
+
protected authService: AuthService;
|
|
1338
|
+
protected router: Router;
|
|
1339
|
+
protected route: ActivatedRoute;
|
|
1340
|
+
config: any;
|
|
1341
|
+
links: any;
|
|
1342
|
+
constructor(authService: AuthService, router: Router, route: ActivatedRoute, config: any, links: any);
|
|
1343
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShellSidebarHeaderComponent, never>;
|
|
1344
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShellSidebarHeaderComponent, "lib-shell-sidebar-header", never, {}, {}, never, never, true, never>;
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
declare class ViewLayoutComponent implements OnInit {
|
|
1348
|
+
private route$;
|
|
1349
|
+
private router$;
|
|
1350
|
+
private readonly searchInput$;
|
|
1351
|
+
readonly header: _angular_core.InputSignal<boolean>;
|
|
1352
|
+
readonly fluid: _angular_core.InputSignal<boolean>;
|
|
1353
|
+
readonly title: _angular_core.InputSignal<string>;
|
|
1354
|
+
icon: string | null;
|
|
1355
|
+
readonly actions: _angular_core.InputSignal<ViewAction[] | null>;
|
|
1356
|
+
readonly busy: _angular_core.InputSignal<boolean>;
|
|
1357
|
+
readonly searchPlaceholder: _angular_core.InputSignal<string | null>;
|
|
1358
|
+
view: string | null;
|
|
1359
|
+
metaItems: HeaderMetaItem[] | null;
|
|
1360
|
+
readonly onAction: _angular_core.OutputEmitterRef<ViewAction>;
|
|
1361
|
+
readonly onSearch: _angular_core.OutputEmitterRef<string>;
|
|
1362
|
+
constructor(route$: ActivatedRoute, router$: Router);
|
|
1363
|
+
ngOnInit(): void;
|
|
1364
|
+
emitActionClick(action: ViewAction): void;
|
|
1365
|
+
routerLinkActionClick(action: RouterViewAction | any): void;
|
|
1366
|
+
searchActionClick(action: ViewAction, text: string): void;
|
|
1367
|
+
searchActionType(text: string): void;
|
|
1368
|
+
handleClear(event: any): void;
|
|
1369
|
+
switchViewActionClick(action: SwitchViewAction | any): void;
|
|
1370
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewLayoutComponent, never>;
|
|
1371
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ViewLayoutComponent, "lib-view-layout", never, { "header": { "alias": "show-header"; "required": false; "isSignal": true; }; "fluid": { "alias": "fluid"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "busy": { "alias": "busy"; "required": false; "isSignal": true; }; "searchPlaceholder": { "alias": "search-placeholder"; "required": false; "isSignal": true; }; "view": { "alias": "view"; "required": false; }; "metaItems": { "alias": "meta-items"; "required": false; }; }, { "onAction": "onAction"; "onSearch": "onSearch"; }, never, ["*"], true, never>;
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
declare class ModelViewLayoutComponent implements OnInit, OnDestroy {
|
|
1375
|
+
private location;
|
|
1376
|
+
private router;
|
|
1377
|
+
private route;
|
|
1378
|
+
private cdr;
|
|
1379
|
+
showRightPaneSM: boolean;
|
|
1380
|
+
readonly title: _angular_core.InputSignal<string>;
|
|
1381
|
+
readonly primary: _angular_core.InputSignal<{
|
|
1382
|
+
type?: string;
|
|
1383
|
+
text: string;
|
|
1384
|
+
link: string;
|
|
1385
|
+
icon?: string;
|
|
1386
|
+
exact?: boolean;
|
|
1387
|
+
}[] | null>;
|
|
1388
|
+
readonly secondary: _angular_core.InputSignal<{
|
|
1389
|
+
type?: string;
|
|
1390
|
+
text: string;
|
|
1391
|
+
link: string;
|
|
1392
|
+
icon?: string;
|
|
1393
|
+
exact?: boolean;
|
|
1394
|
+
}[] | null>;
|
|
1395
|
+
readonly metaItems: _angular_core.InputSignal<HeaderMetaItem[] | null>;
|
|
1396
|
+
readonly icon: _angular_core.InputSignal<string | null>;
|
|
1397
|
+
readonly busy: _angular_core.InputSignal<boolean>;
|
|
1398
|
+
readonly actions: _angular_core.InputSignal<ViewAction[] | null>;
|
|
1399
|
+
readonly onAction: _angular_core.OutputEmitterRef<ViewAction>;
|
|
1400
|
+
private optionsLoaded;
|
|
1401
|
+
private _options;
|
|
1402
|
+
selectedTab: any;
|
|
1403
|
+
private selectedTabSub$;
|
|
1404
|
+
get tabsOptions(): MenuOption[];
|
|
1405
|
+
constructor(location: Location, router: Router, route: ActivatedRoute, cdr: ChangeDetectorRef);
|
|
1406
|
+
ngOnInit(): void;
|
|
1407
|
+
ngOnDestroy(): void;
|
|
1408
|
+
onSidePaneActivated($event: any): void;
|
|
1409
|
+
onSidePaneDeactivated($event: any): void;
|
|
1410
|
+
closeSidePane(): void;
|
|
1411
|
+
navigateLink(link: any): void;
|
|
1412
|
+
emitActionClick(action: ViewAction): void;
|
|
1413
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ModelViewLayoutComponent, never>;
|
|
1414
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ModelViewLayoutComponent, "lib-model-view-layout", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "primary": { "alias": "primary-links"; "required": false; "isSignal": true; }; "secondary": { "alias": "secondary-links"; "required": false; "isSignal": true; }; "metaItems": { "alias": "meta-items"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "busy": { "alias": "busy"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; }, { "onAction": "onAction"; }, never, ["*"], true, never>;
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1417
|
+
declare class SideViewLayoutComponent implements OnInit {
|
|
1418
|
+
private location;
|
|
1419
|
+
private router;
|
|
1420
|
+
readonly title: _angular_core.InputSignal<string | null>;
|
|
1421
|
+
readonly showActions: _angular_core.InputSignal<boolean>;
|
|
1422
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
1423
|
+
readonly returnPath: _angular_core.InputSignal<string | undefined>;
|
|
1424
|
+
readonly okLabel: _angular_core.InputSignal<string>;
|
|
1425
|
+
readonly okShow: _angular_core.InputSignal<boolean>;
|
|
1426
|
+
readonly closeOnOk: _angular_core.InputSignal<boolean>;
|
|
1427
|
+
readonly cancelLabel: _angular_core.InputSignal<string>;
|
|
1428
|
+
readonly cancelShow: _angular_core.InputSignal<boolean>;
|
|
1429
|
+
readonly forceLocationBack: _angular_core.InputSignal<boolean>;
|
|
1430
|
+
readonly redirectOnClose: _angular_core.InputSignal<boolean>;
|
|
1431
|
+
readonly cancel: _angular_core.OutputEmitterRef<boolean>;
|
|
1432
|
+
readonly ok: _angular_core.OutputEmitterRef<boolean>;
|
|
1433
|
+
constructor(location: Location, router: Router);
|
|
1434
|
+
ngOnInit(): void;
|
|
1435
|
+
closeSidePane(): void;
|
|
1436
|
+
emitClose(): void;
|
|
1437
|
+
emitCancel(): void;
|
|
1438
|
+
emitOK(): void;
|
|
1439
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SideViewLayoutComponent, never>;
|
|
1440
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SideViewLayoutComponent, "lib-side-view-layout", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "showActions": { "alias": "showActions"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "returnPath": { "alias": "return-path"; "required": false; "isSignal": true; }; "okLabel": { "alias": "ok-label"; "required": false; "isSignal": true; }; "okShow": { "alias": "ok-show"; "required": false; "isSignal": true; }; "closeOnOk": { "alias": "ok-close-dialog"; "required": false; "isSignal": true; }; "cancelLabel": { "alias": "cancel-label"; "required": false; "isSignal": true; }; "cancelShow": { "alias": "cancel-show"; "required": false; "isSignal": true; }; "forceLocationBack": { "alias": "force-location-back"; "required": false; "isSignal": true; }; "redirectOnClose": { "alias": "redirect-on-close"; "required": false; "isSignal": true; }; }, { "cancel": "cancel"; "ok": "ok"; }, never, ["*"], true, never>;
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
declare class FormLayoutComponent implements OnInit {
|
|
1444
|
+
private router$;
|
|
1445
|
+
private readonly searchInput$;
|
|
1446
|
+
readonly formPane: _angular_core.Signal<SidePaneComponent | undefined>;
|
|
1447
|
+
title: string | null;
|
|
1448
|
+
image: string | null;
|
|
1449
|
+
icon: string | null;
|
|
1450
|
+
readonly searchPlaceholder: _angular_core.InputSignal<string | null>;
|
|
1451
|
+
actions: ViewAction[] | null;
|
|
1452
|
+
subTitle: string | null;
|
|
1453
|
+
readonly onAction: _angular_core.OutputEmitterRef<ViewAction>;
|
|
1454
|
+
readonly onSearch: _angular_core.OutputEmitterRef<string>;
|
|
1455
|
+
readonly onComplete: _angular_core.OutputEmitterRef<boolean>;
|
|
1456
|
+
constructor(router$: Router);
|
|
1457
|
+
ngOnInit(): void;
|
|
1458
|
+
emitActionClick(action: ViewAction): void;
|
|
1459
|
+
searchActionClick(action: ViewAction, text: string): void;
|
|
1460
|
+
searchActionType(text: string): void;
|
|
1461
|
+
routerLinkActionClick(action: RouterViewAction | any, relative?: boolean): void;
|
|
1462
|
+
onSidePaneDeactivated($event: any): void;
|
|
1463
|
+
onSidePaneActivated($event: any): void;
|
|
1464
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormLayoutComponent, never>;
|
|
1465
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormLayoutComponent, "lib-form-layout", never, { "title": { "alias": "title"; "required": false; }; "image": { "alias": "image"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "searchPlaceholder": { "alias": "search-placeholder"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; }; "subTitle": { "alias": "sub-title"; "required": false; }; }, { "onAction": "onAction"; "onSearch": "onSearch"; "onComplete": "onComplete"; }, never, ["*"], true, never>;
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1468
|
+
declare class AuthCallbackComponent implements OnInit {
|
|
1469
|
+
private authService;
|
|
1470
|
+
private router;
|
|
1471
|
+
private cdr;
|
|
1472
|
+
constructor(authService: AuthService, router: Router, cdr: ChangeDetectorRef);
|
|
1473
|
+
status: string;
|
|
1474
|
+
ngOnInit(): void;
|
|
1475
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AuthCallbackComponent, never>;
|
|
1476
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AuthCallbackComponent, "lib-auth-callback", never, {}, {}, never, never, true, never>;
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
declare class AuthRenewComponent implements OnInit {
|
|
1480
|
+
private authService;
|
|
1481
|
+
private router;
|
|
1482
|
+
private cdr;
|
|
1483
|
+
constructor(authService: AuthService, router: Router, cdr: ChangeDetectorRef);
|
|
1484
|
+
ngOnInit(): void;
|
|
1485
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AuthRenewComponent, never>;
|
|
1486
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AuthRenewComponent, "lib-auth-renew", never, {}, {}, never, never, true, never>;
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
declare class LoggedOutComponent implements OnInit {
|
|
1490
|
+
private authService;
|
|
1491
|
+
private cdr;
|
|
1492
|
+
constructor(authService: AuthService, cdr: ChangeDetectorRef);
|
|
1493
|
+
status: string;
|
|
1494
|
+
finished: boolean;
|
|
1495
|
+
ngOnInit(): void;
|
|
1496
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LoggedOutComponent, never>;
|
|
1497
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LoggedOutComponent, "lib-logged-out", never, {}, {}, never, never, true, never>;
|
|
1498
|
+
}
|
|
1499
|
+
|
|
1500
|
+
declare class ErrorComponent implements OnInit {
|
|
1501
|
+
error: string;
|
|
1502
|
+
ngOnInit(): void;
|
|
1503
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ErrorComponent, never>;
|
|
1504
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ErrorComponent, "lib-error", never, {}, {}, never, never, true, never>;
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
declare class PageNotFoundComponent implements OnInit {
|
|
1508
|
+
constructor();
|
|
1509
|
+
ngOnInit(): void;
|
|
1510
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PageNotFoundComponent, never>;
|
|
1511
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PageNotFoundComponent, "lib-page-not-found", never, {}, {}, never, never, true, never>;
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
declare class UnauthorizedComponent implements OnInit {
|
|
1515
|
+
constructor();
|
|
1516
|
+
ngOnInit(): void;
|
|
1517
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<UnauthorizedComponent, never>;
|
|
1518
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<UnauthorizedComponent, "lib-unauthorized", never, {}, {}, never, never, true, never>;
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
declare class AddressPipe implements PipeTransform {
|
|
1522
|
+
transform(value: IAddress | undefined): string;
|
|
1523
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AddressPipe, never>;
|
|
1524
|
+
static ɵpipe: _angular_core.ɵɵPipeDeclaration<AddressPipe, "address", true>;
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1527
|
+
declare class DurationFormatPipe implements PipeTransform {
|
|
1528
|
+
transform(value: any, arg1: any, arg2: any): string;
|
|
1529
|
+
private format;
|
|
1530
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DurationFormatPipe, never>;
|
|
1531
|
+
static ɵpipe: _angular_core.ɵɵPipeDeclaration<DurationFormatPipe, "durationFormat", true>;
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
declare class ShortNumberPipe implements PipeTransform {
|
|
1535
|
+
transform(number: number, args?: any): any;
|
|
1536
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShortNumberPipe, never>;
|
|
1537
|
+
static ɵpipe: _angular_core.ɵɵPipeDeclaration<ShortNumberPipe, "shortNumber", true>;
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1540
|
+
declare const APP_LANGUAGES: InjectionToken<IAppLanguagesService>;
|
|
1541
|
+
declare const APP_LINKS: InjectionToken<IAppLinks>;
|
|
1542
|
+
declare const APP_NOTIFICATIONS: InjectionToken<IAppNotifications>;
|
|
1543
|
+
declare const LIBSTEPPER_ACCESSOR: InjectionToken<LibStepperComponent>;
|
|
1544
|
+
declare const LIBTABGROUP_ACCESSOR: InjectionToken<LibTabGroupComponent>;
|
|
1545
|
+
declare const SHELL_CONFIG: InjectionToken<IShellConfig>;
|
|
1546
|
+
declare const BREADCRUMB_LABEL_RESOLVER: InjectionToken<IBreadcrumbLabelProcessor>;
|
|
1547
|
+
|
|
1548
|
+
declare class Icons {
|
|
1549
|
+
static Dashboard: string;
|
|
1550
|
+
static Locations: string;
|
|
1551
|
+
static ChargePoints: string;
|
|
1552
|
+
static Transations: string;
|
|
1553
|
+
static Badges: string;
|
|
1554
|
+
static Information: string;
|
|
1555
|
+
static Refresh: string;
|
|
1556
|
+
static Search: string;
|
|
1557
|
+
static Add: string;
|
|
1558
|
+
static Delete: string;
|
|
1559
|
+
static SendEmail: string;
|
|
1560
|
+
static Filter: string;
|
|
1561
|
+
static Export: string;
|
|
1562
|
+
static Import: string;
|
|
1563
|
+
static TilesView: string;
|
|
1564
|
+
static TableView: string;
|
|
1565
|
+
static MapView: string;
|
|
1566
|
+
static EntryView: string;
|
|
1567
|
+
static Separator: string;
|
|
1568
|
+
static ItemsCount: string;
|
|
1569
|
+
static Heart: string;
|
|
1570
|
+
static HeartBroken: string;
|
|
1571
|
+
static DateTime: string;
|
|
1572
|
+
static Expand: string;
|
|
1573
|
+
static Collapse: string;
|
|
1574
|
+
static SortAsc: string;
|
|
1575
|
+
static SortDesc: string;
|
|
1576
|
+
static Details: string;
|
|
1577
|
+
static Messages: string;
|
|
1578
|
+
static MessagesUnread: string;
|
|
1579
|
+
static External: string;
|
|
1580
|
+
static Statistics: string;
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
declare abstract class BaseListComponent<T> implements OnInit, OnDestroy {
|
|
1584
|
+
private route$;
|
|
1585
|
+
private router$;
|
|
1586
|
+
items: T[] | null | undefined;
|
|
1587
|
+
view: string;
|
|
1588
|
+
title: string | null;
|
|
1589
|
+
actions: ViewAction[];
|
|
1590
|
+
loaderItems: any[];
|
|
1591
|
+
page: number;
|
|
1592
|
+
pageSize: number;
|
|
1593
|
+
count: number;
|
|
1594
|
+
sort: string | null;
|
|
1595
|
+
sortdir: string | null;
|
|
1596
|
+
search: string | null;
|
|
1597
|
+
filters: FilterClause[];
|
|
1598
|
+
searchOptions: SearchOption[];
|
|
1599
|
+
sortOptions: MenuOption[];
|
|
1600
|
+
metaItems: HeaderMetaItem[];
|
|
1601
|
+
singularResult: string;
|
|
1602
|
+
pluralResults: string;
|
|
1603
|
+
abstract newItemLink: string | null;
|
|
1604
|
+
minimumSearchCharacters: number;
|
|
1605
|
+
searchDebounceTime: number;
|
|
1606
|
+
private searchSubject$;
|
|
1607
|
+
private readonly destroyRef;
|
|
1608
|
+
protected readonly cdr: ChangeDetectorRef;
|
|
1609
|
+
readonly autoLoad: _angular_core.InputSignal<boolean>;
|
|
1610
|
+
constructor(route$: ActivatedRoute, router$: Router);
|
|
1611
|
+
getViewActions(): Observable<ViewAction[]>;
|
|
1612
|
+
ngOnInit(): void;
|
|
1613
|
+
ngOnDestroy(): void;
|
|
1614
|
+
/**
|
|
1615
|
+
* Get filters from a querystring
|
|
1616
|
+
* @param queryParamMap
|
|
1617
|
+
* @returns filters found from a paramMap
|
|
1618
|
+
*/
|
|
1619
|
+
private getFiltersFrom;
|
|
1620
|
+
private setRouteParams;
|
|
1621
|
+
private filterClausesToString;
|
|
1622
|
+
actionHandler($event: ViewAction): void;
|
|
1623
|
+
private load;
|
|
1624
|
+
private updateHeaderMeta;
|
|
1625
|
+
abstract loadItems(): Observable<IResultSet<T> | null | undefined>;
|
|
1626
|
+
clear(): void;
|
|
1627
|
+
refresh(): void;
|
|
1628
|
+
pageChanged(page: number): void;
|
|
1629
|
+
pageSizeChanged(pageSize: number): void;
|
|
1630
|
+
sortChanged(sort: string): void;
|
|
1631
|
+
sortdirChanged(sortdir: string): void;
|
|
1632
|
+
advancedSearchChanged(filters: FilterClause[]): void;
|
|
1633
|
+
searchChanged(searchText: string | null): void;
|
|
1634
|
+
private executeSearch;
|
|
1635
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BaseListComponent<any>, never>;
|
|
1636
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BaseListComponent<any>, "ng-component", never, { "autoLoad": { "alias": "auto-load"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
/**
|
|
1640
|
+
* Modals option can be passed to a specific modal from {@link ModalService.show} or
|
|
1641
|
+
* set globbaly using the injection token {@link MODAL_CONFIG_DEFAULT_OVERRIDE}.
|
|
1642
|
+
* @remarks
|
|
1643
|
+
* Modal specific options are merged with global options.
|
|
1644
|
+
* @see {@link modalConfigDefaults} for defaults.
|
|
1645
|
+
* @public
|
|
1646
|
+
*/
|
|
1647
|
+
declare class ModalOptions<T = Record<string, unknown>> {
|
|
1648
|
+
/**
|
|
1649
|
+
* Id for opened modal. If not set a random one is generated.
|
|
1650
|
+
*/
|
|
1651
|
+
id?: number | string;
|
|
1652
|
+
/**
|
|
1653
|
+
* If static is set the modal will not close when clicking outside of modal.
|
|
1654
|
+
* @remarks
|
|
1655
|
+
* Keyboard event (escape key) stills applies. If you must get a result then also set keyboard to false.
|
|
1656
|
+
*/
|
|
1657
|
+
backdrop?: boolean | 'static';
|
|
1658
|
+
/**
|
|
1659
|
+
* Closes the modal when escape key is pressed.
|
|
1660
|
+
*/
|
|
1661
|
+
keyboard?: boolean;
|
|
1662
|
+
/**
|
|
1663
|
+
* Shows the modal when initialized.
|
|
1664
|
+
*/
|
|
1665
|
+
show?: boolean;
|
|
1666
|
+
/**
|
|
1667
|
+
* Ignore the backdrop click. Pretty much the same as backdrop static.
|
|
1668
|
+
*/
|
|
1669
|
+
ignoreBackdropClick?: boolean;
|
|
1670
|
+
/**
|
|
1671
|
+
* Css class for opened modal.
|
|
1672
|
+
*/
|
|
1673
|
+
class?: string;
|
|
1674
|
+
/**
|
|
1675
|
+
* Toggle animation.
|
|
1676
|
+
*/
|
|
1677
|
+
animated?: boolean;
|
|
1678
|
+
/**
|
|
1679
|
+
* Modal initial data.
|
|
1680
|
+
* @remarks
|
|
1681
|
+
* This data must be known properties of content component.
|
|
1682
|
+
*/
|
|
1683
|
+
initialState?: Partial<T>;
|
|
1684
|
+
/**
|
|
1685
|
+
* Function to intercept the closure.
|
|
1686
|
+
* @remarks
|
|
1687
|
+
* You can use to catch the close event and even prevent it from closing.
|
|
1688
|
+
*/
|
|
1689
|
+
closeInterceptor?: CloseInterceptorFn;
|
|
1690
|
+
/**
|
|
1691
|
+
* Modal static providers.
|
|
1692
|
+
* @see {@link https://angular.io/guide/glossary#di-token | Injection Token}
|
|
1693
|
+
*/
|
|
1694
|
+
providers?: StaticProvider[];
|
|
1695
|
+
/**
|
|
1696
|
+
* aria-labelledby attribute value to set on the modal window.
|
|
1697
|
+
*/
|
|
1698
|
+
ariaLabelledBy?: string;
|
|
1699
|
+
/**
|
|
1700
|
+
* aria-describedby attribute value to set on the modal window.
|
|
1701
|
+
*/
|
|
1702
|
+
ariaDescribedby?: string;
|
|
1703
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ModalOptions<any>, never>;
|
|
1704
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ModalOptions<any>>;
|
|
1705
|
+
}
|
|
1706
|
+
/**
|
|
1707
|
+
* Use this injection token to set global options.
|
|
1708
|
+
*/
|
|
1709
|
+
declare const MODAL_CONFIG_DEFAULT_OVERRIDE: InjectionToken<ModalOptions>;
|
|
1710
|
+
/**
|
|
1711
|
+
* Close interceptor promise.
|
|
1712
|
+
*/
|
|
1713
|
+
type CloseInterceptorFn = () => Promise<void>;
|
|
1714
|
+
|
|
1715
|
+
/**
|
|
1716
|
+
* Modal container component.
|
|
1717
|
+
* @remarks
|
|
1718
|
+
* All dynamic content `TemplateRef` or `Component` case will be drawn inside this.
|
|
1719
|
+
* You can override css classes to theme it {@link cssClassNames}
|
|
1720
|
+
* @internal
|
|
1721
|
+
*/
|
|
1722
|
+
declare class ModalContainerComponent implements OnInit, OnDestroy {
|
|
1723
|
+
protected _element: ElementRef;
|
|
1724
|
+
private renderer;
|
|
1725
|
+
level?: number;
|
|
1726
|
+
config: ModalOptions;
|
|
1727
|
+
modalService?: ModalService;
|
|
1728
|
+
private isShown;
|
|
1729
|
+
private animationsEnabled;
|
|
1730
|
+
private isModalHiding;
|
|
1731
|
+
private clickStartedInContent;
|
|
1732
|
+
constructor(options: ModalOptions, _element: ElementRef, renderer: Renderer2);
|
|
1733
|
+
ngOnInit(): void;
|
|
1734
|
+
onClickStarted(event: MouseEvent): void;
|
|
1735
|
+
onClickStop(event: MouseEvent): void;
|
|
1736
|
+
onPopState(): void;
|
|
1737
|
+
onEsc(event: Event): void;
|
|
1738
|
+
ngOnDestroy(): void;
|
|
1739
|
+
hide(result?: any): void;
|
|
1740
|
+
private _hide;
|
|
1741
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ModalContainerComponent, never>;
|
|
1742
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ModalContainerComponent, "lib-modal-container", never, {}, {}, never, ["*"], true, never>;
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
/**
|
|
1746
|
+
* Modal class.
|
|
1747
|
+
* @remarks
|
|
1748
|
+
* This is returned from {@link ModalService.show}.
|
|
1749
|
+
* @public
|
|
1750
|
+
*/
|
|
1751
|
+
declare class Modal<T = any> {
|
|
1752
|
+
/**
|
|
1753
|
+
* Event that is fired when the modal behind the ref starts hiding.
|
|
1754
|
+
* @returns
|
|
1755
|
+
* Modal component instance.
|
|
1756
|
+
*/
|
|
1757
|
+
onBeforeHide?: Subject<unknown>;
|
|
1758
|
+
/**
|
|
1759
|
+
* Event that is fired when the modal behind the ref finishes hiding.
|
|
1760
|
+
* @returns
|
|
1761
|
+
* An object containing the id of the closed modal and result.
|
|
1762
|
+
*/
|
|
1763
|
+
onHidden?: Subject<unknown>;
|
|
1764
|
+
/**
|
|
1765
|
+
* Id of this modal.
|
|
1766
|
+
*/
|
|
1767
|
+
id?: number | string;
|
|
1768
|
+
/**
|
|
1769
|
+
* Reference to a component inside the modal. Null if modal's been created with TemplateRef.
|
|
1770
|
+
* @remarks
|
|
1771
|
+
* You can use this to do nasty stuff with opened modal instance.
|
|
1772
|
+
*/
|
|
1773
|
+
content?: T;
|
|
1774
|
+
/**
|
|
1775
|
+
* Hides the modal
|
|
1776
|
+
* @param result - A result to the observers.
|
|
1777
|
+
*/
|
|
1778
|
+
hide: (result?: any) => void;
|
|
1779
|
+
/**
|
|
1780
|
+
* Sets new class to modal window.
|
|
1781
|
+
*/
|
|
1782
|
+
setClass: (newClass: string) => void;
|
|
1783
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Modal<any>, never>;
|
|
1784
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<Modal<any>>;
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1787
|
+
/**
|
|
1788
|
+
* A service for using modals.
|
|
1789
|
+
*
|
|
1790
|
+
* @public
|
|
1791
|
+
*/
|
|
1792
|
+
declare class ModalService implements OnDestroy {
|
|
1793
|
+
private clf;
|
|
1794
|
+
private document;
|
|
1795
|
+
private onBeforeShow;
|
|
1796
|
+
private onShown;
|
|
1797
|
+
private onBeforeHide;
|
|
1798
|
+
private onHidden;
|
|
1799
|
+
private backdropRef?;
|
|
1800
|
+
private defaultConfig;
|
|
1801
|
+
private backdropLoader;
|
|
1802
|
+
private loaders;
|
|
1803
|
+
private renderer;
|
|
1804
|
+
private modalsCount;
|
|
1805
|
+
private initialPadding;
|
|
1806
|
+
constructor(clf: ComponentLoaderFactory, rendererFactory: RendererFactory2, document: any, modalDefaultOption: ModalOptions);
|
|
1807
|
+
ngOnDestroy(): void;
|
|
1808
|
+
/**
|
|
1809
|
+
* Opens a new modal.
|
|
1810
|
+
*
|
|
1811
|
+
* @param content - `Component` or `TemplateRef` type.
|
|
1812
|
+
* @param config - Specific {@link ModalOptions | options} for this modal. Global and specific options are merged.
|
|
1813
|
+
* @returns An instance of {@link Modal}
|
|
1814
|
+
*/
|
|
1815
|
+
show<T>(content: string | TemplateRef<any> | (new (...args: any[]) => T), config?: ModalOptions<T>): Modal<T>;
|
|
1816
|
+
/**
|
|
1817
|
+
* Hide an active modal.
|
|
1818
|
+
* @param id - Id of modal to hide. If not provided all active modals are hidden.
|
|
1819
|
+
* @param result - A result to be sent to observers.
|
|
1820
|
+
*/
|
|
1821
|
+
hide(id?: number | string, result?: any): void;
|
|
1822
|
+
getActiveModal(): ModalContainerComponent;
|
|
1823
|
+
private showModal;
|
|
1824
|
+
private hideModal;
|
|
1825
|
+
private showBackdrop;
|
|
1826
|
+
private hideBackdrop;
|
|
1827
|
+
private removeLoaders;
|
|
1828
|
+
private addBodyPadding;
|
|
1829
|
+
private revertScrollbar;
|
|
1830
|
+
private getScrollbarWidth;
|
|
1831
|
+
private isScrollBarPresent;
|
|
1832
|
+
private createLoaders;
|
|
1833
|
+
private copyEvent;
|
|
1834
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ModalService, [null, null, null, { optional: true; }]>;
|
|
1835
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ModalService>;
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
declare class UserSettingsService {
|
|
1839
|
+
private static SETTINGS_KEY;
|
|
1840
|
+
private _defaultPreferences;
|
|
1841
|
+
getAll(): Record<UserSettingKey, any>;
|
|
1842
|
+
get(key: UserSettingKey): any;
|
|
1843
|
+
set(key: UserSettingKey, value: any): void;
|
|
1844
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<UserSettingsService, never>;
|
|
1845
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<UserSettingsService>;
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
declare class DynamicComponentHostDirective {
|
|
1849
|
+
viewContainerRef: ViewContainerRef;
|
|
1850
|
+
readonly hostName: _angular_core.InputSignal<string>;
|
|
1851
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
1852
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DynamicComponentHostDirective, never>;
|
|
1853
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DynamicComponentHostDirective, "[appDynamicComponentHost]", never, { "hostName": { "alias": "hostName"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1854
|
+
}
|
|
1855
|
+
|
|
1856
|
+
declare class LanguageSelectionComponent implements OnInit {
|
|
1857
|
+
langsService: IAppLanguagesService | undefined;
|
|
1858
|
+
menuExpanded: boolean;
|
|
1859
|
+
constructor(langsService: IAppLanguagesService | undefined);
|
|
1860
|
+
ngOnInit(): void;
|
|
1861
|
+
selectLang(option: MenuOption): void;
|
|
1862
|
+
onClickOutside($event: any): void;
|
|
1863
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LanguageSelectionComponent, never>;
|
|
1864
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LanguageSelectionComponent, "lib-language-selection", never, {}, {}, never, never, true, never>;
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
declare class NotificationsIndicatorComponent implements OnInit, OnDestroy {
|
|
1868
|
+
notifications?: IAppNotifications | undefined;
|
|
1869
|
+
links?: any | undefined;
|
|
1870
|
+
menuExpanded: boolean;
|
|
1871
|
+
unreadCount: number;
|
|
1872
|
+
items: any[];
|
|
1873
|
+
allNotificationsLink?: NavLink;
|
|
1874
|
+
private notificationsSub$;
|
|
1875
|
+
private inboxAction;
|
|
1876
|
+
readonly noNotifications: _angular_core.InputSignal<string>;
|
|
1877
|
+
readonly showNotificationsText: _angular_core.InputSignal<string>;
|
|
1878
|
+
newArrival: boolean;
|
|
1879
|
+
private cdr;
|
|
1880
|
+
constructor(notifications?: IAppNotifications | undefined, links?: any | undefined);
|
|
1881
|
+
ngOnDestroy(): void;
|
|
1882
|
+
ngOnInit(): void;
|
|
1883
|
+
doInboxAction(): void;
|
|
1884
|
+
removeItem(index: number): void;
|
|
1885
|
+
onClickOutside($event: any): void;
|
|
1886
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NotificationsIndicatorComponent, never>;
|
|
1887
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NotificationsIndicatorComponent, "lib-notifications-indicator", never, { "noNotifications": { "alias": "noNotifications"; "required": false; "isSignal": true; }; "showNotificationsText": { "alias": "showNotificationsText"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
declare class ShellSidebarLayoutComponent implements OnInit {
|
|
1891
|
+
private _userSettings;
|
|
1892
|
+
config: IShellConfig | undefined;
|
|
1893
|
+
sidebarFooterTemplate?: TemplateRef<any>;
|
|
1894
|
+
readonly busy: _angular_core.InputSignal<boolean>;
|
|
1895
|
+
constructor(_userSettings: UserSettingsService);
|
|
1896
|
+
showMobileSidebar: boolean;
|
|
1897
|
+
ngOnInit(): void;
|
|
1898
|
+
toggleMobileSidebar(): void;
|
|
1899
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShellSidebarLayoutComponent, never>;
|
|
1900
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShellSidebarLayoutComponent, "lib-shell-sidebar-layout", never, { "config": { "alias": "config"; "required": false; }; "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; "busy": { "alias": "busy"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
declare class ShellStackedLayoutComponent implements OnInit {
|
|
1904
|
+
constructor();
|
|
1905
|
+
config: IShellConfig | undefined;
|
|
1906
|
+
readonly busy: _angular_core.InputSignal<boolean>;
|
|
1907
|
+
ngOnInit(): void;
|
|
1908
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShellStackedLayoutComponent, never>;
|
|
1909
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShellStackedLayoutComponent, "lib-shell-stacked-layout", never, { "config": { "alias": "config"; "required": false; }; "busy": { "alias": "busy"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
declare class UserProfileMenuComponent implements OnInit {
|
|
1913
|
+
protected authService: AuthService;
|
|
1914
|
+
protected router: Router;
|
|
1915
|
+
links: any;
|
|
1916
|
+
readonly showUserName: _angular_core.InputSignal<boolean | undefined>;
|
|
1917
|
+
readonly showPicture: _angular_core.InputSignal<boolean | undefined>;
|
|
1918
|
+
protected userSub$: Subscription | null;
|
|
1919
|
+
protected statusSub$: Subscription | null;
|
|
1920
|
+
user: User | null;
|
|
1921
|
+
avatarName: string | null;
|
|
1922
|
+
userMenuExpanded: boolean;
|
|
1923
|
+
private cdr;
|
|
1924
|
+
constructor(authService: AuthService, router: Router, links: any);
|
|
1925
|
+
ngOnInit(): void;
|
|
1926
|
+
signin(event: any | null | undefined): void;
|
|
1927
|
+
private setCurrentUser;
|
|
1928
|
+
onClickOutside($event: any): void;
|
|
1929
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<UserProfileMenuComponent, never>;
|
|
1930
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserProfileMenuComponent, "lib-user-profile-menu", never, { "showUserName": { "alias": "show-user-name"; "required": false; "isSignal": true; }; "showPicture": { "alias": "show-picture"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
/**
|
|
1934
|
+
* Registers the Indice components services for a standalone application.
|
|
1935
|
+
*
|
|
1936
|
+
* @remarks
|
|
1937
|
+
* Prefer this in a standalone bootstrap (`ApplicationConfig.providers`) and import the individual
|
|
1938
|
+
* standalone components/directives/pipes where needed, instead of importing
|
|
1939
|
+
* {@link IndiceComponentsModule}. This is the standalone-native replacement for
|
|
1940
|
+
* {@link IndiceComponentsModule.forRoot}.
|
|
1941
|
+
*
|
|
1942
|
+
* Note: `ModalService` is intentionally not registered here (unchanged from `forRoot()`) — provide
|
|
1943
|
+
* it in the consuming application where modals are used.
|
|
1944
|
+
*/
|
|
1945
|
+
declare function provideIndiceComponents(): EnvironmentProviders;
|
|
1946
|
+
/**
|
|
1947
|
+
* @deprecated Compatibility shim for NgModule-based consumers. Prefer importing the standalone
|
|
1948
|
+
* components/directives/pipes directly and calling {@link provideIndiceComponents}. This module
|
|
1949
|
+
* will be removed in a future major.
|
|
1950
|
+
*/
|
|
1951
|
+
declare class IndiceComponentsModule {
|
|
1952
|
+
static forRoot(): ModuleWithProviders<IndiceComponentsModule>;
|
|
1953
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<IndiceComponentsModule, never>;
|
|
1954
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<IndiceComponentsModule, never, [typeof i1.CommonModule, typeof i2.RouterModule, typeof i3.IndiceAuthModule, typeof i4.FormsModule, typeof AddressPipe, typeof AdvancedSearchComponent, typeof AuthCallbackComponent, typeof AuthRenewComponent, typeof AvatarInitialsComponent, typeof BreadcrumbComponent, typeof ClickOutsideDirective, typeof CollapsiblePanelComponent, typeof ComboboxComponent, typeof EnhancedComboboxComponent, typeof DatepickerComponent, typeof DropDownMenuComponent, typeof DurationFormatPipe, typeof ShortNumberPipe, typeof DynamicComponentHostDirective, typeof ErrorComponent, typeof FormLayoutComponent, typeof KpiTileComponent, typeof LanguageSelectionComponent, typeof LibStepComponent, typeof LibStepInfoDirective, typeof LibStepLabelDirective, typeof LibStepperComponent, typeof LibTabComponent, typeof LibTabGroupComponent, typeof LibTabLabelDirective, typeof ListColumnComponent, typeof ListDetailsSectionComponent, typeof ListTileComponent, typeof ListViewComponent, typeof ListViewEmptyStateComponent, typeof LoggedOutComponent, typeof ModelViewLayoutComponent, typeof NavLinksListComponent, typeof NotificationsIndicatorComponent, typeof PageNotFoundComponent, typeof PagerComponent, typeof ShellFooterComponent, typeof ShellHeaderComponent, typeof ShellLayoutComponent, typeof ShellSidebarComponent, typeof ShellSidebarHeaderComponent, typeof ShellSidebarLayoutComponent, typeof ShellStackedLayoutComponent, typeof SidePaneComponent, typeof SideViewLayoutComponent, typeof SkeletonLoaderComponent, typeof ToasterComponent, typeof ToasterContainerComponent, typeof ToggleComponent, typeof UnauthorizedComponent, typeof UserProfileMenuComponent, typeof ViewLayoutComponent, typeof ToggleButtonComponent, typeof ToggleButtonsListComponent, typeof ContentTileComponent, typeof ContentTileItemComponent, typeof ContentTileHeaderComponent, typeof StatsGridComponent, typeof ProgressBarComponent], [typeof i2.RouterModule, typeof AddressPipe, typeof AdvancedSearchComponent, typeof AuthCallbackComponent, typeof AuthRenewComponent, typeof AvatarInitialsComponent, typeof BreadcrumbComponent, typeof ClickOutsideDirective, typeof CollapsiblePanelComponent, typeof ComboboxComponent, typeof EnhancedComboboxComponent, typeof DatepickerComponent, typeof DropDownMenuComponent, typeof DurationFormatPipe, typeof ShortNumberPipe, typeof ErrorComponent, typeof FormLayoutComponent, typeof KpiTileComponent, typeof LibStepComponent, typeof LibStepInfoDirective, typeof LibStepLabelDirective, typeof LibStepperComponent, typeof LibTabComponent, typeof LibTabGroupComponent, typeof LibTabLabelDirective, typeof ListColumnComponent, typeof ListDetailsSectionComponent, typeof ListTileComponent, typeof ListViewComponent, typeof ListViewEmptyStateComponent, typeof LoggedOutComponent, typeof ModelViewLayoutComponent, typeof PageNotFoundComponent, typeof PagerComponent, typeof ShellFooterComponent, typeof ShellHeaderComponent, typeof ShellLayoutComponent, typeof SidePaneComponent, typeof SideViewLayoutComponent, typeof SkeletonLoaderComponent, typeof ToasterComponent, typeof ToasterContainerComponent, typeof ToggleComponent, typeof UnauthorizedComponent, typeof ViewLayoutComponent, typeof ToggleButtonComponent, typeof ToggleButtonsListComponent, typeof ContentTileComponent, typeof ContentTileItemComponent, typeof ContentTileHeaderComponent, typeof StatsGridComponent, typeof ProgressBarComponent]>;
|
|
1955
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<IndiceComponentsModule>;
|
|
1956
|
+
}
|
|
1957
|
+
|
|
1958
|
+
export { APP_LANGUAGES, APP_LINKS, APP_NOTIFICATIONS, AddressPipe, AdvancedSearchComponent, AuthCallbackComponent, AuthRenewComponent, AvatarInitialsComponent, BREADCRUMB_LABEL_RESOLVER, BaseListComponent, BreadcrumbComponent, BreadcrumbItem, BreadcrumbRouteData, BreadcrumbService, ClickOutsideDirective, CollapsiblePanelComponent, ComboboxComponent, ComponentLoaderFactory, ContentTileComponent, ContentTileHeaderComponent, ContentTileItemComponent, DatepickerComponent, DefaultShellConfig, DropDownMenuComponent, DurationFormatPipe, EnhancedComboboxComponent, ErrorComponent, ExternalNavLink, FilterClause, FormLayoutComponent, FragmentNavLink, HeaderMetaItem, Icons, IndiceComponentsModule, KpiTileComponent, LIBSTEPPER_ACCESSOR, LIBTABGROUP_ACCESSOR, LibStepComponent, LibStepInfoDirective, LibStepLabelDirective, LibStepperComponent, LibTabComponent, LibTabGroupComponent, LibTabLabelDirective, ListColumnComponent, ListDetailsSectionComponent, ListTileComponent, ListViewComponent, ListViewEmptyStateComponent, ListViewType, LoggedOutComponent, MODAL_CONFIG_DEFAULT_OVERRIDE, MenuOption, Modal, ModalOptions, ModalService, ModelViewLayoutComponent, NULL_TOAST, NavLink, NavLinkSeparator, NavLinksListComponent, NotificationNavLink, OperatorOptions, Operators, PageNotFoundComponent, PagerComponent, PagerPosition, ProgressBarComponent, QueryParameters, RouterViewAction, SCREEN_SIZE, SHELL_CONFIG, ShellFooterComponent, ShellHeaderComponent, ShellLayoutComponent, ShellLayoutType, ShellSidebarComponent, ShellSidebarHeaderComponent, ShortNumberPipe, SidePaneComponent, SidePaneOverlayType, SidePaneSize, SideViewLayoutComponent, SkeletonLoaderComponent, StatsGridComponent, StepSelectedEvent, StepState, StepperType, SwitchViewAction, ToastType, ToasterComponent, ToasterContainerComponent, ToasterService, ToggleButtonComponent, ToggleButtonsListComponent, ToggleComponent, UnauthorizedComponent, UserSettingsService, ViewAction, ViewLayoutComponent, provideIndiceComponents };
|
|
1959
|
+
export type { BreadcrumbContext, CloseInterceptorFn, IAddress, IAppLanguagesService, IAppLinks, IAppNotifications, IBreadcrumbLabelProcessor, IDictionary, ILibStepperAccessor, ILibTabGroupAccessor, IResultSet, IScreenSize, IShellConfig, IValidationProblemDetails, SearchOption, SelectInputOption, Toast, UserSettingKey };
|