@wolkabout/commons 0.0.4 → 0.0.6
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/README.md +10 -56
- package/fesm2022/wolkabout-commons.mjs +6890 -13
- package/fesm2022/wolkabout-commons.mjs.map +1 -1
- package/index.d.ts +1515 -8
- package/package.json +19 -3
- package/fesm2022/commons.mjs +0 -23
- package/fesm2022/commons.mjs.map +0 -1
package/index.d.ts
CHANGED
|
@@ -1,12 +1,1519 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
1
|
+
import { RouterLink, RouterOutlet, RouterLinkActive, Routes, CanActivateFn, QueryParamsHandling, Router, ActivatedRoute } from '@angular/router';
|
|
2
|
+
import { MatButtonModule } from '@angular/material/button';
|
|
3
|
+
import * as rxjs from 'rxjs';
|
|
4
|
+
import { Observable, BehaviorSubject, Subject } from 'rxjs';
|
|
5
|
+
import * as _angular_core from '@angular/core';
|
|
6
|
+
import { InjectionToken, ElementRef, OnDestroy, TemplateRef, ViewContainerRef, Renderer2, AfterViewInit, AfterViewChecked, OnChanges, PipeTransform, OnInit, DestroyRef, Signal, WritableSignal } from '@angular/core';
|
|
7
|
+
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
8
|
+
import { TranslateService, MissingTranslationHandler, MissingTranslationHandlerParams } from '@ngx-translate/core';
|
|
9
|
+
import { DateAdapter, ErrorStateMatcher } from '@angular/material/core';
|
|
10
|
+
import * as ngx_echarts from 'ngx-echarts';
|
|
11
|
+
import { ThemeOption } from 'ngx-echarts';
|
|
12
|
+
import { ControlValueAccessor, AbstractControl, ValidationErrors, NgControl, FormControl, FormGroupDirective, NgForm, Validator, FormGroup, ValidatorFn } from '@angular/forms';
|
|
13
|
+
import { Overlay } from '@angular/cdk/overlay';
|
|
14
|
+
import { MatAutocompleteTrigger, MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
15
|
+
import { EChartsOption } from 'echarts';
|
|
16
|
+
import { MatDialogRef, MatDialog } from '@angular/material/dialog';
|
|
17
|
+
import { MatDateRangePicker } from '@angular/material/datepicker';
|
|
18
|
+
import { MatSelectChange } from '@angular/material/select';
|
|
19
|
+
import { DateTime } from 'luxon';
|
|
20
|
+
import { GoogleMap } from '@angular/google-maps';
|
|
21
|
+
import { MarkerClusterer } from '@googlemaps/markerclusterer';
|
|
22
|
+
import * as _angular_platform_browser from '@angular/platform-browser';
|
|
23
|
+
import { DomSanitizer, SafeUrl, SafeHtml, SafeResourceUrl } from '@angular/platform-browser';
|
|
3
24
|
|
|
4
|
-
declare
|
|
5
|
-
|
|
6
|
-
|
|
25
|
+
declare const angularComponents: (typeof MatButtonModule)[];
|
|
26
|
+
declare const shared: (typeof MatButtonModule | typeof RouterLink | typeof RouterOutlet | typeof RouterLinkActive)[];
|
|
27
|
+
|
|
28
|
+
interface SvgIcon {
|
|
29
|
+
id: string;
|
|
30
|
+
}
|
|
31
|
+
interface LoadedIcon {
|
|
32
|
+
data: Observable<Blob | null>;
|
|
33
|
+
defaultIcon: SvgIcon | string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
interface Tab {
|
|
37
|
+
name: string;
|
|
38
|
+
route: string;
|
|
39
|
+
icon?: string;
|
|
40
|
+
condition?: Observable<boolean>;
|
|
41
|
+
tooltip?: string;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
interface User {
|
|
45
|
+
id: number;
|
|
46
|
+
firstName: string | null;
|
|
47
|
+
lastName: string | null;
|
|
48
|
+
email: string;
|
|
49
|
+
}
|
|
50
|
+
interface Authority {
|
|
51
|
+
contextId: number;
|
|
52
|
+
contextName: string;
|
|
53
|
+
mainContext: boolean;
|
|
54
|
+
active: boolean;
|
|
55
|
+
accessToken: string;
|
|
56
|
+
roleNames: string[];
|
|
57
|
+
permissions: string[];
|
|
58
|
+
}
|
|
59
|
+
interface Authentication {
|
|
60
|
+
user: User;
|
|
61
|
+
authorities: Authority[];
|
|
62
|
+
refreshToken: string;
|
|
63
|
+
}
|
|
64
|
+
declare function isContextAccessible(authority: Authority, isMainContext: boolean): boolean;
|
|
65
|
+
|
|
66
|
+
interface ImportError {
|
|
67
|
+
key: string;
|
|
68
|
+
value: string[];
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
declare enum DataType {
|
|
72
|
+
STRING = "STRING",
|
|
73
|
+
NUMERIC = "NUMERIC",
|
|
74
|
+
BOOLEAN = "BOOLEAN",
|
|
75
|
+
LOCATION = "LOCATION",
|
|
76
|
+
HEXADECIMAL = "HEXADECIMAL",
|
|
77
|
+
ENUM = "ENUM",
|
|
78
|
+
VECTOR = "VECTOR",
|
|
79
|
+
DATE = "DATE",
|
|
80
|
+
DURATION = "DURATION",
|
|
81
|
+
COLOR = "COLOR",
|
|
82
|
+
LINK = "LINK"
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
declare enum Permission {
|
|
86
|
+
ACCESS_MODULE_PLATFORM_MANAGEMENT_FEATURE_APPLICATION = "ACCESS.MODULE_PLATFORM_MANAGEMENT.FEATURE_APPLICATION",
|
|
87
|
+
ACCESS_MODULE_PLATFORM_MANAGEMENT_FEATURE_PLATFORM_CONFIGURATION = "ACCESS.MODULE_PLATFORM_MANAGEMENT.FEATURE_PLATFORM_CONFIGURATION",
|
|
88
|
+
ACCESS_MODULE_PLATFORM_MANAGEMENT_FEATURE_TENANT_MANAGEMENT = "ACCESS.MODULE_PLATFORM_MANAGEMENT.FEATURE_TENANT_MANAGEMENT",
|
|
89
|
+
ACCESS_MODULE_USER_MANAGEMENT_FEATURE_APPLICATION = "ACCESS.MODULE_USER_MANAGEMENT.FEATURE_APPLICATION",
|
|
90
|
+
ACCESS_MODULE_USER_MANAGEMENT_FEATURE_USER_MANAGEMENT = "ACCESS.MODULE_USER_MANAGEMENT.FEATURE_USER_MANAGEMENT",
|
|
91
|
+
ACCESS_MODULE_USER_MANAGEMENT_FEATURE_USER_GROUPS_MANAGEMENT = "ACCESS.MODULE_USER_MANAGEMENT.FEATURE_USER_GROUPS_MANAGEMENT",
|
|
92
|
+
ACCESS_MODULE_USER_MANAGEMENT_FEATURE_GLOBAL_ROLES_MANAGEMENT = "ACCESS.MODULE_USER_MANAGEMENT.FEATURE_GLOBAL_ROLES_MANAGEMENT",
|
|
93
|
+
ACCESS_MODULE_USER_MANAGEMENT_FEATURE_INVENTORY_ROLES_MANAGEMENT = "ACCESS.MODULE_USER_MANAGEMENT.FEATURE_INVENTORY_ROLES_MANAGEMENT",
|
|
94
|
+
ACCESS_MODULE_TENANT_MANAGEMENT_FEATURE_APPLICATION = "ACCESS.MODULE_TENANT_MANAGEMENT.FEATURE_APPLICATION",
|
|
95
|
+
ACCESS_MODULE_TENANT_MANAGEMENT_FEATURE_READING_TYPES_MANAGEMENT = "ACCESS.MODULE_TENANT_MANAGEMENT.FEATURE_READING_TYPES_MANAGEMENT",
|
|
96
|
+
ACCESS_MODULE_TENANT_MANAGEMENT_FEATURE_INTEGRATIONS = "ACCESS.MODULE_TENANT_MANAGEMENT.FEATURE_INTEGRATIONS",
|
|
97
|
+
ACCESS_MODULE_TENANT_MANAGEMENT_FEATURE_ACCESS_KEYS = "ACCESS.MODULE_TENANT_MANAGEMENT.FEATURE_ACCESS_KEYS",
|
|
98
|
+
ACCESS_MODULE_TENANT_MANAGEMENT_FEATURE_AUDIT_LOG = "ACCESS.MODULE_TENANT_MANAGEMENT.FEATURE_AUDIT_LOG",
|
|
99
|
+
ACCESS_MODULE_DEVICES_AND_EDGE_FEATURE_APPLICATION = "ACCESS.MODULE_DEVICES_AND_EDGE.FEATURE_APPLICATION",
|
|
100
|
+
ACCESS_MODULE_DEVICES_AND_EDGE_FEATURE_DEVICES = "ACCESS.MODULE_DEVICES_AND_EDGE.FEATURE_DEVICES",
|
|
101
|
+
ACCESS_MODULE_DEVICES_AND_EDGE_FEATURE_TYPES = "ACCESS.MODULE_DEVICES_AND_EDGE.FEATURE_TYPES",
|
|
102
|
+
ACCESS_MODULE_DEVICES_AND_EDGE_FEATURE_GROUPS = "ACCESS.MODULE_DEVICES_AND_EDGE.FEATURE_GROUPS",
|
|
103
|
+
ACCESS_MODULE_DATA_MANAGEMENT_FEATURE_APPLICATION = "ACCESS.MODULE_DATA_MANAGEMENT.FEATURE_APPLICATION",
|
|
104
|
+
ACCESS_MODULE_DATA_MANAGEMENT_FEATURE_DATA_MANAGEMENT = "ACCESS.MODULE_DATA_MANAGEMENT.FEATURE_DATA_MANAGEMENT",
|
|
105
|
+
ACCESS_MODULE_DATA_MANAGEMENT_FEATURE_TYPES = "ACCESS.MODULE_DATA_MANAGEMENT.FEATURE_TYPES",
|
|
106
|
+
ACCESS_MODULE_RULE_ENGINE_FEATURE_APPLICATION = "ACCESS.MODULE_RULE_ENGINE.FEATURE_APPLICATION",
|
|
107
|
+
ACCESS_MODULE_DASHBOARDS_FEATURE_APPLICATION = "ACCESS.MODULE_DASHBOARDS.FEATURE_APPLICATION",
|
|
108
|
+
ACCESS_MODULE_MESSAGES_FEATURE_APPLICATION = "ACCESS.MODULE_MESSAGES.FEATURE_APPLICATION",
|
|
109
|
+
ACCESS_MODULE_MESSAGES_FEATURE_MESSAGE_TEMPLATES = "ACCESS.MODULE_MESSAGES.FEATURE_MESSAGE_TEMPLATES",
|
|
110
|
+
ACCESS_MODULE_MESSAGES_FEATURE_MESSAGES = "ACCESS.MODULE_MESSAGES.FEATURE_MESSAGES",
|
|
111
|
+
PLATFORM_MANAGEMENT_SETTINGS_VIEW = "PLATFORM_MANAGEMENT.SETTINGS.VIEW",
|
|
112
|
+
PLATFORM_MANAGEMENT_SETTINGS_MANAGE = "PLATFORM_MANAGEMENT.SETTINGS.MANAGE",
|
|
113
|
+
PLATFORM_MANAGEMENT_TENANTS_VIEW = "PLATFORM_MANAGEMENT.TENANTS.VIEW",
|
|
114
|
+
PLATFORM_MANAGEMENT_TENANTS_MANAGE = "PLATFORM_MANAGEMENT.TENANTS.MANAGE",
|
|
115
|
+
USER_MANAGEMENT_USERS_VIEW = "USER_MANAGEMENT.USERS.VIEW",
|
|
116
|
+
USER_MANAGEMENT_USERS_MANAGE = "USER_MANAGEMENT.USERS.MANAGE",
|
|
117
|
+
USER_MANAGEMENT_USER_GROUPS_VIEW = "USER_MANAGEMENT.USER_GROUPS.VIEW",
|
|
118
|
+
USER_MANAGEMENT_USER_GROUPS_MANAGE = "USER_MANAGEMENT.USER_GROUPS.MANAGE",
|
|
119
|
+
USER_MANAGEMENT_GLOBAL_ROLES_MANAGE = "USER_MANAGEMENT.GLOBAL_ROLES.MANAGE",
|
|
120
|
+
USER_MANAGEMENT_INVENTORY_ROLES_MANAGE = "USER_MANAGEMENT.INVENTORY_ROLES.MANAGE",
|
|
121
|
+
TENANT_CONFIGURATION_READING_TYPE_MANAGEMENT_MANAGE = "TENANT_CONFIGURATION.READING_TYPE_MANAGEMENT.MANAGE",
|
|
122
|
+
TENANT_CONFIGURATION_INTEGRATIONS_VIEW = "TENANT_CONFIGURATION.INTEGRATIONS.VIEW",
|
|
123
|
+
TENANT_CONFIGURATION_INTEGRATIONS_MANAGE = "TENANT_CONFIGURATION.INTEGRATIONS.MANAGE",
|
|
124
|
+
TENANT_CONFIGURATION_ACCESS_KEYS_VIEW = "TENANT_CONFIGURATION.ACCESS_KEYS.VIEW",
|
|
125
|
+
TENANT_CONFIGURATION_ACCESS_KEYS_MANAGE = "TENANT_CONFIGURATION.ACCESS_KEYS.MANAGE",
|
|
126
|
+
TENANT_CONFIGURATION_SETTINGS_MANAGE = "TENANT_CONFIGURATION.SETTINGS.MANAGE",
|
|
127
|
+
DEVICE_MANAGEMENT_DEVICE_GROUPS_VIEW = "DEVICE_MANAGEMENT.DEVICE_GROUPS.VIEW",
|
|
128
|
+
DEVICE_MANAGEMENT_DEVICE_GROUPS_MANAGE = "DEVICE_MANAGEMENT.DEVICE_GROUPS.MANAGE",
|
|
129
|
+
DEVICE_MANAGEMENT_DEVICE_GROUPS_ACCESS_VIEW = "DEVICE_MANAGEMENT.DEVICE_GROUPS.ACCESS_VIEW",
|
|
130
|
+
DEVICE_MANAGEMENT_DEVICE_GROUPS_ACCESS_MANAGE = "DEVICE_MANAGEMENT.DEVICE_GROUPS.ACCESS_MANAGE",
|
|
131
|
+
DATA_MANAGEMENT_DATA_VIEW = "DATA_MANAGEMENT.DATA.VIEW",
|
|
132
|
+
DATA_MANAGEMENT_DATA_MANAGE = "DATA_MANAGEMENT.DATA.MANAGE",
|
|
133
|
+
DATA_MANAGEMENT_DATA_ACCESS_VIEW = "DATA_MANAGEMENT.DATA.ACCESS_VIEW",
|
|
134
|
+
DATA_MANAGEMENT_DATA_ACCESS_MANAGE = "DATA_MANAGEMENT.DATA.ACCESS_MANAGE",
|
|
135
|
+
DATA_MANAGEMENT_DATA_DASHBOARDS_VIEW = "DATA_MANAGEMENT.DATA.DASHBOARDS_VIEW",
|
|
136
|
+
DATA_MANAGEMENT_DATA_DASHBOARDS_MANAGE = "DATA_MANAGEMENT.DATA.DASHBOARDS_MANAGE",
|
|
137
|
+
DATA_MANAGEMENT_SEMANTIC_TYPES_VIEW = "DATA_MANAGEMENT.SEMANTIC_TYPES.VIEW",
|
|
138
|
+
DATA_MANAGEMENT_SEMANTIC_TYPES_MANAGE = "DATA_MANAGEMENT.SEMANTIC_TYPES.MANAGE",
|
|
139
|
+
DATA_MANAGEMENT_SEMANTIC_TYPES_ACCESS_VIEW = "DATA_MANAGEMENT.SEMANTIC_TYPES.ACCESS_VIEW",
|
|
140
|
+
DATA_MANAGEMENT_SEMANTIC_TYPES_ACCESS_MANAGE = "DATA_MANAGEMENT.SEMANTIC_TYPES.ACCESS_MANAGE",
|
|
141
|
+
RULE_ENGINE_RULE_VIEW = "RULE_ENGINE.RULE.VIEW",
|
|
142
|
+
RULE_ENGINE_RULE_MANAGE = "RULE_ENGINE.RULE.MANAGE",
|
|
143
|
+
MESSAGES_TEMPLATES_VIEW = "MESSAGES.TEMPLATES.VIEW",
|
|
144
|
+
MESSAGES_TEMPLATES_MANAGE = "MESSAGES.TEMPLATES.MANAGE"
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
declare const createGlobalPermissionsGuard: (availableRoutesGetter: () => Routes, fallbackRoute: string[], parentRoutes?: string[]) => (permissions: Permission | Permission[]) => CanActivateFn;
|
|
148
|
+
|
|
149
|
+
declare const AUTHENTICATION_CLIENT: InjectionToken<AuthenticationClient>;
|
|
150
|
+
interface AuthenticationClient {
|
|
151
|
+
refreshToken(token: string): Observable<Authentication>;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
declare class AuthenticationService {
|
|
155
|
+
private readonly authenticationClient;
|
|
156
|
+
private readonly LSK_REFRESH_TOKEN;
|
|
157
|
+
private readonly LSK_ACTIVE_TENANT;
|
|
158
|
+
private _activeUser$;
|
|
159
|
+
private _authorities$;
|
|
160
|
+
private _selectedAuthority$;
|
|
161
|
+
private refreshToken;
|
|
162
|
+
private _authenticationTokens;
|
|
163
|
+
constructor();
|
|
164
|
+
setAuthentication(authentication: Authentication): void;
|
|
165
|
+
updateUserName(firstName: string, lastName: string): void;
|
|
166
|
+
private initiateAuthenticatedState;
|
|
167
|
+
selectAuthority(authority: Authority): void;
|
|
168
|
+
logout(): void;
|
|
169
|
+
get accessToken(): Observable<string>;
|
|
170
|
+
get activeUser$(): Observable<User>;
|
|
171
|
+
get activeUser(): User | null;
|
|
172
|
+
get authorities$(): Observable<Authority[]>;
|
|
173
|
+
get activeAuthority(): Authority | null;
|
|
174
|
+
get activeAuthority$(): Observable<Authority>;
|
|
175
|
+
get unfilteredActiveAuthority$(): Observable<Authority | null>;
|
|
176
|
+
isAuthenticated(): Observable<boolean>;
|
|
177
|
+
private isValid;
|
|
178
|
+
getClaim(token: string, claim: string): any;
|
|
179
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AuthenticationService, never>;
|
|
180
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AuthenticationService>;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
interface Feature {
|
|
184
|
+
name: string;
|
|
185
|
+
icon: SvgIcon;
|
|
186
|
+
order: number;
|
|
187
|
+
route: string;
|
|
188
|
+
translationPrefix: string;
|
|
189
|
+
permission?: string | string[];
|
|
190
|
+
primaryColor?: string;
|
|
191
|
+
secondaryColor?: string;
|
|
192
|
+
tertiaryColor?: string;
|
|
193
|
+
init?: () => void;
|
|
194
|
+
}
|
|
195
|
+
interface ExternalFeature {
|
|
196
|
+
remote: string;
|
|
197
|
+
exposedModule: string;
|
|
198
|
+
}
|
|
199
|
+
declare class FeatureRegistry {
|
|
200
|
+
private readonly injector;
|
|
201
|
+
private readonly _features;
|
|
202
|
+
registerFeature(feature: Feature): void;
|
|
203
|
+
loadExternalFeatures(features: ExternalFeature[]): void;
|
|
204
|
+
get features(): Observable<Feature[]>;
|
|
205
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FeatureRegistry, never>;
|
|
206
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<FeatureRegistry>;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
declare class MapsLoaderService {
|
|
210
|
+
private readonly scriptSrc;
|
|
211
|
+
private readonly elementId;
|
|
212
|
+
readonly apiKey$: BehaviorSubject<string | null>;
|
|
213
|
+
readonly mapsLoaded$: BehaviorSubject<boolean>;
|
|
214
|
+
readonly mapError$: BehaviorSubject<string>;
|
|
215
|
+
constructor();
|
|
216
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MapsLoaderService, never>;
|
|
217
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<MapsLoaderService>;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
declare class NotificationService {
|
|
221
|
+
private snackBar;
|
|
222
|
+
private translationService;
|
|
223
|
+
constructor(snackBar: MatSnackBar, translationService: TranslateService);
|
|
224
|
+
showInfo(message: string, duration?: number): void;
|
|
225
|
+
showSuccess(message: string, duration?: number): void;
|
|
226
|
+
showWarning(message: string, duration?: number): void;
|
|
227
|
+
showError(message: string, messageParameters?: any, duration?: number): rxjs.Observable<null>;
|
|
228
|
+
showGenericError(error?: any, duration?: number): rxjs.Observable<null>;
|
|
229
|
+
private showNotification;
|
|
230
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NotificationService, never>;
|
|
231
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<NotificationService>;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
declare class PermissionsService {
|
|
235
|
+
readonly auth: AuthenticationService;
|
|
236
|
+
private _assetPermissions$;
|
|
237
|
+
private _globalPermissions$;
|
|
238
|
+
private _permissions$;
|
|
239
|
+
setAssetPermissions(permissions: string[] | null): void;
|
|
240
|
+
hasAnyPermission(permissions: string[]): Observable<boolean>;
|
|
241
|
+
hasAllPermissions(permissions: string[]): Observable<boolean>;
|
|
242
|
+
hasAnyGlobalOrAssetPermission(permissions: string[]): Observable<boolean>;
|
|
243
|
+
hasAllGlobalOrAssetPermissions(permissions: string[]): Observable<boolean>;
|
|
244
|
+
hasAnyPermissionSync(allPermissions: string[], permissions: string[]): boolean;
|
|
245
|
+
hasPermission(allPermissions: string[], permission?: string): boolean;
|
|
246
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PermissionsService, never>;
|
|
247
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<PermissionsService>;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
declare class Locale {
|
|
251
|
+
name: string;
|
|
252
|
+
language: string;
|
|
253
|
+
country: string;
|
|
254
|
+
code: string;
|
|
255
|
+
countryLocaleCode: string;
|
|
256
|
+
constructor(language: string, country: string, name: string);
|
|
257
|
+
}
|
|
258
|
+
declare const DEFAULT_LOCALE: Locale;
|
|
259
|
+
declare const LOCALES: Locale[];
|
|
260
|
+
|
|
261
|
+
declare class TenantPropertiesService {
|
|
262
|
+
readonly dateAdapter: DateAdapter<any, any>;
|
|
263
|
+
locale: Locale;
|
|
264
|
+
timezone: string | null;
|
|
265
|
+
setLocale(locale: Locale): void;
|
|
266
|
+
setTimeZone(timeZone: string): void;
|
|
267
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TenantPropertiesService, never>;
|
|
268
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<TenantPropertiesService>;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
interface Color {
|
|
272
|
+
name: string;
|
|
273
|
+
value: string;
|
|
274
|
+
}
|
|
275
|
+
interface Theme {
|
|
276
|
+
primary: string;
|
|
277
|
+
secondary: string;
|
|
278
|
+
tertiary: string;
|
|
279
|
+
error: string;
|
|
280
|
+
neutral: string;
|
|
281
|
+
neutralVariant: string;
|
|
282
|
+
warning: string;
|
|
283
|
+
success: string;
|
|
284
|
+
}
|
|
285
|
+
declare class ThemeService {
|
|
286
|
+
private readonly document;
|
|
287
|
+
private readonly THEME_KEY;
|
|
288
|
+
private readonly DEFAULT_COLORS;
|
|
289
|
+
private readonly themeType$;
|
|
290
|
+
readonly isDarkTheme$: rxjs.Observable<boolean>;
|
|
291
|
+
readonly chartTheme$: rxjs.Observable<ngx_echarts.ThemeOption>;
|
|
292
|
+
private readonly themeColors$;
|
|
293
|
+
constructor(document: Document);
|
|
294
|
+
get defaultColors(): Theme;
|
|
295
|
+
setThemeType(theme: 'SYSTEM' | 'LIGHT' | 'DARK'): void;
|
|
296
|
+
setThemeColors(primaryColor?: string, secondaryColor?: string, tertiaryColor?: string): void;
|
|
297
|
+
get themeType(): "SYSTEM" | "LIGHT" | "DARK";
|
|
298
|
+
get themeColors(): Theme;
|
|
299
|
+
computeColorFromHex(hex: string, tone: number): string;
|
|
300
|
+
private updateThemeVariables;
|
|
301
|
+
private updateColorVariables;
|
|
302
|
+
private computeColorPalette;
|
|
303
|
+
private getColorObject;
|
|
304
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ThemeService, never>;
|
|
305
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ThemeService>;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
declare class LoadingIndicatorDirective {
|
|
309
|
+
private element;
|
|
310
|
+
set appLoadingShimmer(isLoading: boolean | unknown);
|
|
311
|
+
constructor(element: ElementRef<HTMLElement>);
|
|
312
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LoadingIndicatorDirective, never>;
|
|
313
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<LoadingIndicatorDirective, "[appLoadingIndicator]", never, { "appLoadingShimmer": { "alias": "appLoadingIndicator"; "required": false; }; }, {}, never, never, true, never>;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
declare class LocalizedNumericInputDirective implements ControlValueAccessor {
|
|
317
|
+
private element;
|
|
318
|
+
private tenantPropertiesService;
|
|
319
|
+
locale: string;
|
|
320
|
+
decimalMarker: string;
|
|
321
|
+
thousandSeparator: string;
|
|
322
|
+
onChange: (value: any) => void;
|
|
323
|
+
onTouched: (ev: any) => void;
|
|
324
|
+
constructor(element: ElementRef<HTMLInputElement>, tenantPropertiesService: TenantPropertiesService);
|
|
325
|
+
input(value: any): void;
|
|
326
|
+
onFocus(): void;
|
|
327
|
+
writeValue(value: string): void;
|
|
328
|
+
registerOnChange(fn: (value: any) => void): void;
|
|
329
|
+
registerOnTouched(fn: () => void): void;
|
|
330
|
+
private printValue;
|
|
331
|
+
private parseValue;
|
|
332
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LocalizedNumericInputDirective, never>;
|
|
333
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<LocalizedNumericInputDirective, "input[wolkaboutLocalizedNumericInput]", never, {}, {}, never, never, true, never>;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
declare class MessageTooltipDirective implements OnDestroy {
|
|
337
|
+
private overlay;
|
|
338
|
+
private elementRef;
|
|
339
|
+
private viewContainerRef;
|
|
340
|
+
private renderer;
|
|
341
|
+
tooltipTemplate: TemplateRef<any>;
|
|
342
|
+
private overlayRef;
|
|
343
|
+
private showTimeout;
|
|
344
|
+
constructor(overlay: Overlay, elementRef: ElementRef, viewContainerRef: ViewContainerRef, renderer: Renderer2);
|
|
345
|
+
show(): void;
|
|
346
|
+
hide(): void;
|
|
347
|
+
ngOnDestroy(): void;
|
|
348
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MessageTooltipDirective, never>;
|
|
349
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MessageTooltipDirective, "[appMessageTooltip]", never, { "tooltipTemplate": { "alias": "appMessageTooltip"; "required": false; }; }, {}, never, never, true, never>;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
declare class NgTemplateContentDirective {
|
|
353
|
+
template: TemplateRef<any>;
|
|
354
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NgTemplateContentDirective, never>;
|
|
355
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<NgTemplateContentDirective, "[appNgTemplateContent]", never, {}, {}, never, never, true, never>;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
declare class OverflowClassDirective implements AfterViewInit, AfterViewChecked {
|
|
359
|
+
private el;
|
|
360
|
+
overflowClass: string | null;
|
|
361
|
+
constructor(el: ElementRef);
|
|
362
|
+
ngAfterViewInit(): void;
|
|
363
|
+
ngAfterViewChecked(): void;
|
|
364
|
+
private checkScroll;
|
|
365
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverflowClassDirective, never>;
|
|
366
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<OverflowClassDirective, "[overflowClass]", never, { "overflowClass": { "alias": "overflowClass"; "required": false; }; }, {}, never, never, true, never>;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
declare class RequiresAllGlobalOrAssetPermissionsDirective {
|
|
370
|
+
private templateRef;
|
|
371
|
+
private viewContainer;
|
|
372
|
+
private permissions;
|
|
373
|
+
set appRequiresAllGlobalOrAssetPermissions(permissions: string | string[]);
|
|
374
|
+
constructor(templateRef: TemplateRef<unknown>, viewContainer: ViewContainerRef, permissions: PermissionsService);
|
|
375
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RequiresAllGlobalOrAssetPermissionsDirective, never>;
|
|
376
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<RequiresAllGlobalOrAssetPermissionsDirective, "[appRequiresAllGlobalOrAssetPermissions]", never, { "appRequiresAllGlobalOrAssetPermissions": { "alias": "appRequiresAllGlobalOrAssetPermissions"; "required": false; }; }, {}, never, never, true, never>;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
declare class RequiresAllPermissionDirective {
|
|
380
|
+
private templateRef;
|
|
381
|
+
private viewContainer;
|
|
382
|
+
private permissions;
|
|
383
|
+
set appRequiresAllPermissions(permissions: string | string[]);
|
|
384
|
+
constructor(templateRef: TemplateRef<unknown>, viewContainer: ViewContainerRef, permissions: PermissionsService);
|
|
385
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RequiresAllPermissionDirective, never>;
|
|
386
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<RequiresAllPermissionDirective, "[appRequiresAllPermissions]", never, { "appRequiresAllPermissions": { "alias": "appRequiresAllPermissions"; "required": false; }; }, {}, never, never, true, never>;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
declare class RequiresGlobalOrAsserPermissionDirective {
|
|
390
|
+
private templateRef;
|
|
391
|
+
private viewContainer;
|
|
392
|
+
private permissions;
|
|
393
|
+
set appRequiresGlobalOrAssetPermission(permissions: string | string[]);
|
|
394
|
+
constructor(templateRef: TemplateRef<unknown>, viewContainer: ViewContainerRef, permissions: PermissionsService);
|
|
395
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RequiresGlobalOrAsserPermissionDirective, never>;
|
|
396
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<RequiresGlobalOrAsserPermissionDirective, "[appRequiresGlobalOrAssetPermission]", never, { "appRequiresGlobalOrAssetPermission": { "alias": "appRequiresGlobalOrAssetPermission"; "required": false; }; }, {}, never, never, true, never>;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
declare class RequiresPermissionDirective {
|
|
400
|
+
private templateRef;
|
|
401
|
+
private viewContainer;
|
|
402
|
+
private permissions;
|
|
403
|
+
set appRequiresPermission(permissions: string | string[]);
|
|
404
|
+
constructor(templateRef: TemplateRef<unknown>, viewContainer: ViewContainerRef, permissions: PermissionsService);
|
|
405
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RequiresPermissionDirective, never>;
|
|
406
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<RequiresPermissionDirective, "[appRequiresPermission]", never, { "appRequiresPermission": { "alias": "appRequiresPermission"; "required": false; }; }, {}, never, never, true, never>;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
declare class ScrollIntoViewDirective implements OnChanges {
|
|
410
|
+
private platformId;
|
|
411
|
+
private elementRef;
|
|
412
|
+
appScrollIntoView: boolean | undefined;
|
|
413
|
+
constructor(platformId: any, elementRef: ElementRef);
|
|
414
|
+
ngOnChanges(): void;
|
|
415
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScrollIntoViewDirective, never>;
|
|
416
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ScrollIntoViewDirective, "[appScrollIntoView]", never, { "appScrollIntoView": { "alias": "appScrollIntoView"; "required": false; }; }, {}, never, never, true, never>;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
declare const formatDuration: (totalSeconds: number | undefined) => string;
|
|
420
|
+
declare class DurationPipe implements PipeTransform {
|
|
421
|
+
/**
|
|
422
|
+
* Transforms the given value to "X days, Y hours, Z minutes" format
|
|
423
|
+
*/
|
|
424
|
+
transform(totalSeconds?: number): string;
|
|
425
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DurationPipe, never>;
|
|
426
|
+
static ɵpipe: _angular_core.ɵɵPipeDeclaration<DurationPipe, "duration", true>;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
declare class LocalizedNumberPipe implements PipeTransform {
|
|
430
|
+
private tenantPropertiesService;
|
|
431
|
+
constructor(tenantPropertiesService: TenantPropertiesService);
|
|
432
|
+
transform(value: number | string | null | undefined, decimals?: number, locale?: string): string;
|
|
433
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LocalizedNumberPipe, never>;
|
|
434
|
+
static ɵpipe: _angular_core.ɵɵPipeDeclaration<LocalizedNumberPipe, "localizedNumber", true>;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
declare class SimpleDateTimePipe implements PipeTransform {
|
|
438
|
+
private tenantPropertiesService;
|
|
439
|
+
constructor(tenantPropertiesService: TenantPropertiesService);
|
|
440
|
+
transform(timestamp?: number | null, timeZone?: string | null, showTimeZone?: boolean, locale?: string | null): string;
|
|
441
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SimpleDateTimePipe, never>;
|
|
442
|
+
static ɵpipe: _angular_core.ɵɵPipeDeclaration<SimpleDateTimePipe, "simpleDateTime", true>;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
declare class SimpleDatePipe implements PipeTransform {
|
|
446
|
+
private tenantPropertiesService;
|
|
447
|
+
constructor(tenantPropertiesService: TenantPropertiesService);
|
|
448
|
+
transform(timestamp?: number | null, timeZone?: string | null, showTimeZone?: boolean, locale?: string | null): string;
|
|
449
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SimpleDatePipe, never>;
|
|
450
|
+
static ɵpipe: _angular_core.ɵɵPipeDeclaration<SimpleDatePipe, "simpleDate", true>;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
declare class SimpleTimePipe implements PipeTransform {
|
|
454
|
+
private tenantPropertiesService;
|
|
455
|
+
constructor(tenantPropertiesService: TenantPropertiesService);
|
|
456
|
+
transform(timestamp?: number | null, timeZone?: string | null, showTimeZone?: boolean, locale?: string | null): string;
|
|
457
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SimpleTimePipe, never>;
|
|
458
|
+
static ɵpipe: _angular_core.ɵɵPipeDeclaration<SimpleTimePipe, "simpleTime", true>;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
type SortDirection$1 = 'asc' | 'desc';
|
|
462
|
+
declare class SortPipe implements PipeTransform {
|
|
463
|
+
transform(array: any, field?: string, direction?: SortDirection$1): any[];
|
|
464
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SortPipe, never>;
|
|
465
|
+
static ɵpipe: _angular_core.ɵɵPipeDeclaration<SortPipe, "sort", true>;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
declare const chartThemeDark: ThemeOption;
|
|
469
|
+
|
|
470
|
+
declare const COLORS: string[];
|
|
471
|
+
declare const chartThemeLight: ThemeOption;
|
|
472
|
+
|
|
473
|
+
declare const MILLISECONDS_IN_DAY = 86400000;
|
|
474
|
+
declare const USERS_TIME_ZONE: string;
|
|
475
|
+
declare const DEFAULT_TIME_ZONE: string;
|
|
476
|
+
declare const startOfTheDay: (dayOffSet?: number, timeZone?: string | null) => number;
|
|
477
|
+
declare const daysAway: (dayOffSet?: number, timeZone?: string | null) => number;
|
|
478
|
+
declare const hoursAway: (hourOffset?: number, timeZone?: string | null) => number;
|
|
479
|
+
declare const toStartOfTheDay: (millis: number, timeZone?: string | null) => number;
|
|
480
|
+
declare function startOfWeek(weekOffset?: number, timeZone?: string | null): number;
|
|
481
|
+
declare function toStartOfWeek(millis: number, timeZone?: string | null): number;
|
|
482
|
+
declare function startOfMonth(monthOffset?: number, timeZone?: string | null): number;
|
|
483
|
+
declare function toStartOfMonth(millis: number, timeZone?: string | null): number;
|
|
484
|
+
declare function toEndOfMonth(millis: number, timeZone?: string | null): number;
|
|
485
|
+
declare function startOfYear(yearOffset?: number, timeZone?: string | null): number;
|
|
486
|
+
declare function toStartOfYear(millis: number, timeZone?: string | null): number;
|
|
487
|
+
declare function toEndOfYear(millis: number, timeZone?: string | null): number;
|
|
488
|
+
declare const toJsDate: (millis: number, timeZone?: string | null) => Date;
|
|
489
|
+
declare const toTime: (millis: number, timeZone?: string | null) => {
|
|
490
|
+
hour: number;
|
|
491
|
+
minute: number;
|
|
492
|
+
offset: string;
|
|
493
|
+
};
|
|
494
|
+
declare const toOffset: (timeZone?: string | null) => string;
|
|
495
|
+
declare const toDate: (millis: number, timeZone?: string | null) => {
|
|
496
|
+
day: number;
|
|
497
|
+
month: number;
|
|
498
|
+
year: number;
|
|
499
|
+
offset: string;
|
|
500
|
+
};
|
|
501
|
+
declare function parseTimeInput(date: Date, timeInput: string, timezone?: string): number;
|
|
502
|
+
declare function format(millis: number, locale: string, format?: string): string;
|
|
503
|
+
declare enum RelativeTimePeriod {
|
|
504
|
+
TODAY = "TODAY",
|
|
505
|
+
YESTERDAY = "YESTERDAY",
|
|
506
|
+
TOMORROW = "TOMORROW",
|
|
507
|
+
LAST_1_HOURS = "LAST_1_HOURS",
|
|
508
|
+
LAST_24_HOURS = "LAST_24_HOURS",
|
|
509
|
+
LAST_7_DAYS = "LAST_7_DAYS",
|
|
510
|
+
NEXT_7_DAYS = "NEXT_7_DAYS",
|
|
511
|
+
THIS_WEEK = "THIS_WEEK",
|
|
512
|
+
LAST_30_DAYS = "LAST_30_DAYS",
|
|
513
|
+
NEXT_30_DAYS = "NEXT_30_DAYS",
|
|
514
|
+
THIS_MONTH = "THIS_MONTH",
|
|
515
|
+
LAST_6_MONTHS = "LAST_6_MONTHS",
|
|
516
|
+
LAST_12_MONTHS = "LAST_12_MONTHS",
|
|
517
|
+
NEXT_12_MONTHS = "NEXT_12_MONTHS",
|
|
518
|
+
THIS_YEAR = "THIS_YEAR"
|
|
519
|
+
}
|
|
520
|
+
declare const RELATIVE_TIME_PERIODS: RelativeTimePeriod[];
|
|
521
|
+
declare const startOfPeriod: (timezone?: string | null) => {
|
|
522
|
+
[key in RelativeTimePeriod]: number;
|
|
523
|
+
};
|
|
524
|
+
declare const endOfPeriod: (timezone?: string | null) => {
|
|
525
|
+
[key in RelativeTimePeriod]: number;
|
|
526
|
+
};
|
|
527
|
+
|
|
528
|
+
declare function saveFile(blob: Blob, fileName: string): void;
|
|
529
|
+
|
|
530
|
+
declare function validateAssetName(control: AbstractControl): ValidationErrors | null;
|
|
531
|
+
declare function fileSizeValidator(control: AbstractControl, maxSizeInBytes: number): ValidationErrors | null;
|
|
532
|
+
declare function validateTypeAssetName(control: AbstractControl): ValidationErrors | null;
|
|
533
|
+
|
|
534
|
+
declare class MissingTranslationHelper implements MissingTranslationHandler {
|
|
535
|
+
handle(params: MissingTranslationHandlerParams): any;
|
|
536
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MissingTranslationHelper, never>;
|
|
537
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<MissingTranslationHelper>;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
declare function determineMinMaxValues(values: number[], paddingPercentage?: number): {
|
|
541
|
+
min: number;
|
|
542
|
+
max: number;
|
|
543
|
+
};
|
|
544
|
+
/**
|
|
545
|
+
* Determines the magnitude of the number.
|
|
546
|
+
*
|
|
547
|
+
* ...
|
|
548
|
+
* 100 - 999 -> 2
|
|
549
|
+
* 10 - 99 -> 1
|
|
550
|
+
* 0 - 9 -> 0
|
|
551
|
+
* 0.1 - 0.9999999999... -> -1
|
|
552
|
+
* 0.01 - 0.0999999... -> -2
|
|
553
|
+
* ...
|
|
554
|
+
*/
|
|
555
|
+
declare const determineMagnitude: (value: number) => number;
|
|
556
|
+
declare const scale: (value: number, precision: number) => number;
|
|
557
|
+
|
|
558
|
+
declare const equalsByValue: <T>(value1: T, value2: T) => boolean;
|
|
559
|
+
declare const groupBy: <T>(array: T[], groupingFunction: (value: T) => string) => Record<string, T[]>;
|
|
560
|
+
declare const uniqueFrom: <R, T>(array: T[], valueFunction: (value: T) => R) => R[];
|
|
561
|
+
declare const uniqueBy: <R, T>(array: T[], valueFunction: (value: T) => R) => T[];
|
|
562
|
+
declare const flatten: <T>(data: T[], getChildren: (node: T) => T[]) => T[];
|
|
563
|
+
declare const flatMap: <T>(array: T[][]) => T[];
|
|
564
|
+
declare const arrayToObject: <T, R>(array: T[] | null | undefined, propertyFunction: (entry: T) => string, mappingFunction: (entry: T) => R) => Record<string, R>;
|
|
565
|
+
|
|
566
|
+
declare const generateRandomString: (length: number) => string;
|
|
567
|
+
|
|
568
|
+
declare const DEFAULT_TIMEZONES = "Europe/Prague";
|
|
569
|
+
declare const TIMEZONES: string[];
|
|
570
|
+
|
|
571
|
+
/**
|
|
572
|
+
* Looks for the value of the specified queryParameter.
|
|
573
|
+
* Useful for many initialSelection implementations.
|
|
574
|
+
*/
|
|
575
|
+
declare const lookUpQueryParam: (queryParamName: string) => string | null;
|
|
576
|
+
declare const lookUpPathPart: (index: number) => string | null;
|
|
577
|
+
|
|
578
|
+
declare class AutocompleteComponent<ItemType> implements ControlValueAccessor, OnInit, OnDestroy {
|
|
579
|
+
controlDir: NgControl;
|
|
580
|
+
name: string;
|
|
581
|
+
dataFunction: (query: string) => Observable<ItemType[] | null>;
|
|
582
|
+
displayFunction: (item: ItemType) => string;
|
|
583
|
+
outlineBackground: boolean;
|
|
584
|
+
dropdownTemplate?: TemplateRef<unknown>;
|
|
585
|
+
autocompleteTrigger?: MatAutocompleteTrigger;
|
|
586
|
+
protected readonly Object: ObjectConstructor;
|
|
587
|
+
disabled: boolean;
|
|
588
|
+
formControl: FormControl<string | ItemType>;
|
|
589
|
+
data$: Observable<ItemType[] | null>;
|
|
590
|
+
loading$: Observable<boolean>;
|
|
591
|
+
componentIsDestroyed$: Subject<void>;
|
|
592
|
+
constructor(controlDir: NgControl);
|
|
593
|
+
onTouched: (ev: Event) => void;
|
|
594
|
+
ngOnInit(): void;
|
|
595
|
+
registerOnChange(fn: () => void): void;
|
|
596
|
+
registerOnTouched(fn: (ev: Event) => void): void;
|
|
597
|
+
writeValue(value: ItemType): void;
|
|
598
|
+
setDisabledState(isDisabled: boolean): void;
|
|
599
|
+
clear(): void;
|
|
600
|
+
getErrors(): string[];
|
|
601
|
+
private setControlValidators;
|
|
602
|
+
private scrollEvent;
|
|
603
|
+
ngOnDestroy(): void;
|
|
604
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AutocompleteComponent<any>, [{ optional: true; self: true; }]>;
|
|
605
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AutocompleteComponent<any>, "app-autocomplete", never, { "name": { "alias": "name"; "required": false; }; "dataFunction": { "alias": "dataFunction"; "required": false; }; "displayFunction": { "alias": "displayFunction"; "required": false; }; "outlineBackground": { "alias": "outlineBackground"; "required": false; }; }, {}, ["dropdownTemplate"], never, true, never>;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
declare class AutocompleteChipsComponent<ItemType> implements OnInit, ControlValueAccessor, OnDestroy {
|
|
609
|
+
controlDir: NgControl;
|
|
610
|
+
name: string;
|
|
611
|
+
dataFunction: (query: string) => Observable<ItemType[] | null>;
|
|
612
|
+
displayFunction: (item: ItemType | any) => string;
|
|
613
|
+
outlineBackground: boolean;
|
|
614
|
+
dropdownTemplate?: TemplateRef<unknown>;
|
|
615
|
+
autocompleteTrigger?: MatAutocompleteTrigger;
|
|
616
|
+
inputRef: ElementRef<HTMLInputElement>;
|
|
617
|
+
protected readonly Object: ObjectConstructor;
|
|
618
|
+
disabled: boolean;
|
|
619
|
+
formControl: FormControl<string | null>;
|
|
620
|
+
items$: BehaviorSubject<ItemType[]>;
|
|
621
|
+
data$: Observable<ItemType[] | null>;
|
|
622
|
+
loading$: Observable<boolean>;
|
|
623
|
+
componentIsDestroyed$: Subject<void>;
|
|
624
|
+
onTouched: (ev: Event) => void;
|
|
625
|
+
constructor(controlDir: NgControl);
|
|
626
|
+
ngOnInit(): void;
|
|
627
|
+
removeItem(index: number, items: ItemType[]): void;
|
|
628
|
+
addItem(event: MatAutocompleteSelectedEvent): void;
|
|
629
|
+
registerOnChange(fn: (value: ItemType[]) => void): void;
|
|
630
|
+
registerOnTouched(fn: (ev: Event) => void): void;
|
|
631
|
+
writeValue(value: ItemType[] | null): void;
|
|
632
|
+
setDisabledState(isDisabled: boolean): void;
|
|
633
|
+
getErrors(): string[];
|
|
634
|
+
shouldShowOption(item: ItemType, items: ItemType[]): boolean;
|
|
635
|
+
private scrollEvent;
|
|
636
|
+
private setControlValidators;
|
|
637
|
+
ngOnDestroy(): void;
|
|
638
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AutocompleteChipsComponent<any>, [{ optional: true; self: true; }]>;
|
|
639
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AutocompleteChipsComponent<any>, "app-autocomplete-chips", never, { "name": { "alias": "name"; "required": false; }; "dataFunction": { "alias": "dataFunction"; "required": false; }; "displayFunction": { "alias": "displayFunction"; "required": false; }; "outlineBackground": { "alias": "outlineBackground"; "required": false; }; }, {}, ["dropdownTemplate"], never, true, never>;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
interface TimeSeries {
|
|
643
|
+
name: string;
|
|
644
|
+
unitGuid: string;
|
|
645
|
+
unitSymbol: string;
|
|
646
|
+
data: TimeSeriesData[];
|
|
647
|
+
}
|
|
648
|
+
interface TimeSeriesData {
|
|
649
|
+
timestamp: number;
|
|
650
|
+
value: number;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
declare class BasicTimeSeriesGraphComponent {
|
|
654
|
+
private timeFormatter;
|
|
655
|
+
private themeService;
|
|
656
|
+
protected readonly chartTheme: _angular_core.Signal<ngx_echarts.ThemeOption | undefined>;
|
|
657
|
+
timeSeries: _angular_core.InputSignal<TimeSeries>;
|
|
658
|
+
desiredTimeFrame: _angular_core.InputSignal<{
|
|
659
|
+
from: number;
|
|
660
|
+
to: number;
|
|
661
|
+
} | undefined>;
|
|
662
|
+
primaryColor: _angular_core.InputSignal<string | undefined>;
|
|
663
|
+
graphOptions: _angular_core.Signal<EChartsOption>;
|
|
664
|
+
dataZoom: _angular_core.WritableSignal<{
|
|
665
|
+
start: number;
|
|
666
|
+
end: number;
|
|
667
|
+
} | null>;
|
|
668
|
+
constructor(timeFormatter: SimpleDateTimePipe);
|
|
669
|
+
chartZoom(event: any): void;
|
|
670
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BasicTimeSeriesGraphComponent, never>;
|
|
671
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BasicTimeSeriesGraphComponent, "app-basic-time-series-graph", never, { "timeSeries": { "alias": "timeSeries"; "required": true; "isSignal": true; }; "desiredTimeFrame": { "alias": "desiredTimeFrame"; "required": false; "isSignal": true; }; "primaryColor": { "alias": "primaryColor"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
declare class CardLabeledValueComponent {
|
|
675
|
+
permission: PermissionsService;
|
|
676
|
+
set permissions(permissions: string[] | undefined);
|
|
677
|
+
set useAssetPermissions(useAssetPermissions: boolean | undefined);
|
|
678
|
+
label: string;
|
|
679
|
+
editFunction: (() => void) | undefined;
|
|
680
|
+
icon: string;
|
|
681
|
+
tooltip: string;
|
|
682
|
+
private permissions$;
|
|
683
|
+
private useAssetPermissions$;
|
|
684
|
+
private hasPermission$;
|
|
685
|
+
hasPermission: _angular_core.Signal<boolean | undefined>;
|
|
686
|
+
constructor(permission: PermissionsService);
|
|
687
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardLabeledValueComponent, never>;
|
|
688
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardLabeledValueComponent, "app-card-labeled-value", never, { "permissions": { "alias": "permissions"; "required": false; }; "useAssetPermissions": { "alias": "useAssetPermissions"; "required": false; }; "label": { "alias": "label"; "required": true; }; "editFunction": { "alias": "editFunction"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
interface ConfirmationData {
|
|
692
|
+
message: string;
|
|
693
|
+
parameters: any;
|
|
694
|
+
deleteDialog?: boolean;
|
|
695
|
+
actionButtonLabel?: string;
|
|
696
|
+
}
|
|
697
|
+
declare class ConfirmationDialogComponent {
|
|
698
|
+
data: ConfirmationData;
|
|
699
|
+
private dialog;
|
|
700
|
+
constructor(data: ConfirmationData, dialog: MatDialogRef<ConfirmationDialogComponent>);
|
|
701
|
+
confirm(): void;
|
|
702
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ConfirmationDialogComponent, never>;
|
|
703
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConfirmationDialogComponent, "app-confirmation-dialog", never, {}, {}, never, never, true, never>;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
declare function parseDateRangeInputPeriod(value: DateRangeValues | null, timezone: string | null): {
|
|
707
|
+
periodOption: "CUSTOM_PERIOD";
|
|
708
|
+
from: number;
|
|
709
|
+
to: number;
|
|
710
|
+
} | {
|
|
711
|
+
periodOption: RelativeTimePeriod;
|
|
712
|
+
from: number;
|
|
713
|
+
to: number;
|
|
714
|
+
} | null;
|
|
715
|
+
declare const CUSTOM_PERIOD = "CUSTOM_PERIOD";
|
|
716
|
+
type RelativeTimePeriodWithCustom = typeof CUSTOM_PERIOD | RelativeTimePeriod;
|
|
717
|
+
interface DateRangeValues {
|
|
718
|
+
periodOption: RelativeTimePeriodWithCustom;
|
|
719
|
+
from?: number;
|
|
720
|
+
to?: number;
|
|
721
|
+
}
|
|
722
|
+
declare class PeriodErrorStateMatcher implements ErrorStateMatcher {
|
|
723
|
+
isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean;
|
|
724
|
+
}
|
|
725
|
+
declare class DateRangeInputComponent implements ControlValueAccessor, Validator {
|
|
726
|
+
private destroyRef;
|
|
727
|
+
private tenantPropertiesService;
|
|
728
|
+
availableDateOptions: _angular_core.InputSignal<RelativeTimePeriod[]>;
|
|
729
|
+
translationPrefix: _angular_core.InputSignal<string | undefined>;
|
|
730
|
+
allowCustomTimespan: _angular_core.InputSignal<boolean>;
|
|
731
|
+
isInForm: _angular_core.InputSignal<boolean>;
|
|
732
|
+
datePicker: _angular_core.Signal<MatDateRangePicker<Date> | undefined>;
|
|
733
|
+
validators: _angular_core.InputSignal<(() => ValidationErrors)[]>;
|
|
734
|
+
private validateForm;
|
|
735
|
+
onTouched: (ev: any) => void;
|
|
736
|
+
private onChange;
|
|
737
|
+
onValidatorChange: () => void;
|
|
738
|
+
dateRangeForm: FormGroup<{
|
|
739
|
+
periodOption: FormControl<any>;
|
|
740
|
+
from: FormControl<any>;
|
|
741
|
+
to: FormControl<any>;
|
|
742
|
+
}>;
|
|
743
|
+
CUSTOM_PERIOD: string;
|
|
744
|
+
periodErrorStateMatcher: PeriodErrorStateMatcher;
|
|
745
|
+
constructor(destroyRef: DestroyRef, tenantPropertiesService: TenantPropertiesService);
|
|
746
|
+
writeValue(value: DateRangeValues | null | undefined): void;
|
|
747
|
+
registerOnChange(fn: any): void;
|
|
748
|
+
registerOnTouched(fn: any): void;
|
|
749
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
750
|
+
validate(): ValidationErrors | null;
|
|
751
|
+
registerOnValidatorChange?(fn: () => void): void;
|
|
752
|
+
onTimeRangeChanged(selection: MatSelectChange): void;
|
|
753
|
+
emitValueChange(): void;
|
|
754
|
+
private onChangeForm;
|
|
755
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DateRangeInputComponent, never>;
|
|
756
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DateRangeInputComponent, "app-date-range-input", never, { "availableDateOptions": { "alias": "availableDateOptions"; "required": false; "isSignal": true; }; "translationPrefix": { "alias": "translationPrefix"; "required": false; "isSignal": true; }; "allowCustomTimespan": { "alias": "allowCustomTimespan"; "required": false; "isSignal": true; }; "isInForm": { "alias": "isInForm"; "required": false; "isSignal": true; }; "validators": { "alias": "validators"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
declare class DateTimeFormFieldComponent implements OnDestroy, ControlValueAccessor, Validator {
|
|
760
|
+
private translate;
|
|
761
|
+
dateLabel?: string;
|
|
762
|
+
timeLabel?: string;
|
|
763
|
+
validators: _angular_core.InputSignal<ValidatorFn[] | undefined>;
|
|
764
|
+
showErrorInTooltip: _angular_core.InputSignal<boolean>;
|
|
765
|
+
formGroup: FormGroup<{
|
|
766
|
+
date: FormControl<DateTime<boolean> | null>;
|
|
767
|
+
time: FormControl<string | null>;
|
|
768
|
+
}>;
|
|
769
|
+
onTouched: (ev: any) => void;
|
|
770
|
+
onValidatorChange: () => void;
|
|
771
|
+
private destroy$;
|
|
772
|
+
private readonly timeRegex;
|
|
773
|
+
onTimeInputChange: BehaviorSubject<string | null>;
|
|
774
|
+
timeChange: rxjs.Observable<string | null>;
|
|
775
|
+
constructor(translate: TranslateService);
|
|
776
|
+
writeValue(obj: Date | number | string): void;
|
|
777
|
+
registerOnChange(fn: any): void;
|
|
778
|
+
registerOnTouched(fn: any): void;
|
|
779
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
780
|
+
validate(): ValidationErrors | null;
|
|
781
|
+
registerOnValidatorChange?(fn: () => void): void;
|
|
782
|
+
ngOnDestroy(): void;
|
|
783
|
+
getDateErrors(): string[];
|
|
784
|
+
getTimeErrors(): string[];
|
|
785
|
+
getDateErrorTooltip(): string;
|
|
786
|
+
getTimeErrorTooltip(): string;
|
|
787
|
+
onInputChange(event: Event): void;
|
|
788
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DateTimeFormFieldComponent, never>;
|
|
789
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DateTimeFormFieldComponent, "app-date-time-form-field", never, { "dateLabel": { "alias": "dateLabel"; "required": false; }; "timeLabel": { "alias": "timeLabel"; "required": false; }; "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "showErrorInTooltip": { "alias": "showErrorInTooltip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
declare class DragDropFileUploadComponent implements ControlValueAccessor, Validator, AfterViewInit, OnDestroy {
|
|
793
|
+
controlDir: NgControl;
|
|
794
|
+
private notificationService;
|
|
795
|
+
dragDropZone: ElementRef<HTMLDivElement>;
|
|
796
|
+
fileInput: ElementRef<HTMLInputElement>;
|
|
797
|
+
accept: string;
|
|
798
|
+
multiple?: boolean;
|
|
799
|
+
prompt: string;
|
|
800
|
+
highlight: boolean;
|
|
801
|
+
disabled: boolean;
|
|
802
|
+
files$: BehaviorSubject<File[] | null>;
|
|
803
|
+
TRUNCATE_NAME_LIMIT: number;
|
|
804
|
+
private destroy$;
|
|
805
|
+
constructor(controlDir: NgControl, notificationService: NotificationService);
|
|
806
|
+
onTouched: (ev?: any) => void;
|
|
807
|
+
onValidatorChange: () => void;
|
|
808
|
+
onChange: (value: any) => void;
|
|
809
|
+
registerOnChange(fn: any): void;
|
|
810
|
+
registerOnTouched(fn: any): void;
|
|
811
|
+
registerOnValidatorChange?(fn: () => void): void;
|
|
812
|
+
setDisabledState(isDisabled: boolean): void;
|
|
813
|
+
validate(): ValidationErrors | null;
|
|
814
|
+
writeValue(val: any): void;
|
|
815
|
+
ngAfterViewInit(): void;
|
|
816
|
+
getFileName(name: string): string;
|
|
817
|
+
getErrorForTranslation(errors?: ValidationErrors | null): {
|
|
818
|
+
key: string;
|
|
819
|
+
params?: any;
|
|
820
|
+
};
|
|
821
|
+
onFileAdded({ target }: {
|
|
822
|
+
target: any;
|
|
823
|
+
}): void;
|
|
824
|
+
deleteFile(event: MouseEvent, index: number): void;
|
|
825
|
+
ngOnDestroy(): void;
|
|
826
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DragDropFileUploadComponent, [{ optional: true; self: true; }, null]>;
|
|
827
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DragDropFileUploadComponent, "application-drag-drop-file-upload", never, { "accept": { "alias": "accept"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "prompt": { "alias": "prompt"; "required": false; }; }, {}, never, never, true, never>;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
interface MapItem {
|
|
831
|
+
name: string;
|
|
832
|
+
lat: number;
|
|
833
|
+
lng: number;
|
|
834
|
+
trueLat?: number;
|
|
835
|
+
trueLng?: number;
|
|
836
|
+
path: string;
|
|
837
|
+
time: number;
|
|
838
|
+
color: string;
|
|
839
|
+
}
|
|
840
|
+
declare class GoogleMapComponent {
|
|
841
|
+
private translateService;
|
|
842
|
+
private simpleDateTimePipe;
|
|
843
|
+
map: _angular_core.Signal<GoogleMap>;
|
|
844
|
+
googleMapId: _angular_core.InputSignal<string>;
|
|
845
|
+
darkTheme: _angular_core.InputSignal<boolean>;
|
|
846
|
+
items: _angular_core.InputSignal<MapItem[]>;
|
|
847
|
+
pinColor: _angular_core.InputSignal<string>;
|
|
848
|
+
markerClicked: _angular_core.OutputEmitterRef<MapItem>;
|
|
849
|
+
zoom: _angular_core.WritableSignal<number>;
|
|
850
|
+
mapOptions: _angular_core.Signal<google.maps.MapOptions>;
|
|
851
|
+
clusterer: _angular_core.Signal<MarkerClusterer>;
|
|
852
|
+
markers: _angular_core.Signal<google.maps.marker.AdvancedMarkerElement[]>;
|
|
853
|
+
mapBounds: google.maps.LatLngBounds;
|
|
854
|
+
constructor(translateService: TranslateService, simpleDateTimePipe: SimpleDateTimePipe);
|
|
855
|
+
changeZoom(number: number): void;
|
|
856
|
+
fitBounds(): void;
|
|
857
|
+
private openDetails;
|
|
858
|
+
private createMarker;
|
|
859
|
+
addJitter(mapItems: MapItem[]): MapItem[];
|
|
860
|
+
private spreadMarkersInCircle;
|
|
861
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GoogleMapComponent, never>;
|
|
862
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GoogleMapComponent, "app-google-map", never, { "googleMapId": { "alias": "googleMapId"; "required": true; "isSignal": true; }; "darkTheme": { "alias": "darkTheme"; "required": true; "isSignal": true; }; "items": { "alias": "items"; "required": true; "isSignal": true; }; "pinColor": { "alias": "pinColor"; "required": true; "isSignal": true; }; }, { "markerClicked": "markerClicked"; }, never, never, true, never>;
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
declare class ImageDisplayComponent {
|
|
866
|
+
readonly sanitizer: DomSanitizer;
|
|
867
|
+
readonly dialog: MatDialog;
|
|
868
|
+
value: _angular_core.InputSignal<string | null | undefined>;
|
|
869
|
+
imageUrl: Signal<SafeUrl>;
|
|
870
|
+
isHtml(image: SafeUrl | SafeHtml | null): boolean;
|
|
871
|
+
openImage(image: SafeUrl): void;
|
|
872
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ImageDisplayComponent, never>;
|
|
873
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ImageDisplayComponent, "app-image-display", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
declare class ImagePreviewComponent {
|
|
877
|
+
data: {
|
|
878
|
+
image: SafeUrl | SafeHtml;
|
|
879
|
+
};
|
|
880
|
+
image: ElementRef<HTMLImageElement>;
|
|
881
|
+
svgElement: ElementRef<HTMLDivElement>;
|
|
882
|
+
dimensionStyles: WritableSignal<{
|
|
883
|
+
[key: string]: any;
|
|
884
|
+
}>;
|
|
885
|
+
constructor(data: {
|
|
886
|
+
image: SafeUrl | SafeHtml;
|
|
887
|
+
});
|
|
888
|
+
isHtml(image: SafeUrl | SafeHtml | null): boolean;
|
|
889
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ImagePreviewComponent, never>;
|
|
890
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ImagePreviewComponent, "app-image-preview", never, {}, {}, never, never, true, never>;
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
declare class LabeledValueComponent {
|
|
894
|
+
name: _angular_core.InputSignal<string>;
|
|
895
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LabeledValueComponent, never>;
|
|
896
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LabeledValueComponent, "app-labeled-value", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
declare class LoadedIconComponent {
|
|
900
|
+
private sanitizer;
|
|
901
|
+
iconRequest: _angular_core.InputSignal<Observable<Blob | null>>;
|
|
902
|
+
defaultIcon: _angular_core.InputSignal<string | SvgIcon>;
|
|
903
|
+
size: _angular_core.InputSignal<number>;
|
|
904
|
+
icon: _angular_core.Signal<Observable<_angular_platform_browser.SafeHtml | null>>;
|
|
905
|
+
isSvgIcon(): SvgIcon | null;
|
|
906
|
+
constructor(sanitizer: DomSanitizer);
|
|
907
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LoadedIconComponent, never>;
|
|
908
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LoadedIconComponent, "app-loaded-icon", never, { "iconRequest": { "alias": "iconRequest"; "required": true; "isSignal": true; }; "defaultIcon": { "alias": "defaultIcon"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
interface TableColumn {
|
|
912
|
+
name: string;
|
|
913
|
+
shouldSort: boolean;
|
|
914
|
+
shouldTranslateValue?: boolean;
|
|
915
|
+
}
|
|
916
|
+
type SortDirection = 'asc' | 'desc';
|
|
917
|
+
declare class LocalSortTableComponent {
|
|
918
|
+
columns: _angular_core.InputSignal<TableColumn[]>;
|
|
919
|
+
data: _angular_core.InputSignal<Record<string, any>[]>;
|
|
920
|
+
translationPrefix: _angular_core.InputSignal<string>;
|
|
921
|
+
loading: _angular_core.InputSignal<boolean>;
|
|
922
|
+
itemSelected: _angular_core.OutputEmitterRef<Record<string, any>>;
|
|
923
|
+
sortDirection: SortDirection;
|
|
924
|
+
sortField: string;
|
|
925
|
+
displayData: _angular_core.WritableSignal<Record<string, any>[] | null>;
|
|
926
|
+
sorting: _angular_core.WritableSignal<boolean>;
|
|
927
|
+
constructor();
|
|
928
|
+
sort(field: string, shouldUpdateDirectionAndField?: boolean): void;
|
|
929
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LocalSortTableComponent, never>;
|
|
930
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LocalSortTableComponent, "app-local-sort-table", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; "translationPrefix": { "alias": "translationPrefix"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; }, { "itemSelected": "itemSelected"; }, never, never, true, never>;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
/**
|
|
934
|
+
* Determines the width ratio between master and detail parts.
|
|
935
|
+
* The idea is to use appropriate ratios to maintain the equal width between all master parts
|
|
936
|
+
* in the case where a master-detail component is embedded as a detail of another.
|
|
937
|
+
*
|
|
938
|
+
* 'full' width will use 25% of the available width for the master part.
|
|
939
|
+
* 'medium' will use 33% of the available width, which corresponds to 25% of total width when embedded once.
|
|
940
|
+
* 'narrow' will use 50% of the available width, which corresponds to 25% of total width when embedded twice.
|
|
941
|
+
*/
|
|
942
|
+
type MasterDetailDisplayRatio = 'full' | 'wide' | 'medium' | 'narrow' | 'reverse';
|
|
943
|
+
declare class MasterDetailsViewComponent {
|
|
944
|
+
displayRatio: MasterDetailDisplayRatio;
|
|
945
|
+
calculateWidth(): string;
|
|
946
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MasterDetailsViewComponent, never>;
|
|
947
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MasterDetailsViewComponent, "app-master-details-view", never, { "displayRatio": { "alias": "displayRatio"; "required": false; }; }, {}, never, ["[app-master]", "[app-details]"], true, never>;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
interface NestedListItem<ItemType> {
|
|
951
|
+
id: string;
|
|
952
|
+
name: string;
|
|
953
|
+
idPath: string;
|
|
954
|
+
type?: string;
|
|
955
|
+
icon: string | LoadedIcon | SvgIcon;
|
|
956
|
+
isRoot: boolean;
|
|
957
|
+
data: ItemType;
|
|
958
|
+
}
|
|
959
|
+
declare abstract class NestedListDataSource<ItemType> {
|
|
960
|
+
/**
|
|
961
|
+
* Loads roots (needed for multiple roots).
|
|
962
|
+
*/
|
|
963
|
+
abstract loadRoots(): Observable<ItemType[]>;
|
|
964
|
+
/**
|
|
965
|
+
* Loads the breadcrumb data (top half).
|
|
966
|
+
*/
|
|
967
|
+
abstract loadBreadcrumbs(id: string): Observable<ItemType[]>;
|
|
968
|
+
/**
|
|
969
|
+
* Loads children for the currently selected item.
|
|
970
|
+
*/
|
|
971
|
+
abstract loadChildren(item: NestedListItem<ItemType>): Observable<ItemType[]>;
|
|
972
|
+
/**
|
|
973
|
+
* Sets the id of the item that should be loaded first.
|
|
974
|
+
*/
|
|
975
|
+
abstract initialSelection(): string | null;
|
|
976
|
+
/**
|
|
977
|
+
* Generalized the item and prepares it for display.
|
|
978
|
+
*/
|
|
979
|
+
abstract prepareItem(item: ItemType, isRoot?: boolean): NestedListItem<ItemType>;
|
|
980
|
+
sortingFunction(item1: NestedListItem<ItemType>, item2: NestedListItem<ItemType>): number;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
declare class NestedListDataControl<ItemType> {
|
|
984
|
+
private _changeSelection$;
|
|
985
|
+
private _itemUpdated$;
|
|
986
|
+
private _childAdded;
|
|
987
|
+
private _itemRemoved$;
|
|
988
|
+
readonly selectItem: (id: string) => void;
|
|
989
|
+
readonly updateItem: (item: ItemType) => void;
|
|
990
|
+
readonly addItem: (item: ItemType) => void;
|
|
991
|
+
readonly removeItem: (id: string) => void;
|
|
992
|
+
/**
|
|
993
|
+
* Internal event hook. Do not use outside the Nested List Component
|
|
994
|
+
*/
|
|
995
|
+
get changeSelection$(): Observable<string>;
|
|
996
|
+
/**
|
|
997
|
+
* Internal event hook. Do not use outside of the Nested List Component
|
|
998
|
+
*/
|
|
999
|
+
get itemUpdated$(): Observable<ItemType>;
|
|
1000
|
+
/**
|
|
1001
|
+
* Internal event hook. Do not use outside the Nested List Component
|
|
1002
|
+
*/
|
|
1003
|
+
get childAdded(): Observable<ItemType>;
|
|
1004
|
+
/**
|
|
1005
|
+
* Internal event hook. Do not use outside the Nested List Component
|
|
1006
|
+
*/
|
|
1007
|
+
get itemRemoved$(): Observable<string>;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
interface SearchAction {
|
|
1011
|
+
name: string;
|
|
1012
|
+
icon: SvgIcon;
|
|
1013
|
+
defaultAction?: boolean;
|
|
1014
|
+
action: (params?: any) => void;
|
|
1015
|
+
disableCondition?: (params?: any) => boolean;
|
|
1016
|
+
disabledTooltip?: string;
|
|
1017
|
+
condition: (params?: any) => Observable<boolean>;
|
|
1018
|
+
}
|
|
1019
|
+
declare class NestedListViewComponent<ItemType> {
|
|
1020
|
+
private destroyRef;
|
|
1021
|
+
private dialog;
|
|
1022
|
+
dataSource: _angular_core.InputSignal<NestedListDataSource<ItemType>>;
|
|
1023
|
+
dataControl: _angular_core.InputSignal<NestedListDataControl<ItemType>>;
|
|
1024
|
+
position: _angular_core.InputSignal<"inner" | "outer">;
|
|
1025
|
+
disableThresholdId: _angular_core.InputSignal<string | null | undefined>;
|
|
1026
|
+
hideDetails: _angular_core.InputSignal<boolean>;
|
|
1027
|
+
isColoredInput: _angular_core.InputSignal<boolean>;
|
|
1028
|
+
searchActions: _angular_core.InputSignal<SearchAction[]>;
|
|
1029
|
+
defaultSearchAction: _angular_core.Signal<SearchAction | undefined>;
|
|
1030
|
+
otherSearchActions: _angular_core.Signal<SearchAction[]>;
|
|
1031
|
+
width: _angular_core.Signal<"w-full" | "basis-1/4" | "basis-1/2">;
|
|
1032
|
+
loadingBreadcrumbs: _angular_core.WritableSignal<boolean>;
|
|
1033
|
+
loadingChildren: _angular_core.WritableSignal<boolean>;
|
|
1034
|
+
selectedItem: _angular_core.WritableSignal<NestedListItem<ItemType> | null>;
|
|
1035
|
+
hideSearch: _angular_core.InputSignal<boolean>;
|
|
1036
|
+
nameSearchControl: FormControl<string | null>;
|
|
1037
|
+
searchTerm: _angular_core.Signal<string | null | undefined>;
|
|
1038
|
+
breadcrumbs: _angular_core.WritableSignal<NestedListItem<ItemType>[]>;
|
|
1039
|
+
roots: _angular_core.WritableSignal<NestedListItem<ItemType>[]>;
|
|
1040
|
+
hasMultipleRoots: _angular_core.WritableSignal<boolean>;
|
|
1041
|
+
rootButtonText: _angular_core.InputSignal<string>;
|
|
1042
|
+
enableDrag: _angular_core.InputSignal<boolean>;
|
|
1043
|
+
isDragging: _angular_core.WritableSignal<boolean>;
|
|
1044
|
+
dragging: _angular_core.OutputEmitterRef<boolean>;
|
|
1045
|
+
children: _angular_core.WritableSignal<NestedListItem<ItemType>[]>;
|
|
1046
|
+
filteredChildren: _angular_core.Signal<NestedListItem<ItemType>[]>;
|
|
1047
|
+
itemSelected: _angular_core.OutputEmitterRef<ItemType | null>;
|
|
1048
|
+
constructor(destroyRef: DestroyRef, dialog: MatDialog);
|
|
1049
|
+
private initiateState;
|
|
1050
|
+
selectBreadcrumb(item: NestedListItem<ItemType>): void;
|
|
1051
|
+
selectChild(item: NestedListItem<ItemType>): void;
|
|
1052
|
+
dragStart(event: DragEvent, item: ItemType): void;
|
|
1053
|
+
resetNavigation(): void;
|
|
1054
|
+
shouldDisableBreadcrumbClick(item: NestedListItem<ItemType>): boolean | "" | null | undefined;
|
|
1055
|
+
isAsyncIcon(item: NestedListItem<ItemType>): LoadedIcon | null;
|
|
1056
|
+
isSvgIcon(item: NestedListItem<ItemType>): SvgIcon | null;
|
|
1057
|
+
formControlAction(params?: any): void;
|
|
1058
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NestedListViewComponent<any>, never>;
|
|
1059
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NestedListViewComponent<any>, "app-nested-list-view", never, { "dataSource": { "alias": "dataSource"; "required": true; "isSignal": true; }; "dataControl": { "alias": "dataControl"; "required": true; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "disableThresholdId": { "alias": "disableThresholdId"; "required": false; "isSignal": true; }; "hideDetails": { "alias": "hideDetails"; "required": false; "isSignal": true; }; "isColoredInput": { "alias": "isColoredInput"; "required": false; "isSignal": true; }; "searchActions": { "alias": "searchActions"; "required": false; "isSignal": true; }; "hideSearch": { "alias": "hideSearch"; "required": false; "isSignal": true; }; "rootButtonText": { "alias": "rootButtonText"; "required": false; "isSignal": true; }; "enableDrag": { "alias": "enableDrag"; "required": false; "isSignal": true; }; }, { "dragging": "dragging"; "itemSelected": "itemSelected"; }, never, ["[app-no-items-message]", "[app-actions]", "[app-details]"], true, never>;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
declare class PdfViewerComponent {
|
|
1063
|
+
private sanitizer;
|
|
1064
|
+
value: _angular_core.InputSignal<string>;
|
|
1065
|
+
safeSrc: _angular_core.Signal<SafeResourceUrl | null>;
|
|
1066
|
+
constructor(sanitizer: DomSanitizer);
|
|
1067
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PdfViewerComponent, never>;
|
|
1068
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PdfViewerComponent, "app-pdf-viewer", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
interface StandardListItem<ItemType> {
|
|
1072
|
+
id: string;
|
|
1073
|
+
name: string;
|
|
1074
|
+
icon: string | LoadedIcon | SvgIcon;
|
|
1075
|
+
data: ItemType;
|
|
1076
|
+
}
|
|
1077
|
+
declare abstract class StandardListDataSource<ItemType> {
|
|
1078
|
+
page: number;
|
|
1079
|
+
isPaged: boolean;
|
|
1080
|
+
isLastPage: boolean;
|
|
1081
|
+
/**
|
|
1082
|
+
* Loads the initial data from the backend.
|
|
1083
|
+
*/
|
|
1084
|
+
abstract loadData(): Observable<ItemType[]>;
|
|
1085
|
+
/**
|
|
1086
|
+
* Sets the id of the item that should be selected as soon as the data loads.
|
|
1087
|
+
*/
|
|
1088
|
+
abstract initialSelection(): string[] | string | null;
|
|
1089
|
+
/**
|
|
1090
|
+
* Generalized the item and prepares it for display.
|
|
1091
|
+
*/
|
|
1092
|
+
abstract prepareItem(item: ItemType): StandardListItem<ItemType>;
|
|
1093
|
+
sortingFunction(item1: StandardListItem<ItemType>, item2: StandardListItem<ItemType>): number;
|
|
1094
|
+
/**
|
|
1095
|
+
* If isPaged is set to true, implement this method, gets next page from the backend.
|
|
1096
|
+
*/
|
|
1097
|
+
nextPage(): Observable<ItemType[]>;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
declare class StandardListDataControl<ItemType> {
|
|
1101
|
+
private _changeSelection$;
|
|
1102
|
+
private _itemUpdated$;
|
|
1103
|
+
private _itemAdded$;
|
|
1104
|
+
private _itemRemoved$;
|
|
1105
|
+
readonly selectItem: (id: string) => void;
|
|
1106
|
+
readonly updateItem: (item: ItemType) => void;
|
|
1107
|
+
readonly addItem: (item: ItemType) => void;
|
|
1108
|
+
readonly removeItem: (id: string) => void;
|
|
1109
|
+
/**
|
|
1110
|
+
* Internal event hook. Do not use outside the Standard List Component
|
|
1111
|
+
*/
|
|
1112
|
+
get changeSelection$(): Observable<string>;
|
|
1113
|
+
/**
|
|
1114
|
+
* Internal event hook. Do not use outside of the Standard List Component
|
|
1115
|
+
*/
|
|
1116
|
+
get itemUpdated$(): Observable<ItemType>;
|
|
1117
|
+
/**
|
|
1118
|
+
* Internal event hook. Do not use outside the Standard List Component
|
|
1119
|
+
*/
|
|
1120
|
+
get itemAdded$(): Observable<ItemType>;
|
|
1121
|
+
/**
|
|
1122
|
+
* Internal event hook. Do not use outside the Standard List Component
|
|
1123
|
+
*/
|
|
1124
|
+
get itemRemoved$(): Observable<string>;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
declare class StandardListViewComponent<ItemType> {
|
|
1128
|
+
dataSource: _angular_core.InputSignal<StandardListDataSource<ItemType>>;
|
|
1129
|
+
dataControl: _angular_core.InputSignal<StandardListDataControl<ItemType>>;
|
|
1130
|
+
position: _angular_core.InputSignal<"inner" | "outer">;
|
|
1131
|
+
isColoredInput: _angular_core.InputSignal<boolean>;
|
|
1132
|
+
loadingData: _angular_core.WritableSignal<boolean>;
|
|
1133
|
+
loadingPage: _angular_core.WritableSignal<boolean>;
|
|
1134
|
+
selectedItem: _angular_core.WritableSignal<StandardListItem<ItemType> | null>;
|
|
1135
|
+
hideSearch: _angular_core.InputSignal<boolean>;
|
|
1136
|
+
hideDetails: _angular_core.InputSignal<boolean>;
|
|
1137
|
+
hidePadding: _angular_core.InputSignal<boolean>;
|
|
1138
|
+
width: _angular_core.Signal<"w-full" | "basis-1/4" | "basis-1/3">;
|
|
1139
|
+
nameSearchControl: FormControl<string | null>;
|
|
1140
|
+
searchTerm: _angular_core.Signal<string | null | undefined>;
|
|
1141
|
+
items: _angular_core.WritableSignal<StandardListItem<ItemType>[]>;
|
|
1142
|
+
filteredItems: _angular_core.Signal<StandardListItem<ItemType>[]>;
|
|
1143
|
+
itemSelected: _angular_core.OutputEmitterRef<ItemType | null>;
|
|
1144
|
+
content: _angular_core.Signal<NgTemplateContentDirective | undefined>;
|
|
1145
|
+
constructor(destroyRef: DestroyRef);
|
|
1146
|
+
selectItem(item: StandardListItem<ItemType>): void;
|
|
1147
|
+
selectEmpty(): void;
|
|
1148
|
+
isAsyncIcon(item: StandardListItem<ItemType>): LoadedIcon | null;
|
|
1149
|
+
isSvgIcon(item: StandardListItem<ItemType>): SvgIcon | null;
|
|
1150
|
+
loadMore(): void;
|
|
1151
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<StandardListViewComponent<any>, never>;
|
|
1152
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StandardListViewComponent<any>, "app-standard-list-view", never, { "dataSource": { "alias": "dataSource"; "required": true; "isSignal": true; }; "dataControl": { "alias": "dataControl"; "required": true; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "isColoredInput": { "alias": "isColoredInput"; "required": false; "isSignal": true; }; "hideSearch": { "alias": "hideSearch"; "required": false; "isSignal": true; }; "hideDetails": { "alias": "hideDetails"; "required": false; "isSignal": true; }; "hidePadding": { "alias": "hidePadding"; "required": false; "isSignal": true; }; }, { "itemSelected": "itemSelected"; }, ["content"], ["[app-no-items-message]", "[app-actions]", "[app-details]"], true, never>;
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
declare const LAST_ACTIVE_TAB_KEY = "WOLK_LAST_ACTIVE_TAB";
|
|
1156
|
+
declare class TabulatedChipViewComponent {
|
|
1157
|
+
private router;
|
|
1158
|
+
private route;
|
|
1159
|
+
tabs: _angular_core.InputSignal<Tab[]>;
|
|
1160
|
+
queryParamHandling: _angular_core.InputSignal<QueryParamsHandling>;
|
|
1161
|
+
saveLastActiveTab: _angular_core.InputSignal<boolean>;
|
|
1162
|
+
navBarLayoutClasses: _angular_core.InputSignal<string>;
|
|
1163
|
+
constructor(router: Router, route: ActivatedRoute);
|
|
1164
|
+
isActive(route: string): boolean;
|
|
1165
|
+
navigate(route: string): void;
|
|
1166
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabulatedChipViewComponent, never>;
|
|
1167
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabulatedChipViewComponent, "app-tabulated-chip-view", never, { "tabs": { "alias": "tabs"; "required": true; "isSignal": true; }; "queryParamHandling": { "alias": "queryParamHandling"; "required": false; "isSignal": true; }; "saveLastActiveTab": { "alias": "saveLastActiveTab"; "required": false; "isSignal": true; }; "navBarLayoutClasses": { "alias": "navBarLayoutClasses"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
declare class TabulatedViewComponent {
|
|
1171
|
+
private router;
|
|
1172
|
+
private route;
|
|
1173
|
+
tabs: Tab[];
|
|
1174
|
+
constructor(router: Router, route: ActivatedRoute);
|
|
1175
|
+
isActive(route: string): boolean;
|
|
1176
|
+
navigate(route: string): void;
|
|
1177
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabulatedViewComponent, never>;
|
|
1178
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabulatedViewComponent, "app-tabulated-view", never, { "tabs": { "alias": "tabs"; "required": true; }; }, {}, never, never, true, never>;
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
interface TreeNode<Type> {
|
|
1182
|
+
guid: string;
|
|
1183
|
+
name: string;
|
|
1184
|
+
icon: string;
|
|
1185
|
+
canHaveChildren: boolean;
|
|
1186
|
+
hasChildren: boolean;
|
|
1187
|
+
children: Observable<TreeNode<Type>[]>;
|
|
1188
|
+
data: Type;
|
|
1189
|
+
open: boolean;
|
|
1190
|
+
selected: boolean;
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
declare class TreeComponent {
|
|
1194
|
+
roots: _angular_core.InputSignal<TreeNode<any>[]>;
|
|
1195
|
+
guidPath: _angular_core.InputSignal<string[]>;
|
|
1196
|
+
nodeSelected: _angular_core.OutputEmitterRef<TreeNode<any>>;
|
|
1197
|
+
selectedNode: TreeNode<any> | null;
|
|
1198
|
+
constructor();
|
|
1199
|
+
private discoverNode;
|
|
1200
|
+
selectNode(node: TreeNode<any>): void;
|
|
1201
|
+
private markSelected;
|
|
1202
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TreeComponent, never>;
|
|
1203
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TreeComponent, "app-tree", never, { "roots": { "alias": "roots"; "required": true; "isSignal": true; }; "guidPath": { "alias": "guidPath"; "required": true; "isSignal": true; }; }, { "nodeSelected": "nodeSelected"; }, never, never, true, never>;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
declare class TreeNodeComponent {
|
|
1207
|
+
node: _angular_core.InputSignal<TreeNode<any>>;
|
|
1208
|
+
nodeSelected: _angular_core.OutputEmitterRef<TreeNode<any>>;
|
|
1209
|
+
toggle(node: TreeNode<any>): void;
|
|
1210
|
+
selectNode(node: TreeNode<any>): void;
|
|
1211
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TreeNodeComponent, never>;
|
|
1212
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TreeNodeComponent, "app-tree-node", never, { "node": { "alias": "node"; "required": true; "isSignal": true; }; }, { "nodeSelected": "nodeSelected"; }, never, never, true, never>;
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
declare class ValueDisplayComponent {
|
|
1216
|
+
protected readonly DataType: typeof DataType;
|
|
1217
|
+
value: _angular_core.InputSignal<string | null | undefined>;
|
|
1218
|
+
type: _angular_core.InputSignal<DataType>;
|
|
1219
|
+
unit: _angular_core.InputSignal<string | undefined>;
|
|
7
1220
|
constructor();
|
|
8
|
-
|
|
9
|
-
|
|
1221
|
+
getNumber(epochTime: string): number;
|
|
1222
|
+
getVectorValue(vector: string): string;
|
|
1223
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ValueDisplayComponent, never>;
|
|
1224
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ValueDisplayComponent, "app-value-display", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "type": { "alias": "type"; "required": true; "isSignal": true; }; "unit": { "alias": "unit"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
interface ValueInputValidationConditions {
|
|
1228
|
+
regex?: string | RegExp | null;
|
|
1229
|
+
required?: boolean | null;
|
|
1230
|
+
minSize?: number | null;
|
|
1231
|
+
maxSize?: number | null;
|
|
1232
|
+
}
|
|
1233
|
+
declare class ValueInputComponent implements ControlValueAccessor, Validator {
|
|
1234
|
+
name: _angular_core.InputSignal<string>;
|
|
1235
|
+
dataType: _angular_core.InputSignal<DataType>;
|
|
1236
|
+
options: _angular_core.InputSignal<string[] | undefined>;
|
|
1237
|
+
validationConditions: _angular_core.InputSignal<ValueInputValidationConditions | null | undefined>;
|
|
1238
|
+
showErrorInTooltip: _angular_core.InputSignal<boolean>;
|
|
1239
|
+
validators: _angular_core.WritableSignal<ValidatorFn[]>;
|
|
1240
|
+
formControl: FormControl<string | null>;
|
|
1241
|
+
onValidatorChange: () => void;
|
|
1242
|
+
constructor();
|
|
1243
|
+
validate(): ValidationErrors | null;
|
|
1244
|
+
registerOnValidatorChange?(fn: () => void): void;
|
|
1245
|
+
onTouched: (event: Event) => void;
|
|
1246
|
+
writeValue(value: string | null | undefined): void;
|
|
1247
|
+
registerOnChange(fn: any): void;
|
|
1248
|
+
registerOnTouched(fn: (event: Event) => void): void;
|
|
1249
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
1250
|
+
private setValidators;
|
|
1251
|
+
protected readonly DataType: typeof DataType;
|
|
1252
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ValueInputComponent, never>;
|
|
1253
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ValueInputComponent, "app-value-input", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "dataType": { "alias": "dataType"; "required": true; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "validationConditions": { "alias": "validationConditions"; "required": false; "isSignal": true; }; "showErrorInTooltip": { "alias": "showErrorInTooltip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
declare class ValueInputBooleanComponent implements ControlValueAccessor, Validator, OnDestroy {
|
|
1257
|
+
private translate;
|
|
1258
|
+
name: _angular_core.InputSignal<string>;
|
|
1259
|
+
formControl: FormControl<boolean | null>;
|
|
1260
|
+
destroy$: Subject<void>;
|
|
1261
|
+
validators: _angular_core.InputSignal<ValidatorFn[] | undefined>;
|
|
1262
|
+
showErrorInTooltip: _angular_core.InputSignal<boolean>;
|
|
1263
|
+
constructor(translate: TranslateService);
|
|
1264
|
+
onTouched: () => void;
|
|
1265
|
+
onValidatorChange: () => void;
|
|
1266
|
+
writeValue(value: string): void;
|
|
1267
|
+
registerOnChange(fn: () => void): void;
|
|
1268
|
+
registerOnTouched(fn: () => void): void;
|
|
1269
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1270
|
+
validate(): ValidationErrors | null;
|
|
1271
|
+
registerOnValidatorChange?(fn: () => void): void;
|
|
1272
|
+
getErrors(): string[];
|
|
1273
|
+
getErrorTooltip(): string;
|
|
1274
|
+
ngOnDestroy(): void;
|
|
1275
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ValueInputBooleanComponent, never>;
|
|
1276
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ValueInputBooleanComponent, "app-value-input-boolean", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "showErrorInTooltip": { "alias": "showErrorInTooltip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
declare class ValueInputColorComponent implements ControlValueAccessor, Validator, OnDestroy {
|
|
1280
|
+
private translate;
|
|
1281
|
+
name: _angular_core.InputSignal<string>;
|
|
1282
|
+
colorPicker: _angular_core.Signal<ElementRef<HTMLInputElement>>;
|
|
1283
|
+
showPicker: boolean;
|
|
1284
|
+
formControl: FormControl<string | null>;
|
|
1285
|
+
destroy$: Subject<void>;
|
|
1286
|
+
validators: _angular_core.InputSignal<ValidatorFn[] | undefined>;
|
|
1287
|
+
showErrorInTooltip: _angular_core.InputSignal<boolean>;
|
|
1288
|
+
onTouched: any;
|
|
1289
|
+
onValidatorChange: () => void;
|
|
1290
|
+
constructor(translate: TranslateService);
|
|
1291
|
+
writeValue(value: string): void;
|
|
1292
|
+
registerOnChange(fn: () => void): void;
|
|
1293
|
+
registerOnTouched(fn: any): void;
|
|
1294
|
+
validate(): ValidationErrors | null;
|
|
1295
|
+
registerOnValidatorChange?(fn: () => void): void;
|
|
1296
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
1297
|
+
openColorPicker(): void;
|
|
1298
|
+
onColorPickerChange(event: Event): void;
|
|
1299
|
+
getErrors(): string[];
|
|
1300
|
+
getErrorTooltip(): string;
|
|
1301
|
+
private hexadecimalColorValidator;
|
|
1302
|
+
ngOnDestroy(): void;
|
|
1303
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ValueInputColorComponent, never>;
|
|
1304
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ValueInputColorComponent, "app-value-input-color", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "showErrorInTooltip": { "alias": "showErrorInTooltip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
declare class ValueInputDateComponent implements ControlValueAccessor, Validator, OnDestroy {
|
|
1308
|
+
formControl: FormControl<Date | null>;
|
|
1309
|
+
destroy$: Subject<void>;
|
|
1310
|
+
validators: _angular_core.InputSignal<ValidatorFn[] | undefined>;
|
|
1311
|
+
showErrorInTooltip: _angular_core.InputSignal<boolean>;
|
|
1312
|
+
onTouched: any;
|
|
1313
|
+
onValidatorChange: () => void;
|
|
1314
|
+
constructor();
|
|
1315
|
+
writeValue(value: Date): void;
|
|
1316
|
+
registerOnChange(fn: any): void;
|
|
1317
|
+
registerOnTouched(fn: any): void;
|
|
1318
|
+
validate(): ValidationErrors | null;
|
|
1319
|
+
registerOnValidatorChange?(fn: () => void): void;
|
|
1320
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
1321
|
+
ngOnDestroy(): void;
|
|
1322
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ValueInputDateComponent, never>;
|
|
1323
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ValueInputDateComponent, "app-value-input-date", never, { "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "showErrorInTooltip": { "alias": "showErrorInTooltip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
declare class ValueInputDurationComponent implements ControlValueAccessor, Validator {
|
|
1327
|
+
private destroyRef;
|
|
1328
|
+
private translate;
|
|
1329
|
+
name: _angular_core.InputSignal<string>;
|
|
1330
|
+
formControl: FormControl<string | null>;
|
|
1331
|
+
validators: _angular_core.InputSignal<ValidatorFn[] | undefined>;
|
|
1332
|
+
showErrorInTooltip: _angular_core.InputSignal<boolean>;
|
|
1333
|
+
durationValidator: ValidatorFn;
|
|
1334
|
+
onTouched: any;
|
|
1335
|
+
onValidatorChange: () => void;
|
|
1336
|
+
constructor(destroyRef: DestroyRef, translate: TranslateService);
|
|
1337
|
+
writeValue(value: string): void;
|
|
1338
|
+
registerOnChange(fn: () => void): void;
|
|
1339
|
+
registerOnTouched(fn: any): void;
|
|
1340
|
+
validate(): ValidationErrors | null;
|
|
1341
|
+
registerOnValidatorChange?(fn: () => void): void;
|
|
1342
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
1343
|
+
getErrors(): string[];
|
|
1344
|
+
getErrorTooltip(): string;
|
|
1345
|
+
parseDurationToSeconds(duration: string | null): number | null;
|
|
1346
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ValueInputDurationComponent, never>;
|
|
1347
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ValueInputDurationComponent, "app-value-input-duration", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "showErrorInTooltip": { "alias": "showErrorInTooltip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
declare class ValueInputEnumComponent implements ControlValueAccessor, Validator, OnDestroy {
|
|
1351
|
+
private translate;
|
|
1352
|
+
formControl: FormControl<string | null>;
|
|
1353
|
+
onTouched: any;
|
|
1354
|
+
onValidatorChange: () => void;
|
|
1355
|
+
destroy$: Subject<void>;
|
|
1356
|
+
options: _angular_core.InputSignal<string[] | undefined>;
|
|
1357
|
+
name: _angular_core.InputSignal<string>;
|
|
1358
|
+
validators: _angular_core.InputSignal<ValidatorFn[] | undefined>;
|
|
1359
|
+
showErrorInTooltip: _angular_core.InputSignal<boolean>;
|
|
1360
|
+
constructor(translate: TranslateService);
|
|
1361
|
+
writeValue(value: string): void;
|
|
1362
|
+
registerOnChange(fn: () => void): void;
|
|
1363
|
+
registerOnTouched(fn: any): void;
|
|
1364
|
+
validate(): ValidationErrors | null;
|
|
1365
|
+
registerOnValidatorChange?(fn: () => void): void;
|
|
1366
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
1367
|
+
getErrors(): string[];
|
|
1368
|
+
getErrorTooltip(): string;
|
|
1369
|
+
ngOnDestroy(): void;
|
|
1370
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ValueInputEnumComponent, never>;
|
|
1371
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ValueInputEnumComponent, "app-value-input-enum", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "showErrorInTooltip": { "alias": "showErrorInTooltip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
declare class ValueInputHexadecimalComponent implements ControlValueAccessor, Validator, OnDestroy {
|
|
1375
|
+
private translate;
|
|
1376
|
+
formControl: FormControl<string | null>;
|
|
1377
|
+
destroy$: Subject<void>;
|
|
1378
|
+
validators: _angular_core.InputSignal<ValidatorFn[] | undefined>;
|
|
1379
|
+
showErrorInTooltip: _angular_core.InputSignal<boolean>;
|
|
1380
|
+
constructor(translate: TranslateService);
|
|
1381
|
+
onTouched: any;
|
|
1382
|
+
onValidatorChange: () => void;
|
|
1383
|
+
writeValue(value: string): void;
|
|
1384
|
+
registerOnChange(fn: () => void): void;
|
|
1385
|
+
registerOnTouched(fn: any): void;
|
|
1386
|
+
validate(): ValidationErrors | null;
|
|
1387
|
+
registerOnValidatorChange?(fn: () => void): void;
|
|
1388
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
1389
|
+
getErrors(): string[];
|
|
1390
|
+
getErrorTooltip(): string;
|
|
1391
|
+
private hexadecimalValidator;
|
|
1392
|
+
ngOnDestroy(): void;
|
|
1393
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ValueInputHexadecimalComponent, never>;
|
|
1394
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ValueInputHexadecimalComponent, "app-value-input-hexadecimal", never, { "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "showErrorInTooltip": { "alias": "showErrorInTooltip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
declare class ValueInputLinkComponent implements ControlValueAccessor, Validator, OnDestroy {
|
|
1398
|
+
private translate;
|
|
1399
|
+
formControl: FormControl<string | null>;
|
|
1400
|
+
destroy$: Subject<void>;
|
|
1401
|
+
validators: _angular_core.InputSignal<ValidatorFn[] | undefined>;
|
|
1402
|
+
showErrorInTooltip: _angular_core.InputSignal<boolean>;
|
|
1403
|
+
onTouched: any;
|
|
1404
|
+
onValidatorChange: () => void;
|
|
1405
|
+
constructor(translate: TranslateService);
|
|
1406
|
+
writeValue(value: string): void;
|
|
1407
|
+
registerOnChange(fn: () => void): void;
|
|
1408
|
+
registerOnTouched(fn: any): void;
|
|
1409
|
+
validate(): ValidationErrors | null;
|
|
1410
|
+
registerOnValidatorChange?(fn: () => void): void;
|
|
1411
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
1412
|
+
private linkValidator;
|
|
1413
|
+
getErrors(): string[];
|
|
1414
|
+
getErrorTooltip(): string;
|
|
1415
|
+
ngOnDestroy(): void;
|
|
1416
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ValueInputLinkComponent, never>;
|
|
1417
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ValueInputLinkComponent, "app-value-input-link", never, { "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "showErrorInTooltip": { "alias": "showErrorInTooltip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
declare class ValueInputLocationComponent implements ControlValueAccessor, Validator, OnDestroy {
|
|
1421
|
+
private translate;
|
|
1422
|
+
destroy$: Subject<void>;
|
|
1423
|
+
formGroup: FormGroup<{
|
|
1424
|
+
latitude: FormControl<string | null>;
|
|
1425
|
+
longitude: FormControl<string | null>;
|
|
1426
|
+
}>;
|
|
1427
|
+
validators: _angular_core.InputSignal<ValidatorFn[] | undefined>;
|
|
1428
|
+
showErrorInTooltip: _angular_core.InputSignal<boolean>;
|
|
1429
|
+
onTouched: any;
|
|
1430
|
+
onValidatorChange: () => void;
|
|
1431
|
+
constructor(translate: TranslateService);
|
|
1432
|
+
writeValue(value: string): void;
|
|
1433
|
+
registerOnChange(fn: () => void): void;
|
|
1434
|
+
registerOnTouched(fn: any): void;
|
|
1435
|
+
validate(): ValidationErrors | null;
|
|
1436
|
+
registerOnValidatorChange?(fn: () => void): void;
|
|
1437
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
1438
|
+
handleLocationPaste(event: ClipboardEvent, formControlName: 'latitude' | 'longitude'): void;
|
|
1439
|
+
getErrors(controlName: string): string[];
|
|
1440
|
+
getErrorTooltip(controlName: string): string;
|
|
1441
|
+
ngOnDestroy(): void;
|
|
1442
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ValueInputLocationComponent, never>;
|
|
1443
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ValueInputLocationComponent, "app-value-input-location", never, { "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "showErrorInTooltip": { "alias": "showErrorInTooltip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
declare class ValueInputNumericComponent implements ControlValueAccessor, Validator, OnDestroy {
|
|
1447
|
+
private translate;
|
|
1448
|
+
formControl: FormControl<number | null>;
|
|
1449
|
+
destroy$: Subject<void>;
|
|
1450
|
+
name: _angular_core.InputSignal<string>;
|
|
1451
|
+
validators: _angular_core.InputSignal<ValidatorFn[] | undefined>;
|
|
1452
|
+
showErrorInTooltip: _angular_core.InputSignal<boolean>;
|
|
1453
|
+
onTouched: any;
|
|
1454
|
+
onValidatorChange: () => void;
|
|
1455
|
+
constructor(translate: TranslateService);
|
|
1456
|
+
validate(): ValidationErrors | null;
|
|
1457
|
+
registerOnValidatorChange?(fn: () => void): void;
|
|
1458
|
+
writeValue(value: number): void;
|
|
1459
|
+
registerOnChange(fn: () => void): void;
|
|
1460
|
+
registerOnTouched(fn: any): void;
|
|
1461
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
1462
|
+
getErrors(): string[];
|
|
1463
|
+
getErrorTooltip(): string;
|
|
1464
|
+
private numberValidator;
|
|
1465
|
+
ngOnDestroy(): void;
|
|
1466
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ValueInputNumericComponent, never>;
|
|
1467
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ValueInputNumericComponent, "app-value-input-numeric", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "showErrorInTooltip": { "alias": "showErrorInTooltip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
declare class ValueInputStringComponent implements ControlValueAccessor, Validator, OnDestroy {
|
|
1471
|
+
private translate;
|
|
1472
|
+
name: _angular_core.InputSignal<string>;
|
|
1473
|
+
formControl: FormControl<string | null>;
|
|
1474
|
+
destroy$: Subject<void>;
|
|
1475
|
+
validators: _angular_core.InputSignal<ValidatorFn[] | undefined>;
|
|
1476
|
+
showErrorInTooltip: _angular_core.InputSignal<boolean>;
|
|
1477
|
+
onTouched: any;
|
|
1478
|
+
onValidatorChange: () => void;
|
|
1479
|
+
constructor(translate: TranslateService);
|
|
1480
|
+
writeValue(value: string): void;
|
|
1481
|
+
registerOnChange(fn: () => void): void;
|
|
1482
|
+
registerOnTouched(fn: any): void;
|
|
1483
|
+
validate(): ValidationErrors | null;
|
|
1484
|
+
registerOnValidatorChange?(fn: () => void): void;
|
|
1485
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
1486
|
+
getErrors(): string[];
|
|
1487
|
+
getErrorTooltip(): string;
|
|
1488
|
+
ngOnDestroy(): void;
|
|
1489
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ValueInputStringComponent, never>;
|
|
1490
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ValueInputStringComponent, "app-value-input-string", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "showErrorInTooltip": { "alias": "showErrorInTooltip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
declare class ValueInputVectorComponent implements ControlValueAccessor, Validator, OnDestroy {
|
|
1494
|
+
private translate;
|
|
1495
|
+
formControl: FormControl<string | null>;
|
|
1496
|
+
destroy$: Subject<void>;
|
|
1497
|
+
options: _angular_core.InputSignal<string[] | undefined>;
|
|
1498
|
+
name: _angular_core.InputSignal<string>;
|
|
1499
|
+
showErrorInTooltip: _angular_core.InputSignal<boolean>;
|
|
1500
|
+
validators: _angular_core.InputSignal<ValidatorFn[] | undefined>;
|
|
1501
|
+
onTouched: any;
|
|
1502
|
+
onValidatorChange: () => void;
|
|
1503
|
+
constructor(translate: TranslateService);
|
|
1504
|
+
writeValue(value: string): void;
|
|
1505
|
+
registerOnChange(fn: () => void): void;
|
|
1506
|
+
registerOnTouched(fn: any): void;
|
|
1507
|
+
validate(): ValidationErrors | null;
|
|
1508
|
+
registerOnValidatorChange?(fn: () => void): void;
|
|
1509
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
1510
|
+
getErrors(): string[];
|
|
1511
|
+
getErrorTooltip(): string;
|
|
1512
|
+
validateOptions: (control: AbstractControl) => ValidationErrors | null;
|
|
1513
|
+
ngOnDestroy(): void;
|
|
1514
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ValueInputVectorComponent, never>;
|
|
1515
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ValueInputVectorComponent, "app-value-input-vector", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "showErrorInTooltip": { "alias": "showErrorInTooltip"; "required": false; "isSignal": true; }; "validators": { "alias": "validators"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
10
1516
|
}
|
|
11
1517
|
|
|
12
|
-
export {
|
|
1518
|
+
export { AUTHENTICATION_CLIENT, AuthenticationService, AutocompleteChipsComponent, AutocompleteComponent, BasicTimeSeriesGraphComponent, COLORS, CUSTOM_PERIOD, CardLabeledValueComponent, ConfirmationDialogComponent, DEFAULT_LOCALE, DEFAULT_TIMEZONES, DEFAULT_TIME_ZONE, DataType, DateRangeInputComponent, DateTimeFormFieldComponent, DragDropFileUploadComponent, DurationPipe, FeatureRegistry, GoogleMapComponent, ImageDisplayComponent, ImagePreviewComponent, LAST_ACTIVE_TAB_KEY, LOCALES, LabeledValueComponent, LoadedIconComponent, LoadingIndicatorDirective, LocalSortTableComponent, Locale, LocalizedNumberPipe, LocalizedNumericInputDirective, MILLISECONDS_IN_DAY, MapsLoaderService, MasterDetailsViewComponent, MessageTooltipDirective, MissingTranslationHelper, NestedListDataControl, NestedListDataSource, NestedListViewComponent, NgTemplateContentDirective, NotificationService, OverflowClassDirective, PdfViewerComponent, PeriodErrorStateMatcher, Permission, PermissionsService, RELATIVE_TIME_PERIODS, RelativeTimePeriod, RequiresAllGlobalOrAssetPermissionsDirective, RequiresAllPermissionDirective, RequiresGlobalOrAsserPermissionDirective, RequiresPermissionDirective, ScrollIntoViewDirective, SimpleDatePipe, SimpleDateTimePipe, SimpleTimePipe, SortPipe, StandardListDataControl, StandardListDataSource, StandardListViewComponent, TIMEZONES, TabulatedChipViewComponent, TabulatedViewComponent, TenantPropertiesService, ThemeService, TreeComponent, TreeNodeComponent, USERS_TIME_ZONE, ValueDisplayComponent, ValueInputBooleanComponent, ValueInputColorComponent, ValueInputComponent, ValueInputDateComponent, ValueInputDurationComponent, ValueInputEnumComponent, ValueInputHexadecimalComponent, ValueInputLinkComponent, ValueInputLocationComponent, ValueInputNumericComponent, ValueInputStringComponent, ValueInputVectorComponent, angularComponents, arrayToObject, chartThemeDark, chartThemeLight, createGlobalPermissionsGuard, daysAway, determineMagnitude, determineMinMaxValues, endOfPeriod, equalsByValue, fileSizeValidator, flatMap, flatten, format, formatDuration, generateRandomString, groupBy, hoursAway, isContextAccessible, lookUpPathPart, lookUpQueryParam, parseDateRangeInputPeriod, parseTimeInput, saveFile, scale, shared, startOfMonth, startOfPeriod, startOfTheDay, startOfWeek, startOfYear, toDate, toEndOfMonth, toEndOfYear, toJsDate, toOffset, toStartOfMonth, toStartOfTheDay, toStartOfWeek, toStartOfYear, toTime, uniqueBy, uniqueFrom, validateAssetName, validateTypeAssetName };
|
|
1519
|
+
export type { Authentication, AuthenticationClient, Authority, Color, ConfirmationData, DateRangeValues, ExternalFeature, Feature, ImportError, LoadedIcon, MapItem, MasterDetailDisplayRatio, NestedListItem, RelativeTimePeriodWithCustom, SearchAction, SortDirection$1 as SortDirection, StandardListItem, SvgIcon, Tab, Theme, TimeSeries, TimeSeriesData, TreeNode, User, ValueInputValidationConditions };
|