platform-core-ng 21.1.0
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 +73 -0
- package/fesm2022/platform-core-ng.mjs +7139 -0
- package/fesm2022/platform-core-ng.mjs.map +1 -0
- package/package.json +20 -0
- package/styles/base/_breakpoints.scss +1 -0
- package/styles/base/_interaction-mixins.scss +37 -0
- package/styles/base/_tokens.scss +255 -0
- package/styles/base/reset.scss +66 -0
- package/styles/base/scrollbar.scss +22 -0
- package/styles/base/theme.scss +424 -0
- package/styles/base/typography.scss +50 -0
- package/styles/components/index.scss +7 -0
- package/styles/components/mail-client.scss +2165 -0
- package/styles/components/master-detail.scss +137 -0
- package/styles/components/mobile-list-directives.scss +355 -0
- package/styles/control/button.scss +565 -0
- package/styles/control/switch.scss +85 -0
- package/styles/data/table/base.scss +31 -0
- package/styles/data/table/pattern-admin.scss +136 -0
- package/styles/data/table/pattern-screen.scss +36 -0
- package/styles/data/table.scss +3 -0
- package/styles/form/checkbox.scss +97 -0
- package/styles/form/input.scss +201 -0
- package/styles/form/number.scss +17 -0
- package/styles/form/radio.scss +84 -0
- package/styles/form/range.scss +118 -0
- package/styles/form/select.scss +50 -0
- package/styles/form/textarea.scss +65 -0
- package/styles/foundation.scss +16 -0
- package/styles/index.scss +1 -0
- package/styles/profiles/b/index.scss +4 -0
- package/styles/profiles/b/layout.scss +88 -0
- package/styles/profiles/b/theme.scss +44 -0
- package/styles/profiles/screen/index.scss +3 -0
- package/styles/profiles/screen/layout.scss +125 -0
- package/styles/profiles/screen/theme.scss +131 -0
- package/types/platform-core-ng.d.ts +3217 -0
|
@@ -0,0 +1,3217 @@
|
|
|
1
|
+
import * as rxjs from 'rxjs';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { CanActivateFn } from '@angular/router';
|
|
4
|
+
import * as _angular_core from '@angular/core';
|
|
5
|
+
import { InjectionToken, Provider, OnInit, ChangeDetectorRef, Signal, WritableSignal, ErrorHandler, Injector, EnvironmentProviders, Type, AfterViewInit, TemplateRef, ViewContainerRef, ElementRef, OnChanges, Renderer2, SimpleChanges, ComponentRef, PipeTransform } from '@angular/core';
|
|
6
|
+
import { BaseListEntity, BaseCrudService, PaginationResponse, PageRequestDTO } from 'platform-core-ts';
|
|
7
|
+
import { HttpRequest, HttpHandlerFn, HttpEvent, HttpContextToken, HttpContext } from '@angular/common/http';
|
|
8
|
+
import * as platform_core_ng from 'platform-core-ng';
|
|
9
|
+
import * as lucide_angular from 'lucide-angular';
|
|
10
|
+
import { LucideIconData } from 'lucide-angular';
|
|
11
|
+
import { Listbox, Option } from '@angular/aria/listbox';
|
|
12
|
+
import { Combobox } from '@angular/aria/combobox';
|
|
13
|
+
import { ControlValueAccessor, FormControl } from '@angular/forms';
|
|
14
|
+
import { CdkOverlayOrigin, ConnectedPosition, OverlayConfig, OverlayRef } from '@angular/cdk/overlay';
|
|
15
|
+
import { MenuTrigger, Menu } from '@angular/aria/menu';
|
|
16
|
+
|
|
17
|
+
interface ElectronRequestBridge {
|
|
18
|
+
get<T>(url: string, option: string): Promise<T>;
|
|
19
|
+
post<T>(url: string, data: unknown): Promise<T>;
|
|
20
|
+
delete<T>(url: string, option: string): Promise<T>;
|
|
21
|
+
put<T>(url: string, data: unknown): Promise<T>;
|
|
22
|
+
}
|
|
23
|
+
declare global {
|
|
24
|
+
interface Window {
|
|
25
|
+
electronRequest: ElectronRequestBridge;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* @description 用于在 Electron 环境中发送IPC请求
|
|
30
|
+
* @param url 请求 URL
|
|
31
|
+
* @param option 请求选项
|
|
32
|
+
* @author Chen Yu
|
|
33
|
+
* @returns 响应数据
|
|
34
|
+
*/
|
|
35
|
+
declare class ElectronRequest {
|
|
36
|
+
/**
|
|
37
|
+
* 发送 GET 请求
|
|
38
|
+
* @param url 请求 URL
|
|
39
|
+
* @param option 请求选项
|
|
40
|
+
* @returns 响应数据
|
|
41
|
+
*/
|
|
42
|
+
get<T>(url: string, option: string): Observable<T>;
|
|
43
|
+
/**
|
|
44
|
+
* 发送 POST 请求
|
|
45
|
+
* @param url 请求 URL
|
|
46
|
+
* @param data 请求数据
|
|
47
|
+
* @returns 响应数据
|
|
48
|
+
*/
|
|
49
|
+
post<T>(url: string, data: unknown): Observable<T>;
|
|
50
|
+
/**
|
|
51
|
+
* 发送 DELETE 请求
|
|
52
|
+
* @param url 请求 URL
|
|
53
|
+
* @param option 请求选项
|
|
54
|
+
* @returns 响应数据
|
|
55
|
+
*/
|
|
56
|
+
delete<T>(url: string, option: string): Observable<T>;
|
|
57
|
+
/**
|
|
58
|
+
* 发送 PUT 请求
|
|
59
|
+
* @param url 请求 URL
|
|
60
|
+
* @param data 请求数据
|
|
61
|
+
* @returns 响应数据
|
|
62
|
+
*/
|
|
63
|
+
put<T>(url: string, data: unknown): Observable<T>;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
declare const coreAuthGuard: CanActivateFn;
|
|
67
|
+
declare const coreGuestOnlyGuard: CanActivateFn;
|
|
68
|
+
|
|
69
|
+
type AuthenticatedStateGetter = () => boolean;
|
|
70
|
+
interface CoreAuthGuardConfig {
|
|
71
|
+
readonly loginPath?: string;
|
|
72
|
+
readonly authenticatedRedirectPath?: string;
|
|
73
|
+
}
|
|
74
|
+
declare const AUTHENTICATED_STATE_GETTER: InjectionToken<AuthenticatedStateGetter>;
|
|
75
|
+
declare const CORE_AUTH_GUARD_CONFIG: InjectionToken<CoreAuthGuardConfig>;
|
|
76
|
+
declare function provideAuthenticatedStateGetter(getterFactory: () => AuthenticatedStateGetter): Provider;
|
|
77
|
+
declare function provideCoreAuthGuardConfig(config: CoreAuthGuardConfig): Provider;
|
|
78
|
+
|
|
79
|
+
declare abstract class BaseListComponent<T extends BaseListEntity, S extends BaseCrudService<T>> implements OnInit {
|
|
80
|
+
protected service: S;
|
|
81
|
+
protected cd: ChangeDetectorRef;
|
|
82
|
+
protected readonly isLoading: Signal<boolean>;
|
|
83
|
+
paginationResponse: WritableSignal<PaginationResponse<T>>;
|
|
84
|
+
private readonly pageRequestRevision;
|
|
85
|
+
private pageRequestValue;
|
|
86
|
+
get pageRequestDTO(): PageRequestDTO;
|
|
87
|
+
set pageRequestDTO(value: PageRequestDTO);
|
|
88
|
+
checkedAll: boolean;
|
|
89
|
+
indeterminate: boolean;
|
|
90
|
+
protected readonly rows: Signal<T[]>;
|
|
91
|
+
protected readonly pagedRows: Signal<T[]>;
|
|
92
|
+
protected readonly totalItems: Signal<number>;
|
|
93
|
+
protected readonly currentPage: Signal<number>;
|
|
94
|
+
protected readonly pageSize: Signal<number>;
|
|
95
|
+
protected readonly selectedItems: Signal<T[]>;
|
|
96
|
+
protected readonly hasSelection: Signal<boolean>;
|
|
97
|
+
protected constructor(service: S, cd: ChangeDetectorRef);
|
|
98
|
+
ngOnInit(): Promise<void>;
|
|
99
|
+
protected abstract fetchList(pageRequestDTO: PageRequestDTO): Promise<PaginationResponse<T>>;
|
|
100
|
+
loadData(): Promise<void>;
|
|
101
|
+
trackByPropertyKey(_index: number, item: T, propertyKey: keyof T): unknown;
|
|
102
|
+
onCheckedChange(checked: boolean, _event?: unknown): void;
|
|
103
|
+
onRowCheckedChange(item: T, checked: boolean): void;
|
|
104
|
+
protected getSelectedItem(): T | undefined;
|
|
105
|
+
protected getSelectedItemOr(item?: T): T | undefined;
|
|
106
|
+
protected getSelectedIds<TKey extends keyof T>(propertyKey: TKey): Array<NonNullable<T[TKey]>>;
|
|
107
|
+
protected buildSelectedIds<TKey extends keyof T>(propertyKey: TKey): Signal<Array<NonNullable<T[TKey]>>>;
|
|
108
|
+
protected buildCountSummary(unit: string, prefix?: string): Signal<string>;
|
|
109
|
+
protected changePage(page: number): Promise<void>;
|
|
110
|
+
protected changePageSize(size: number): Promise<void>;
|
|
111
|
+
protected reloadFirstPage(): Promise<void>;
|
|
112
|
+
protected updateCheckState(): void;
|
|
113
|
+
deleteSelected(ids?: number[], _list?: T[], _propertyKey?: string): Promise<void>;
|
|
114
|
+
protected resetList(pageRequestDTO?: PageRequestDTO): Promise<void>;
|
|
115
|
+
resetSearch(pageRequestDTO?: PageRequestDTO): Promise<void>;
|
|
116
|
+
private markPageRequestChanged;
|
|
117
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BaseListComponent<any, any>, never>;
|
|
118
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<BaseListComponent<any, any>, never, never, {}, {}, never, never, true, never>;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
declare class GlobalErrorHandler implements ErrorHandler {
|
|
122
|
+
private injector;
|
|
123
|
+
/**
|
|
124
|
+
* 全局错误处理服务
|
|
125
|
+
* @param injector
|
|
126
|
+
*/
|
|
127
|
+
constructor(injector: Injector);
|
|
128
|
+
/**
|
|
129
|
+
* 全局错误处理
|
|
130
|
+
* @param error 错误信息
|
|
131
|
+
*/
|
|
132
|
+
handleError(error: unknown): void;
|
|
133
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GlobalErrorHandler, never>;
|
|
134
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<GlobalErrorHandler>;
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* 提供全局错误处理服务
|
|
138
|
+
* @returns 全局错误处理服务
|
|
139
|
+
*/
|
|
140
|
+
declare function provideGlobalErrorHandler(): {
|
|
141
|
+
provide: typeof ErrorHandler;
|
|
142
|
+
useClass: typeof GlobalErrorHandler;
|
|
143
|
+
};
|
|
144
|
+
|
|
145
|
+
declare function ThrowException(ErrorType: new (message?: string) => Error, message?: string): (_target: object, propertyKey: string | symbol, descriptor: PropertyDescriptor) => PropertyDescriptor;
|
|
146
|
+
|
|
147
|
+
declare function responseInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* HTTP请求拦截器
|
|
151
|
+
* 功能:
|
|
152
|
+
* 1. 增加加载状态计数
|
|
153
|
+
* 2. 处理基础URL拼接
|
|
154
|
+
* 3. 为符合条件的请求添加认证Token
|
|
155
|
+
*/
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* 请求拦截器函数
|
|
159
|
+
* @param req - 原始HTTP请求对象
|
|
160
|
+
* @param next - 下一个请求处理器函数
|
|
161
|
+
* @returns 处理后的HTTP事件 Observable
|
|
162
|
+
*/
|
|
163
|
+
declare function requestInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* @description 路由 outlets 模型,用于路由导航时指定 outlets
|
|
167
|
+
* @param primary 主路由 outlets
|
|
168
|
+
* @param appPrompt 应用提示路由 outlets
|
|
169
|
+
* @author ChenYu
|
|
170
|
+
* @version 1.0.0
|
|
171
|
+
*/
|
|
172
|
+
declare class Outlets {
|
|
173
|
+
/**
|
|
174
|
+
* 主路由 outlets
|
|
175
|
+
*/
|
|
176
|
+
primary: string[];
|
|
177
|
+
/**
|
|
178
|
+
* 应用提示路由 outlets
|
|
179
|
+
*/
|
|
180
|
+
appPrompt: string[];
|
|
181
|
+
/**
|
|
182
|
+
* 路由 outlets 模型
|
|
183
|
+
* @param primary 主路由 outlets
|
|
184
|
+
* @param appPrompt 应用提示路由 outlets
|
|
185
|
+
*/
|
|
186
|
+
constructor(primary: string[], appPrompt: string[]);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
interface WorkspaceRefreshable {
|
|
190
|
+
refreshWorkspaceTab(): void | Promise<void>;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
type AppRuntimeHost = 'main' | 'standalone' | (string & {});
|
|
194
|
+
interface AppRuntimeContext {
|
|
195
|
+
readonly host: AppRuntimeHost;
|
|
196
|
+
readonly appCode?: string;
|
|
197
|
+
readonly appName?: string;
|
|
198
|
+
readonly tenantId?: string;
|
|
199
|
+
readonly userId?: string;
|
|
200
|
+
readonly permissions: readonly string[];
|
|
201
|
+
readonly metadata?: Readonly<Record<string, unknown>>;
|
|
202
|
+
}
|
|
203
|
+
declare const DEFAULT_APP_RUNTIME_CONTEXT: AppRuntimeContext;
|
|
204
|
+
declare const APP_RUNTIME_CONTEXT: InjectionToken<AppRuntimeContext>;
|
|
205
|
+
|
|
206
|
+
declare function provideRuntimeContext(context: Partial<AppRuntimeContext>): EnvironmentProviders;
|
|
207
|
+
|
|
208
|
+
declare class RuntimeService {
|
|
209
|
+
private readonly initialContext;
|
|
210
|
+
private readonly contextState;
|
|
211
|
+
readonly context: _angular_core.Signal<AppRuntimeContext>;
|
|
212
|
+
readonly host: _angular_core.Signal<platform_core_ng.AppRuntimeHost>;
|
|
213
|
+
readonly appCode: _angular_core.Signal<string>;
|
|
214
|
+
readonly permissions: _angular_core.Signal<readonly string[]>;
|
|
215
|
+
readonly permissionSet: _angular_core.Signal<Set<string>>;
|
|
216
|
+
readonly isMainHost: _angular_core.Signal<boolean>;
|
|
217
|
+
readonly isStandalone: _angular_core.Signal<boolean>;
|
|
218
|
+
setContext(context: Partial<AppRuntimeContext>): void;
|
|
219
|
+
setPermissions(permissions: readonly string[]): void;
|
|
220
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RuntimeService, never>;
|
|
221
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<RuntimeService>;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
type PermissionInput = string | readonly string[];
|
|
225
|
+
type OptionalPermissionInput = PermissionInput | null | undefined;
|
|
226
|
+
declare class PermissionService {
|
|
227
|
+
private readonly runtime;
|
|
228
|
+
readonly permissions: _angular_core.Signal<readonly string[]>;
|
|
229
|
+
has(permission: string): boolean;
|
|
230
|
+
hasPermission(permissions: OptionalPermissionInput): boolean;
|
|
231
|
+
hasAny(permissions: PermissionInput): boolean;
|
|
232
|
+
hasAll(permissions: PermissionInput): boolean;
|
|
233
|
+
setPermissions(permissions: readonly string[]): void;
|
|
234
|
+
private normalize;
|
|
235
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PermissionService, never>;
|
|
236
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<PermissionService>;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
type RequiredPermissions = PermissionInput | null | undefined;
|
|
240
|
+
declare class HasPermissionDirective {
|
|
241
|
+
private readonly elementRef;
|
|
242
|
+
private readonly renderer;
|
|
243
|
+
private readonly permissionService;
|
|
244
|
+
readonly hasPermission: _angular_core.InputSignal<RequiredPermissions>;
|
|
245
|
+
readonly vHasPermission: _angular_core.InputSignal<RequiredPermissions>;
|
|
246
|
+
readonly vHasPermissionKebab: _angular_core.InputSignal<RequiredPermissions>;
|
|
247
|
+
constructor();
|
|
248
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HasPermissionDirective, never>;
|
|
249
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<HasPermissionDirective, "[hasPermission],[vHasPermission],[v-has-permission]", never, { "hasPermission": { "alias": "hasPermission"; "required": false; "isSignal": true; }; "vHasPermission": { "alias": "vHasPermission"; "required": false; "isSignal": true; }; "vHasPermissionKebab": { "alias": "v-has-permission"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* 是否正在加载
|
|
254
|
+
* @author Chen Yu
|
|
255
|
+
* @version 1.0.0
|
|
256
|
+
*/
|
|
257
|
+
declare const isLoading: _angular_core.Signal<boolean>;
|
|
258
|
+
/**
|
|
259
|
+
* @description 每个请求开始 -> 计数 +1
|
|
260
|
+
* @author Chen Yu
|
|
261
|
+
* @version 1.0.0
|
|
262
|
+
*/
|
|
263
|
+
declare function increaseLoading(): void;
|
|
264
|
+
/**
|
|
265
|
+
* @description 每个请求结束 -> 计数 -1
|
|
266
|
+
* @author Chen Yu
|
|
267
|
+
* @version 1.0.0
|
|
268
|
+
*/
|
|
269
|
+
declare function decreaseLoading(): void;
|
|
270
|
+
|
|
271
|
+
declare class HttpConfig {
|
|
272
|
+
baseUrl: string;
|
|
273
|
+
clientId: string | null;
|
|
274
|
+
constructor(appBaseApi?: string, clientId?: string | null);
|
|
275
|
+
}
|
|
276
|
+
declare const HTTP_CONFIG: InjectionToken<HttpConfig>;
|
|
277
|
+
/**
|
|
278
|
+
* 设置请求参数
|
|
279
|
+
* @param httpConfig
|
|
280
|
+
*/
|
|
281
|
+
declare function provideHttpConfig(httpConfig: HttpConfig): {
|
|
282
|
+
provide: InjectionToken<HttpConfig>;
|
|
283
|
+
useValue: {
|
|
284
|
+
baseUrl: string;
|
|
285
|
+
clientId: string;
|
|
286
|
+
};
|
|
287
|
+
};
|
|
288
|
+
type HttpSuccessMessageMethod = 'POST' | 'PUT' | 'PATCH' | 'DELETE';
|
|
289
|
+
interface HttpSuccessMessageOptions {
|
|
290
|
+
message?: string;
|
|
291
|
+
title?: string;
|
|
292
|
+
enabled?: boolean;
|
|
293
|
+
}
|
|
294
|
+
type HttpSuccessMessageInput = string | false | HttpSuccessMessageOptions;
|
|
295
|
+
interface HttpSuccessMessageConfig {
|
|
296
|
+
enabled: boolean;
|
|
297
|
+
methods: readonly HttpSuccessMessageMethod[];
|
|
298
|
+
messages: Readonly<Record<HttpSuccessMessageMethod, string>>;
|
|
299
|
+
}
|
|
300
|
+
interface HttpSuccessMessageConfigInput {
|
|
301
|
+
enabled?: boolean;
|
|
302
|
+
methods?: readonly HttpSuccessMessageMethod[];
|
|
303
|
+
messages?: Partial<Record<HttpSuccessMessageMethod, string>>;
|
|
304
|
+
}
|
|
305
|
+
declare const HTTP_SUCCESS_MESSAGE: HttpContextToken<HttpSuccessMessageInput>;
|
|
306
|
+
declare function withHttpSuccessMessage(message?: HttpSuccessMessageInput, context?: HttpContext): HttpContext;
|
|
307
|
+
declare function withoutHttpSuccessMessage(context?: HttpContext): HttpContext;
|
|
308
|
+
interface HttpResponseInterceptorConfig {
|
|
309
|
+
timeoutMs: number;
|
|
310
|
+
minResponseDelayMs: number;
|
|
311
|
+
logErrors: boolean;
|
|
312
|
+
logRequestHeaders: boolean;
|
|
313
|
+
logRequestBody: boolean;
|
|
314
|
+
logResponseBody: boolean;
|
|
315
|
+
redactedValue: string;
|
|
316
|
+
sensitiveHeaderNames: readonly string[];
|
|
317
|
+
sensitiveBodyKeys: readonly string[];
|
|
318
|
+
successMessage: HttpSuccessMessageConfig;
|
|
319
|
+
}
|
|
320
|
+
interface HttpResponseInterceptorConfigInput extends Partial<Omit<HttpResponseInterceptorConfig, 'successMessage'>> {
|
|
321
|
+
successMessage?: HttpSuccessMessageConfigInput;
|
|
322
|
+
}
|
|
323
|
+
declare const DEFAULT_HTTP_SUCCESS_MESSAGES: Readonly<Record<HttpSuccessMessageMethod, string>>;
|
|
324
|
+
declare const DEFAULT_HTTP_RESPONSE_INTERCEPTOR_CONFIG: HttpResponseInterceptorConfig;
|
|
325
|
+
declare const HTTP_RESPONSE_INTERCEPTOR_CONFIG: InjectionToken<HttpResponseInterceptorConfig>;
|
|
326
|
+
declare function provideHttpResponseInterceptorConfig(config: HttpResponseInterceptorConfigInput): Provider;
|
|
327
|
+
|
|
328
|
+
/**
|
|
329
|
+
* HTTP认证Token相关的类型和注入令牌定义
|
|
330
|
+
* 用于在Angular应用中提供和获取认证Token
|
|
331
|
+
*/
|
|
332
|
+
|
|
333
|
+
/**
|
|
334
|
+
* 认证Token获取函数类型
|
|
335
|
+
* @returns 返回认证Token字符串,或者null(如果没有Token)
|
|
336
|
+
*/
|
|
337
|
+
type HttpAuthTokenGetter = () => string | null;
|
|
338
|
+
/**
|
|
339
|
+
* HTTP认证Token获取器的注入令牌
|
|
340
|
+
* 用于在应用中注入Token获取函数
|
|
341
|
+
*/
|
|
342
|
+
declare const HTTP_AUTH_TOKEN_GETTER: InjectionToken<HttpAuthTokenGetter>;
|
|
343
|
+
/**
|
|
344
|
+
* 提供HTTP认证Token获取器的函数
|
|
345
|
+
* @param getterFactory - 用于创建Token获取函数的工厂函数
|
|
346
|
+
* @returns 包含提供者配置的对象
|
|
347
|
+
*/
|
|
348
|
+
declare function provideHttpAuthTokenGetter(getterFactory: () => HttpAuthTokenGetter): {
|
|
349
|
+
provide: InjectionToken<HttpAuthTokenGetter>;
|
|
350
|
+
useFactory: () => HttpAuthTokenGetter;
|
|
351
|
+
};
|
|
352
|
+
|
|
353
|
+
type HttpUnauthorizedHandler = () => void | Promise<void>;
|
|
354
|
+
declare const HTTP_UNAUTHORIZED_HANDLER: InjectionToken<HttpUnauthorizedHandler>;
|
|
355
|
+
declare function provideHttpUnauthorizedHandler(handlerFactory: () => HttpUnauthorizedHandler): {
|
|
356
|
+
provide: InjectionToken<HttpUnauthorizedHandler>;
|
|
357
|
+
useFactory: () => HttpUnauthorizedHandler;
|
|
358
|
+
};
|
|
359
|
+
|
|
360
|
+
/**
|
|
361
|
+
* 消息服务
|
|
362
|
+
*/
|
|
363
|
+
interface IMessageService {
|
|
364
|
+
error(message: string, title?: string): unknown;
|
|
365
|
+
success?(message: string, title?: string): unknown;
|
|
366
|
+
}
|
|
367
|
+
/**
|
|
368
|
+
* 消息提示key
|
|
369
|
+
*/
|
|
370
|
+
declare const MESSAGE_SERVICE: InjectionToken<IMessageService>;
|
|
371
|
+
/**
|
|
372
|
+
* 为 platform-core-ng 提供消息服务的适配器。
|
|
373
|
+
*
|
|
374
|
+
* 将业务项目中的 MessageService 绑定到库内部使用的 MESSAGE_SERVICE 注入 Token,
|
|
375
|
+
* 以便在全局错误处理、HTTP 拦截器等场景中复用业务侧的消息提示实现。
|
|
376
|
+
*
|
|
377
|
+
* 该方法使用 useExisting,不会创建新的实例,而是复用已注册的 MessageService 单例。
|
|
378
|
+
*
|
|
379
|
+
* @param messageService 业务项目中实现了 IMessageService 的 Angular 服务类
|
|
380
|
+
*/
|
|
381
|
+
declare function provideIMessageService(messageService: Type<IMessageService>): {
|
|
382
|
+
provide: InjectionToken<IMessageService>;
|
|
383
|
+
useExisting: Type<IMessageService>;
|
|
384
|
+
};
|
|
385
|
+
|
|
386
|
+
/**
|
|
387
|
+
* Shell配置相关的类型定义和工具函数
|
|
388
|
+
* 用于配置应用的整体布局和界面元素
|
|
389
|
+
*/
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* 品牌配置接口
|
|
393
|
+
* 用于设置应用的品牌信息
|
|
394
|
+
*/
|
|
395
|
+
interface ShellBrandConfig {
|
|
396
|
+
/** 品牌标题 */
|
|
397
|
+
title: string;
|
|
398
|
+
}
|
|
399
|
+
/**
|
|
400
|
+
* 搜索分类接口
|
|
401
|
+
* 用于定义搜索功能中的分类选项
|
|
402
|
+
*/
|
|
403
|
+
interface ShellSearchCategory {
|
|
404
|
+
/** 分类ID */
|
|
405
|
+
id: string;
|
|
406
|
+
/** 分类标签 */
|
|
407
|
+
label: string;
|
|
408
|
+
}
|
|
409
|
+
/**
|
|
410
|
+
* 搜索结果接口
|
|
411
|
+
* 用于定义搜索功能中的结果项
|
|
412
|
+
*/
|
|
413
|
+
interface ShellSearchResult {
|
|
414
|
+
/** 结果标题 */
|
|
415
|
+
title: string;
|
|
416
|
+
/** 结果元数据 */
|
|
417
|
+
meta: string;
|
|
418
|
+
/** 结果所有者 */
|
|
419
|
+
owner: string;
|
|
420
|
+
}
|
|
421
|
+
/**
|
|
422
|
+
* 头部操作按钮配置接口
|
|
423
|
+
* 用于定义头部的操作按钮
|
|
424
|
+
*/
|
|
425
|
+
interface ShellHeaderActionConfig {
|
|
426
|
+
/** 按钮标签 */
|
|
427
|
+
label: string;
|
|
428
|
+
/** 无障碍标签 */
|
|
429
|
+
ariaLabel?: string;
|
|
430
|
+
/** 点击回调函数 */
|
|
431
|
+
onClick: () => void;
|
|
432
|
+
}
|
|
433
|
+
/**
|
|
434
|
+
* 头部工具项类型
|
|
435
|
+
* 定义头部工具栏中项目的类型
|
|
436
|
+
*/
|
|
437
|
+
type ShellHeaderUtilityKind = 'language' | 'theme' | 'notifications' | 'fullscreen' | 'custom';
|
|
438
|
+
/**
|
|
439
|
+
* 头部语言选项接口
|
|
440
|
+
* 用于定义语言选择功能中的语言选项
|
|
441
|
+
*/
|
|
442
|
+
interface ShellHeaderLanguageOption {
|
|
443
|
+
/** 语言代码 */
|
|
444
|
+
code: string;
|
|
445
|
+
/** 语言标签 */
|
|
446
|
+
label: string;
|
|
447
|
+
}
|
|
448
|
+
/**
|
|
449
|
+
* 头部通知项接口
|
|
450
|
+
* 用于定义通知功能中的通知项
|
|
451
|
+
*/
|
|
452
|
+
interface ShellHeaderNotificationItem {
|
|
453
|
+
/** 通知标题 */
|
|
454
|
+
title: string;
|
|
455
|
+
/** 通知描述 */
|
|
456
|
+
description: string;
|
|
457
|
+
/** 通知时间 */
|
|
458
|
+
time: string;
|
|
459
|
+
}
|
|
460
|
+
/**
|
|
461
|
+
* 头部工具项接口
|
|
462
|
+
* 用于定义头部工具栏中的项目
|
|
463
|
+
*/
|
|
464
|
+
interface ShellHeaderUtilityItem {
|
|
465
|
+
/** 工具项类型 */
|
|
466
|
+
kind?: ShellHeaderUtilityKind;
|
|
467
|
+
/** 图标文本 */
|
|
468
|
+
iconText: string;
|
|
469
|
+
/** 图标名称 */
|
|
470
|
+
iconName?: string;
|
|
471
|
+
/** 无障碍标签 */
|
|
472
|
+
ariaLabel: string;
|
|
473
|
+
/** 徽章文本或数字 */
|
|
474
|
+
badge?: string | number;
|
|
475
|
+
/** 点击回调函数 */
|
|
476
|
+
onClick?: () => void;
|
|
477
|
+
}
|
|
478
|
+
/**
|
|
479
|
+
* 头部配置接口
|
|
480
|
+
* 用于配置应用头部的各种功能和元素
|
|
481
|
+
*/
|
|
482
|
+
interface ShellHeaderConfig {
|
|
483
|
+
/** 触发搜索的标签 */
|
|
484
|
+
triggerLabel: string;
|
|
485
|
+
/** 搜索对话框标签 */
|
|
486
|
+
dialogLabel: string;
|
|
487
|
+
/** 搜索输入框占位符 */
|
|
488
|
+
inputPlaceholder: string;
|
|
489
|
+
/** 关闭按钮标签 */
|
|
490
|
+
closeLabel: string;
|
|
491
|
+
/** 搜索分类列表 */
|
|
492
|
+
categories: ShellSearchCategory[];
|
|
493
|
+
/** 搜索结果列表 */
|
|
494
|
+
results: ShellSearchResult[];
|
|
495
|
+
/** 语言选项列表 */
|
|
496
|
+
languages?: ShellHeaderLanguageOption[];
|
|
497
|
+
/** 通知列表 */
|
|
498
|
+
notifications?: ShellHeaderNotificationItem[];
|
|
499
|
+
/** 状态文本函数 */
|
|
500
|
+
statusText?: () => string;
|
|
501
|
+
/** 个人资料徽章文本函数 */
|
|
502
|
+
profileBadgeText?: () => string;
|
|
503
|
+
/** 工具项列表 */
|
|
504
|
+
utilityItems?: ShellHeaderUtilityItem[];
|
|
505
|
+
/** 操作按钮配置 */
|
|
506
|
+
actionButton?: ShellHeaderActionConfig;
|
|
507
|
+
}
|
|
508
|
+
/**
|
|
509
|
+
* 导航项接口
|
|
510
|
+
* 用于定义侧边栏中的导航项
|
|
511
|
+
*/
|
|
512
|
+
interface ShellNavItem {
|
|
513
|
+
/** 路由路径 */
|
|
514
|
+
route: string;
|
|
515
|
+
/** 图标CSS类 */
|
|
516
|
+
iconClass?: string;
|
|
517
|
+
/** 图标名称 */
|
|
518
|
+
iconName?: string;
|
|
519
|
+
/** 导航标签 */
|
|
520
|
+
label: string;
|
|
521
|
+
}
|
|
522
|
+
/**
|
|
523
|
+
* 侧边栏配置接口
|
|
524
|
+
* 用于配置应用侧边栏的各种元素
|
|
525
|
+
*/
|
|
526
|
+
interface ShellSidebarConfig {
|
|
527
|
+
/** 头像图片源 */
|
|
528
|
+
avatarSrc?: string;
|
|
529
|
+
/** 头像替代文本 */
|
|
530
|
+
avatarAlt?: string;
|
|
531
|
+
/** 导航项列表 */
|
|
532
|
+
items: ShellNavItem[];
|
|
533
|
+
/** 设置按钮无障碍标签 */
|
|
534
|
+
settingsAriaLabel?: string;
|
|
535
|
+
}
|
|
536
|
+
/**
|
|
537
|
+
* 头部变体类型
|
|
538
|
+
* 定义头部的不同样式变体
|
|
539
|
+
*/
|
|
540
|
+
type ShellHeaderVariant = 'standard' | 'minimal' | 'top-nav';
|
|
541
|
+
/**
|
|
542
|
+
* 底部变体类型
|
|
543
|
+
* 定义底部的不同样式变体
|
|
544
|
+
*/
|
|
545
|
+
type ShellFooterVariant = 'standard' | 'empty';
|
|
546
|
+
/**
|
|
547
|
+
* 侧边栏变体类型
|
|
548
|
+
* 定义侧边栏的不同样式变体
|
|
549
|
+
*/
|
|
550
|
+
type ShellSidebarVariant = 'standard' | 'none';
|
|
551
|
+
/**
|
|
552
|
+
* 布局模式类型
|
|
553
|
+
* 定义应用的整体布局模式
|
|
554
|
+
*/
|
|
555
|
+
type ShellLayoutMode = 'sidebar-header' | 'top-nav' | 'workbench';
|
|
556
|
+
/**
|
|
557
|
+
* 基础Shell配置接口
|
|
558
|
+
* 包含所有布局模式共用的配置项
|
|
559
|
+
*/
|
|
560
|
+
interface BaseShellConfig {
|
|
561
|
+
/** 品牌配置 */
|
|
562
|
+
brand: ShellBrandConfig;
|
|
563
|
+
/** 头部配置 */
|
|
564
|
+
header: ShellHeaderConfig;
|
|
565
|
+
/** 侧边栏配置 */
|
|
566
|
+
sidebar: ShellSidebarConfig;
|
|
567
|
+
}
|
|
568
|
+
/**
|
|
569
|
+
* 侧边栏头部布局的部分配置接口
|
|
570
|
+
* 用于配置侧边栏头部布局模式下的各个部分
|
|
571
|
+
*/
|
|
572
|
+
interface SidebarHeaderPartConfig {
|
|
573
|
+
/** 头部变体 */
|
|
574
|
+
header?: 'standard' | 'minimal' | 'top-nav';
|
|
575
|
+
/** 底部变体 */
|
|
576
|
+
footer?: 'standard' | 'empty';
|
|
577
|
+
/** 侧边栏变体 */
|
|
578
|
+
sidebar?: 'standard' | 'none';
|
|
579
|
+
}
|
|
580
|
+
/**
|
|
581
|
+
* 顶部导航布局的部分配置接口
|
|
582
|
+
* 用于配置顶部导航布局模式下的各个部分
|
|
583
|
+
*/
|
|
584
|
+
interface TopNavPartConfig {
|
|
585
|
+
/** 头部变体 */
|
|
586
|
+
header?: 'top-nav' | 'minimal' | 'standard';
|
|
587
|
+
/** 底部变体 */
|
|
588
|
+
footer?: 'standard' | 'empty';
|
|
589
|
+
/** 侧边栏变体 */
|
|
590
|
+
sidebar?: 'none';
|
|
591
|
+
}
|
|
592
|
+
/**
|
|
593
|
+
* 工作台布局的部分配置接口
|
|
594
|
+
* 用于配置工作台布局模式下的各个部分
|
|
595
|
+
*/
|
|
596
|
+
interface WorkbenchPartConfig {
|
|
597
|
+
/** 头部变体 */
|
|
598
|
+
header?: 'minimal';
|
|
599
|
+
/** 底部变体 */
|
|
600
|
+
footer?: 'empty';
|
|
601
|
+
/** 侧边栏变体 */
|
|
602
|
+
sidebar?: 'none';
|
|
603
|
+
}
|
|
604
|
+
/**
|
|
605
|
+
* 侧边栏头部布局的Shell配置接口
|
|
606
|
+
* 用于配置侧边栏头部布局模式的完整配置
|
|
607
|
+
*/
|
|
608
|
+
interface SidebarHeaderShellConfig extends BaseShellConfig {
|
|
609
|
+
/** 布局模式 */
|
|
610
|
+
layoutMode: 'sidebar-header';
|
|
611
|
+
/** 部分配置 */
|
|
612
|
+
parts?: SidebarHeaderPartConfig;
|
|
613
|
+
}
|
|
614
|
+
/**
|
|
615
|
+
* 顶部导航布局的Shell配置接口
|
|
616
|
+
* 用于配置顶部导航布局模式的完整配置
|
|
617
|
+
*/
|
|
618
|
+
interface TopNavShellConfig extends BaseShellConfig {
|
|
619
|
+
/** 布局模式 */
|
|
620
|
+
layoutMode: 'top-nav';
|
|
621
|
+
/** 部分配置 */
|
|
622
|
+
parts?: TopNavPartConfig;
|
|
623
|
+
}
|
|
624
|
+
/**
|
|
625
|
+
* 工作台布局的Shell配置接口
|
|
626
|
+
* 用于配置工作台布局模式的完整配置
|
|
627
|
+
*/
|
|
628
|
+
interface WorkbenchShellConfig extends BaseShellConfig {
|
|
629
|
+
/** 布局模式 */
|
|
630
|
+
layoutMode: 'workbench';
|
|
631
|
+
/** 部分配置 */
|
|
632
|
+
parts?: WorkbenchPartConfig;
|
|
633
|
+
}
|
|
634
|
+
/**
|
|
635
|
+
* Shell配置类型
|
|
636
|
+
* 包含所有布局模式的配置类型
|
|
637
|
+
*/
|
|
638
|
+
type ShellConfig = SidebarHeaderShellConfig | TopNavShellConfig | WorkbenchShellConfig;
|
|
639
|
+
/**
|
|
640
|
+
* 解析后的Shell部分配置接口
|
|
641
|
+
* 用于表示最终应用的布局部分配置
|
|
642
|
+
*/
|
|
643
|
+
interface ResolvedShellPartConfig {
|
|
644
|
+
/** 头部变体 */
|
|
645
|
+
header: ShellHeaderVariant;
|
|
646
|
+
/** 底部变体 */
|
|
647
|
+
footer: ShellFooterVariant;
|
|
648
|
+
/** 侧边栏变体 */
|
|
649
|
+
sidebar: ShellSidebarVariant;
|
|
650
|
+
}
|
|
651
|
+
/**
|
|
652
|
+
* Shell配置的注入令牌
|
|
653
|
+
* 用于在应用中注入和访问Shell配置
|
|
654
|
+
*/
|
|
655
|
+
declare const SHELL_CONFIG: InjectionToken<ShellConfig>;
|
|
656
|
+
/**
|
|
657
|
+
* 提供Shell配置的函数
|
|
658
|
+
* @param config - Shell配置对象
|
|
659
|
+
* @returns 包含提供者配置的对象
|
|
660
|
+
*/
|
|
661
|
+
declare function provideShellConfig(config: ShellConfig): Provider;
|
|
662
|
+
/**
|
|
663
|
+
* 通过工厂函数提供Shell配置的函数
|
|
664
|
+
* @param factory - 用于创建Shell配置的工厂函数
|
|
665
|
+
* @returns 包含提供者配置的对象
|
|
666
|
+
*/
|
|
667
|
+
declare function provideShellConfigFactory(factory: () => ShellConfig): Provider;
|
|
668
|
+
/**
|
|
669
|
+
* 注入Shell配置的函数
|
|
670
|
+
* @returns Shell配置对象
|
|
671
|
+
*/
|
|
672
|
+
declare function injectShellConfig(): ShellConfig;
|
|
673
|
+
/**
|
|
674
|
+
* 解析Shell部分配置的函数
|
|
675
|
+
* 结合默认配置和用户配置,生成最终的部分配置
|
|
676
|
+
* @param config - Shell配置对象
|
|
677
|
+
* @returns 解析后的Shell部分配置
|
|
678
|
+
*/
|
|
679
|
+
declare function resolveShellParts(config: ShellConfig): ResolvedShellPartConfig;
|
|
680
|
+
|
|
681
|
+
/**
|
|
682
|
+
* Shell布局组件
|
|
683
|
+
* 用于根据配置的布局模式渲染对应的布局组件
|
|
684
|
+
*/
|
|
685
|
+
declare class ShellLayout {
|
|
686
|
+
/**
|
|
687
|
+
* 注入shell配置
|
|
688
|
+
*/
|
|
689
|
+
private readonly shellConfig;
|
|
690
|
+
/**
|
|
691
|
+
* 计算属性:获取布局模式
|
|
692
|
+
* 如果配置中未指定布局模式,则默认为'sidebar-header'
|
|
693
|
+
*/
|
|
694
|
+
protected readonly layoutMode: _angular_core.Signal<"top-nav" | "sidebar-header" | "workbench">;
|
|
695
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShellLayout, never>;
|
|
696
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShellLayout, "s-shell-layout", never, {}, {}, never, never, true, never>;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
declare class SidebarHeaderLayout {
|
|
700
|
+
private readonly shellConfig;
|
|
701
|
+
protected readonly parts: _angular_core.Signal<platform_core_ng.ResolvedShellPartConfig>;
|
|
702
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarHeaderLayout, never>;
|
|
703
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarHeaderLayout, "p-sidebar-header-layout", never, {}, {}, never, never, true, never>;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
declare class TopNavLayout {
|
|
707
|
+
private readonly shellConfig;
|
|
708
|
+
protected readonly parts: _angular_core.Signal<platform_core_ng.ResolvedShellPartConfig>;
|
|
709
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TopNavLayout, never>;
|
|
710
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TopNavLayout, "p-top-nav-layout", never, {}, {}, never, never, true, never>;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
declare class AppShell {
|
|
714
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AppShell, never>;
|
|
715
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AppShell, "s-shell", never, {}, {}, never, ["[sShellHeader]", "[sShellSidebar]", "[sShellContent]", "[sShellFooter]"], true, never>;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
declare class Content {
|
|
719
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Content, never>;
|
|
720
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Content, "s-content", never, {}, {}, never, never, true, never>;
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
declare class AppFooter {
|
|
724
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AppFooter, never>;
|
|
725
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AppFooter, "p-footer", never, {}, {}, never, ["*"], true, never>;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
interface NotificationCenterItem {
|
|
729
|
+
id?: string;
|
|
730
|
+
title: string;
|
|
731
|
+
description?: string;
|
|
732
|
+
time?: string;
|
|
733
|
+
unread?: boolean;
|
|
734
|
+
}
|
|
735
|
+
declare class NotificationCenter {
|
|
736
|
+
readonly title: _angular_core.InputSignal<string>;
|
|
737
|
+
readonly items: _angular_core.InputSignal<NotificationCenterItem[]>;
|
|
738
|
+
readonly emptyText: _angular_core.InputSignal<string>;
|
|
739
|
+
readonly showActions: _angular_core.InputSignal<boolean>;
|
|
740
|
+
readonly showMarkAll: _angular_core.InputSignal<boolean>;
|
|
741
|
+
readonly itemSelected: _angular_core.OutputEmitterRef<NotificationCenterItem>;
|
|
742
|
+
readonly clearAll: _angular_core.OutputEmitterRef<void>;
|
|
743
|
+
readonly markAllAsRead: _angular_core.OutputEmitterRef<void>;
|
|
744
|
+
protected onSelect(item: NotificationCenterItem): void;
|
|
745
|
+
protected onMarkAll(): void;
|
|
746
|
+
protected onClear(): void;
|
|
747
|
+
protected trackByItem: (_index: number, item: NotificationCenterItem) => string;
|
|
748
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NotificationCenter, never>;
|
|
749
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NotificationCenter, "s-notification-center", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; "showActions": { "alias": "showActions"; "required": false; "isSignal": true; }; "showMarkAll": { "alias": "showMarkAll"; "required": false; "isSignal": true; }; }, { "itemSelected": "itemSelected"; "clearAll": "clearAll"; "markAllAsRead": "markAllAsRead"; }, never, never, true, never>;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
type HeaderNotificationItem = ShellHeaderNotificationItem & NotificationCenterItem;
|
|
753
|
+
declare class AppHeader {
|
|
754
|
+
private readonly shellConfig;
|
|
755
|
+
private readonly document;
|
|
756
|
+
protected readonly brand: platform_core_ng.ShellBrandConfig;
|
|
757
|
+
protected readonly headerConfig: platform_core_ng.ShellHeaderConfig;
|
|
758
|
+
protected readonly utilityItems: ShellHeaderUtilityItem[];
|
|
759
|
+
protected readonly languageOptions: ShellHeaderLanguageOption[];
|
|
760
|
+
protected readonly notificationItems: _angular_core.WritableSignal<HeaderNotificationItem[]>;
|
|
761
|
+
protected readonly filteredNotifications: _angular_core.Signal<HeaderNotificationItem[]>;
|
|
762
|
+
protected readonly unreadNotificationCount: _angular_core.Signal<number>;
|
|
763
|
+
protected readonly isSearchOpen: _angular_core.WritableSignal<boolean>;
|
|
764
|
+
protected readonly searchKeyword: _angular_core.WritableSignal<string>;
|
|
765
|
+
protected readonly activeCategory: _angular_core.WritableSignal<string>;
|
|
766
|
+
protected readonly openUtilityPanel: _angular_core.WritableSignal<"language" | "notifications">;
|
|
767
|
+
protected readonly isMobileUtilityMenuOpen: _angular_core.WritableSignal<boolean>;
|
|
768
|
+
protected readonly currentLanguage: _angular_core.WritableSignal<string>;
|
|
769
|
+
protected readonly isDarkTheme: _angular_core.WritableSignal<boolean>;
|
|
770
|
+
protected readonly isFullscreen: _angular_core.WritableSignal<boolean>;
|
|
771
|
+
protected readonly searchIcon: LucideIconData;
|
|
772
|
+
protected readonly closeIcon: LucideIconData;
|
|
773
|
+
protected readonly moreIcon: LucideIconData;
|
|
774
|
+
protected readonly utilityIcons: Record<string, LucideIconData>;
|
|
775
|
+
constructor();
|
|
776
|
+
protected openSearchDialog(): void;
|
|
777
|
+
protected closeSearchDialog(): void;
|
|
778
|
+
protected setCategory(categoryId: string): void;
|
|
779
|
+
protected onSearchInput(event: Event): void;
|
|
780
|
+
protected onEscape(): void;
|
|
781
|
+
protected onFullscreenChange(): void;
|
|
782
|
+
protected runHeaderAction(): void;
|
|
783
|
+
protected runUtilityAction(item: ShellHeaderUtilityItem): void;
|
|
784
|
+
protected toggleMobileUtilityMenu(): void;
|
|
785
|
+
protected runMobileUtilityAction(item: ShellHeaderUtilityItem): void;
|
|
786
|
+
protected headerStatusText(): string | null;
|
|
787
|
+
protected profileBadge(value: string): string;
|
|
788
|
+
protected utilityButtonText(item: ShellHeaderUtilityItem): string;
|
|
789
|
+
protected utilityButtonIcon(item: ShellHeaderUtilityItem): LucideIconData | null;
|
|
790
|
+
protected utilityBadge(item: ShellHeaderUtilityItem): string | number | undefined;
|
|
791
|
+
protected isUtilityPanelOpen(panel: 'language' | 'notifications'): boolean;
|
|
792
|
+
protected selectLanguage(code: string): void;
|
|
793
|
+
protected onNotificationSelect(item: NotificationCenterItem): void;
|
|
794
|
+
protected onNotificationMarkAll(): void;
|
|
795
|
+
protected onNotificationClear(): void;
|
|
796
|
+
private toggleUtilityPanel;
|
|
797
|
+
private toggleTheme;
|
|
798
|
+
private toggleFullscreen;
|
|
799
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AppHeader, never>;
|
|
800
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AppHeader, "p-header", never, {}, {}, never, never, true, never>;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
/**
|
|
804
|
+
* 侧边栏组件
|
|
805
|
+
* 实现了导航项的显示、图标管理和首字母获取功能
|
|
806
|
+
*/
|
|
807
|
+
declare class Aside {
|
|
808
|
+
/**
|
|
809
|
+
* 侧边栏配置
|
|
810
|
+
* 从shell配置中获取
|
|
811
|
+
*/
|
|
812
|
+
protected readonly sidebarConfig: platform_core_ng.ShellSidebarConfig;
|
|
813
|
+
/**
|
|
814
|
+
* 设置图标
|
|
815
|
+
*/
|
|
816
|
+
protected readonly settingsIcon: LucideIconData;
|
|
817
|
+
/**
|
|
818
|
+
* 导航图标映射
|
|
819
|
+
* 用于根据图标名称获取对应的Lucide图标组件
|
|
820
|
+
*/
|
|
821
|
+
private readonly navIcons;
|
|
822
|
+
/**
|
|
823
|
+
* 获取导航项标签的首字母
|
|
824
|
+
* @param label - 导航项标签
|
|
825
|
+
* @returns 首字母,若标签为空则返回'?'
|
|
826
|
+
*/
|
|
827
|
+
protected navInitial(label: string): string;
|
|
828
|
+
/**
|
|
829
|
+
* 获取导航项的图标
|
|
830
|
+
* @param iconName - 图标名称
|
|
831
|
+
* @returns 对应的Lucide图标组件,若未找到则返回null
|
|
832
|
+
*/
|
|
833
|
+
protected navIcon(iconName?: string): LucideIconData | null;
|
|
834
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Aside, never>;
|
|
835
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Aside, "p-aside", never, {}, {}, never, never, true, never>;
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
declare class EmptyFooter {
|
|
839
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EmptyFooter, never>;
|
|
840
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EmptyFooter, "p-empty-footer", never, {}, {}, never, never, true, never>;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
declare class MinimalHeader {
|
|
844
|
+
protected readonly brand: platform_core_ng.ShellBrandConfig;
|
|
845
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MinimalHeader, never>;
|
|
846
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MinimalHeader, "p-minimal-header", never, {}, {}, never, never, true, never>;
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
/**
|
|
850
|
+
* 顶部导航栏头部组件
|
|
851
|
+
* 实现了搜索功能、分类选择和键盘事件处理
|
|
852
|
+
*/
|
|
853
|
+
declare class TopNavHeader {
|
|
854
|
+
/**
|
|
855
|
+
* 注入shell配置
|
|
856
|
+
*/
|
|
857
|
+
private readonly shellConfig;
|
|
858
|
+
/**
|
|
859
|
+
* 搜索对话框是否打开
|
|
860
|
+
*/
|
|
861
|
+
protected isSearchOpen: boolean;
|
|
862
|
+
/**
|
|
863
|
+
* 搜索关键词
|
|
864
|
+
*/
|
|
865
|
+
protected searchKeyword: string;
|
|
866
|
+
/**
|
|
867
|
+
* 当前激活的分类ID
|
|
868
|
+
* 默认使用配置中的第一个分类,如果没有则使用'all'
|
|
869
|
+
*/
|
|
870
|
+
protected activeCategory: string;
|
|
871
|
+
/**
|
|
872
|
+
* 品牌配置
|
|
873
|
+
*/
|
|
874
|
+
protected readonly brand: platform_core_ng.ShellBrandConfig;
|
|
875
|
+
/**
|
|
876
|
+
* 头部配置
|
|
877
|
+
*/
|
|
878
|
+
protected readonly headerConfig: platform_core_ng.ShellHeaderConfig;
|
|
879
|
+
/**
|
|
880
|
+
* 导航菜单项
|
|
881
|
+
*/
|
|
882
|
+
protected readonly navItems: platform_core_ng.ShellNavItem[];
|
|
883
|
+
/**
|
|
884
|
+
* 打开搜索对话框
|
|
885
|
+
*/
|
|
886
|
+
protected openSearchDialog(): void;
|
|
887
|
+
/**
|
|
888
|
+
* 关闭搜索对话框
|
|
889
|
+
*/
|
|
890
|
+
protected closeSearchDialog(): void;
|
|
891
|
+
/**
|
|
892
|
+
* 设置激活的分类
|
|
893
|
+
* @param categoryId - 分类ID
|
|
894
|
+
*/
|
|
895
|
+
protected setCategory(categoryId: string): void;
|
|
896
|
+
/**
|
|
897
|
+
* 处理Escape键事件
|
|
898
|
+
* 如果搜索对话框打开,则关闭它
|
|
899
|
+
*/
|
|
900
|
+
protected onEscape(): void;
|
|
901
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TopNavHeader, never>;
|
|
902
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TopNavHeader, "p-top-nav-header", never, {}, {}, never, never, true, never>;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
declare class EmptySidebar {
|
|
906
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EmptySidebar, never>;
|
|
907
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EmptySidebar, "p-empty-sidebar", never, {}, {}, never, never, true, never>;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
/**
|
|
911
|
+
* 操作菜单项接口
|
|
912
|
+
* 定义菜单项的属性
|
|
913
|
+
*/
|
|
914
|
+
interface ActionMenuItem {
|
|
915
|
+
/** 菜单项ID */
|
|
916
|
+
id: string;
|
|
917
|
+
/** 菜单项标签文本 */
|
|
918
|
+
label: string;
|
|
919
|
+
/** 无障碍标签 */
|
|
920
|
+
ariaLabel?: string;
|
|
921
|
+
/** 菜单项色调,默认为'default',可选'danger'表示危险操作 */
|
|
922
|
+
tone?: 'default' | 'danger';
|
|
923
|
+
}
|
|
924
|
+
/**
|
|
925
|
+
* 操作菜单组件
|
|
926
|
+
* 实现了菜单的显示/隐藏、点击操作、键盘事件处理等功能
|
|
927
|
+
*/
|
|
928
|
+
declare class ActionMenuComponent {
|
|
929
|
+
/**
|
|
930
|
+
* 注入宿主元素引用
|
|
931
|
+
* 用于检测点击事件是否发生在组件外部
|
|
932
|
+
*/
|
|
933
|
+
private readonly hostElement;
|
|
934
|
+
/**
|
|
935
|
+
* 输入属性:菜单项列表
|
|
936
|
+
* 默认为空数组
|
|
937
|
+
*/
|
|
938
|
+
readonly items: _angular_core.InputSignal<readonly ActionMenuItem[]>;
|
|
939
|
+
/**
|
|
940
|
+
* 输入属性:触发按钮的无障碍标签
|
|
941
|
+
* 默认为'打开操作菜单'
|
|
942
|
+
*/
|
|
943
|
+
readonly triggerAriaLabel: _angular_core.InputSignal<string>;
|
|
944
|
+
/**
|
|
945
|
+
* 输出事件:当选择菜单项时触发
|
|
946
|
+
* 传递选中的菜单项ID
|
|
947
|
+
*/
|
|
948
|
+
readonly actionSelected: _angular_core.OutputEmitterRef<string>;
|
|
949
|
+
/**
|
|
950
|
+
* 信号:菜单是否打开
|
|
951
|
+
* 默认为false(关闭状态)
|
|
952
|
+
*/
|
|
953
|
+
protected readonly isOpen: _angular_core.WritableSignal<boolean>;
|
|
954
|
+
/**
|
|
955
|
+
* 监听文档的Escape键事件
|
|
956
|
+
* 当按下Escape键时关闭菜单
|
|
957
|
+
*/
|
|
958
|
+
protected onEscape(): void;
|
|
959
|
+
/**
|
|
960
|
+
* 监听文档的点击事件
|
|
961
|
+
* 当点击发生在组件外部时关闭菜单
|
|
962
|
+
* @param event - 点击事件对象
|
|
963
|
+
*/
|
|
964
|
+
protected onDocumentClick(event: Event): void;
|
|
965
|
+
/**
|
|
966
|
+
* 切换菜单的打开/关闭状态
|
|
967
|
+
*/
|
|
968
|
+
protected toggleMenu(): void;
|
|
969
|
+
/**
|
|
970
|
+
* 处理菜单项选择事件
|
|
971
|
+
* 关闭菜单并触发actionSelected事件
|
|
972
|
+
* @param actionId - 选中的菜单项ID
|
|
973
|
+
*/
|
|
974
|
+
protected onActionSelected(actionId: string): void;
|
|
975
|
+
/**
|
|
976
|
+
* 轨道函数,用于ngFor指令
|
|
977
|
+
* 根据菜单项ID进行跟踪,提高渲染性能
|
|
978
|
+
* @param _index - 索引(未使用)
|
|
979
|
+
* @param item - 菜单项对象
|
|
980
|
+
* @returns 菜单项ID
|
|
981
|
+
*/
|
|
982
|
+
protected trackByActionId(_index: number, item: ActionMenuItem): string;
|
|
983
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ActionMenuComponent, never>;
|
|
984
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ActionMenuComponent, "s-action-menu", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "triggerAriaLabel": { "alias": "triggerAriaLabel"; "required": false; "isSignal": true; }; }, { "actionSelected": "actionSelected"; }, never, never, true, never>;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
/**
|
|
988
|
+
* 头像形状类型
|
|
989
|
+
* square: 方形
|
|
990
|
+
* circle: 圆形
|
|
991
|
+
*/
|
|
992
|
+
type AvatarShape = 'square' | 'circle';
|
|
993
|
+
/**
|
|
994
|
+
* 头像状态类型
|
|
995
|
+
* default: 默认状态
|
|
996
|
+
* disabled: 禁用状态
|
|
997
|
+
*/
|
|
998
|
+
type AvatarStatus = 'default' | 'disabled';
|
|
999
|
+
/**
|
|
1000
|
+
* 头像指示器类型
|
|
1001
|
+
* dot: 点状指示器
|
|
1002
|
+
* count: 数字计数指示器
|
|
1003
|
+
*/
|
|
1004
|
+
type AvatarIndicatorType = 'dot' | 'count';
|
|
1005
|
+
/**
|
|
1006
|
+
* 头像组件
|
|
1007
|
+
* 支持显示图片、文本或默认图标,可配置形状、大小、状态和指示器
|
|
1008
|
+
*/
|
|
1009
|
+
declare class Avatar {
|
|
1010
|
+
/**
|
|
1011
|
+
* 输入属性:头像图片源
|
|
1012
|
+
* 默认为null,表示不使用图片
|
|
1013
|
+
*/
|
|
1014
|
+
readonly src: _angular_core.InputSignal<string>;
|
|
1015
|
+
/**
|
|
1016
|
+
* 输入属性:图片替代文本
|
|
1017
|
+
* 默认为空字符串
|
|
1018
|
+
*/
|
|
1019
|
+
readonly alt: _angular_core.InputSignal<string>;
|
|
1020
|
+
/**
|
|
1021
|
+
* 输入属性:头像文本
|
|
1022
|
+
* 当没有图片时显示,默认为空字符串
|
|
1023
|
+
*/
|
|
1024
|
+
readonly text: _angular_core.InputSignal<string>;
|
|
1025
|
+
/**
|
|
1026
|
+
* 输入属性:头像形状
|
|
1027
|
+
* 默认为'square'(方形)
|
|
1028
|
+
*/
|
|
1029
|
+
readonly shape: _angular_core.InputSignal<AvatarShape>;
|
|
1030
|
+
/**
|
|
1031
|
+
* 输入属性:头像状态
|
|
1032
|
+
* 默认为'default'(默认状态)
|
|
1033
|
+
*/
|
|
1034
|
+
readonly status: _angular_core.InputSignal<AvatarStatus>;
|
|
1035
|
+
/**
|
|
1036
|
+
* 输入属性:头像大小
|
|
1037
|
+
* 默认为48px
|
|
1038
|
+
*/
|
|
1039
|
+
readonly size: _angular_core.InputSignal<number>;
|
|
1040
|
+
/**
|
|
1041
|
+
* 输入属性:指示器值
|
|
1042
|
+
* 可以是数字或null,null表示不显示指示器
|
|
1043
|
+
*/
|
|
1044
|
+
readonly indicator: _angular_core.InputSignal<number>;
|
|
1045
|
+
/**
|
|
1046
|
+
* 输入属性:指示器类型
|
|
1047
|
+
* 默认为'count'(数字计数)
|
|
1048
|
+
*/
|
|
1049
|
+
readonly indicatorType: _angular_core.InputSignal<AvatarIndicatorType>;
|
|
1050
|
+
readonly imageError: _angular_core.OutputEmitterRef<string>;
|
|
1051
|
+
/**
|
|
1052
|
+
* 用户图标组件
|
|
1053
|
+
* 当没有图片且没有文本时显示
|
|
1054
|
+
*/
|
|
1055
|
+
protected readonly userIcon: lucide_angular.LucideIconData;
|
|
1056
|
+
/**
|
|
1057
|
+
* 记录加载失败的图片地址,避免同一个失败地址反复触发请求
|
|
1058
|
+
*/
|
|
1059
|
+
private readonly failedImageSrc;
|
|
1060
|
+
/**
|
|
1061
|
+
* 计算属性:显示文本
|
|
1062
|
+
* 取text的前两个字符,去除首尾空格
|
|
1063
|
+
*/
|
|
1064
|
+
protected readonly displayText: _angular_core.Signal<string>;
|
|
1065
|
+
/**
|
|
1066
|
+
* 计算属性:当前可显示的图片地址
|
|
1067
|
+
*/
|
|
1068
|
+
protected readonly displayImageSrc: _angular_core.Signal<string>;
|
|
1069
|
+
/**
|
|
1070
|
+
* 图片加载错误处理函数
|
|
1071
|
+
* 当图片加载失败时记录失败地址并通知外层组件
|
|
1072
|
+
*/
|
|
1073
|
+
protected onImageError(): void;
|
|
1074
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Avatar, never>;
|
|
1075
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Avatar, "s-avatar", never, { "src": { "alias": "src"; "required": false; "isSignal": true; }; "alt": { "alias": "alt"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "shape": { "alias": "shape"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "indicator": { "alias": "indicator"; "required": false; "isSignal": true; }; "indicatorType": { "alias": "indicatorType"; "required": false; "isSignal": true; }; }, { "imageError": "imageError"; }, never, never, true, never>;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
/**
|
|
1079
|
+
* 头像组项接口
|
|
1080
|
+
* 定义头像组中每个头像的属性
|
|
1081
|
+
*/
|
|
1082
|
+
interface AvatarGroupItem {
|
|
1083
|
+
/** 头像项ID */
|
|
1084
|
+
id: string;
|
|
1085
|
+
/** 头像图片源 */
|
|
1086
|
+
src?: string | null;
|
|
1087
|
+
/** 图片替代文本 */
|
|
1088
|
+
alt?: string;
|
|
1089
|
+
/** 头像文本 */
|
|
1090
|
+
text?: string;
|
|
1091
|
+
/** 头像形状 */
|
|
1092
|
+
shape?: AvatarShape;
|
|
1093
|
+
/** 头像状态 */
|
|
1094
|
+
status?: AvatarStatus;
|
|
1095
|
+
/** 指示器值 */
|
|
1096
|
+
indicator?: number | null;
|
|
1097
|
+
/** 指示器类型 */
|
|
1098
|
+
indicatorType?: AvatarIndicatorType;
|
|
1099
|
+
}
|
|
1100
|
+
/**
|
|
1101
|
+
* 头像组组件
|
|
1102
|
+
* 显示多个头像,支持限制最大显示数量,并显示隐藏的头像数量
|
|
1103
|
+
*/
|
|
1104
|
+
declare class AvatarGroup {
|
|
1105
|
+
/**
|
|
1106
|
+
* 输入属性:头像项列表
|
|
1107
|
+
* 默认为空数组
|
|
1108
|
+
*/
|
|
1109
|
+
readonly items: _angular_core.InputSignal<readonly AvatarGroupItem[]>;
|
|
1110
|
+
/**
|
|
1111
|
+
* 输入属性:头像大小
|
|
1112
|
+
* 默认为48px
|
|
1113
|
+
*/
|
|
1114
|
+
readonly size: _angular_core.InputSignal<number>;
|
|
1115
|
+
/**
|
|
1116
|
+
* 输入属性:最大显示数量
|
|
1117
|
+
* 默认为4个
|
|
1118
|
+
*/
|
|
1119
|
+
readonly max: _angular_core.InputSignal<number>;
|
|
1120
|
+
/**
|
|
1121
|
+
* 计算属性:可见的头像项
|
|
1122
|
+
* 取items的前max个项
|
|
1123
|
+
*/
|
|
1124
|
+
protected readonly visibleItems: _angular_core.Signal<AvatarGroupItem[]>;
|
|
1125
|
+
/**
|
|
1126
|
+
* 计算属性:隐藏的头像数量
|
|
1127
|
+
* 计算items长度与max的差值,确保结果不小于0
|
|
1128
|
+
*/
|
|
1129
|
+
protected readonly hiddenCount: _angular_core.Signal<number>;
|
|
1130
|
+
/**
|
|
1131
|
+
* 轨道函数,用于ngFor指令
|
|
1132
|
+
* 根据头像项ID进行跟踪,提高渲染性能
|
|
1133
|
+
* @param _index - 索引(未使用)
|
|
1134
|
+
* @param item - 头像项对象
|
|
1135
|
+
* @returns 头像项ID
|
|
1136
|
+
*/
|
|
1137
|
+
protected trackById(_index: number, item: AvatarGroupItem): string;
|
|
1138
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AvatarGroup, never>;
|
|
1139
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AvatarGroup, "s-avatar-group", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
/**
|
|
1143
|
+
* 徽章值类型
|
|
1144
|
+
* 支持数字、字符串或null
|
|
1145
|
+
*/
|
|
1146
|
+
type BadgeValue = number | string | null;
|
|
1147
|
+
/**
|
|
1148
|
+
* 徽章组件
|
|
1149
|
+
* 支持显示数字、字符串、点状指示器,可配置位置偏移和溢出处理
|
|
1150
|
+
*/
|
|
1151
|
+
declare class Badge {
|
|
1152
|
+
/**
|
|
1153
|
+
* 输入属性:徽章显示的值
|
|
1154
|
+
* 支持数字、字符串或null
|
|
1155
|
+
* 默认为null
|
|
1156
|
+
*/
|
|
1157
|
+
readonly count: _angular_core.InputSignal<BadgeValue>;
|
|
1158
|
+
/**
|
|
1159
|
+
* 输入属性:是否以点状显示
|
|
1160
|
+
* 默认为false
|
|
1161
|
+
*/
|
|
1162
|
+
readonly dot: _angular_core.InputSignal<boolean>;
|
|
1163
|
+
/**
|
|
1164
|
+
* 输入属性:是否独立显示
|
|
1165
|
+
* 默认为false
|
|
1166
|
+
*/
|
|
1167
|
+
readonly standalone: _angular_core.InputSignal<boolean>;
|
|
1168
|
+
/**
|
|
1169
|
+
* 输入属性:是否显示值为0的徽章
|
|
1170
|
+
* 默认为false
|
|
1171
|
+
*/
|
|
1172
|
+
readonly showZero: _angular_core.InputSignal<boolean>;
|
|
1173
|
+
/**
|
|
1174
|
+
* 输入属性:溢出计数阈值
|
|
1175
|
+
* 当值超过此阈值时显示为"N+"
|
|
1176
|
+
* 默认为99
|
|
1177
|
+
*/
|
|
1178
|
+
readonly overflowCount: _angular_core.InputSignal<number>;
|
|
1179
|
+
/**
|
|
1180
|
+
* 输入属性:X轴位置偏移
|
|
1181
|
+
* 默认为0
|
|
1182
|
+
*/
|
|
1183
|
+
readonly offsetX: _angular_core.InputSignal<number>;
|
|
1184
|
+
/**
|
|
1185
|
+
* 输入属性:Y轴位置偏移
|
|
1186
|
+
* 默认为0
|
|
1187
|
+
*/
|
|
1188
|
+
readonly offsetY: _angular_core.InputSignal<number>;
|
|
1189
|
+
/**
|
|
1190
|
+
* 计算属性:徽章是否隐藏
|
|
1191
|
+
* 逻辑:
|
|
1192
|
+
* 1. 点状模式始终显示
|
|
1193
|
+
* 2. 值为null或空字符串时隐藏
|
|
1194
|
+
* 3. 值为0且showZero为false时隐藏
|
|
1195
|
+
* 4. 其他情况显示
|
|
1196
|
+
*/
|
|
1197
|
+
protected readonly isHidden: _angular_core.Signal<boolean>;
|
|
1198
|
+
/**
|
|
1199
|
+
* 计算属性:徽章显示的值
|
|
1200
|
+
* 逻辑:
|
|
1201
|
+
* 1. 值为null时显示为空
|
|
1202
|
+
* 2. 数字值超过溢出阈值时显示为"N+"
|
|
1203
|
+
* 3. 其他情况直接显示值
|
|
1204
|
+
*/
|
|
1205
|
+
protected readonly displayValue: _angular_core.Signal<string>;
|
|
1206
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Badge, never>;
|
|
1207
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Badge, "s-badge", never, { "count": { "alias": "count"; "required": false; "isSignal": true; }; "dot": { "alias": "dot"; "required": false; "isSignal": true; }; "standalone": { "alias": "standalone"; "required": false; "isSignal": true; }; "showZero": { "alias": "showZero"; "required": false; "isSignal": true; }; "overflowCount": { "alias": "overflowCount"; "required": false; "isSignal": true; }; "offsetX": { "alias": "offsetX"; "required": false; "isSignal": true; }; "offsetY": { "alias": "offsetY"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
type MTabItemTone = 'default' | 'primary';
|
|
1211
|
+
interface MTabItem {
|
|
1212
|
+
id: string | number;
|
|
1213
|
+
label: string;
|
|
1214
|
+
icon?: LucideIconData;
|
|
1215
|
+
disabled?: boolean;
|
|
1216
|
+
route?: string | null;
|
|
1217
|
+
tone?: MTabItemTone;
|
|
1218
|
+
}
|
|
1219
|
+
declare class MTabs {
|
|
1220
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
1221
|
+
readonly items: _angular_core.InputSignal<readonly MTabItem[]>;
|
|
1222
|
+
readonly selectedItemId: _angular_core.InputSignal<string | number>;
|
|
1223
|
+
readonly itemSelected: _angular_core.OutputEmitterRef<MTabItem>;
|
|
1224
|
+
protected onSelect(item: MTabItem): void;
|
|
1225
|
+
protected trackByItemId(_index: number, item: MTabItem): string | number;
|
|
1226
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MTabs, never>;
|
|
1227
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MTabs, "m-tabs", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "selectedItemId": { "alias": "selectedItemId"; "required": false; "isSignal": true; }; }, { "itemSelected": "itemSelected"; }, never, never, true, never>;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
type BottomNavItem = MTabItem;
|
|
1231
|
+
declare class BottomNav {
|
|
1232
|
+
private readonly router;
|
|
1233
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
1234
|
+
readonly items: _angular_core.InputSignal<readonly MTabItem[]>;
|
|
1235
|
+
readonly selectedItemId: _angular_core.InputSignal<string | number>;
|
|
1236
|
+
readonly itemSelected: _angular_core.OutputEmitterRef<MTabItem>;
|
|
1237
|
+
protected onSelect(item: BottomNavItem): void;
|
|
1238
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BottomNav, never>;
|
|
1239
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BottomNav, "m-bottom-nav", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "selectedItemId": { "alias": "selectedItemId"; "required": false; "isSignal": true; }; }, { "itemSelected": "itemSelected"; }, never, never, true, never>;
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
interface BreadcrumbOption {
|
|
1243
|
+
id: string;
|
|
1244
|
+
label: string;
|
|
1245
|
+
}
|
|
1246
|
+
interface BreadcrumbItem {
|
|
1247
|
+
id: string;
|
|
1248
|
+
label: string;
|
|
1249
|
+
icon?: LucideIconData;
|
|
1250
|
+
active?: boolean;
|
|
1251
|
+
url?: string;
|
|
1252
|
+
disabled?: boolean;
|
|
1253
|
+
options?: readonly BreadcrumbOption[];
|
|
1254
|
+
}
|
|
1255
|
+
interface BreadcrumbSelectEvent {
|
|
1256
|
+
item: BreadcrumbItem;
|
|
1257
|
+
option?: BreadcrumbOption;
|
|
1258
|
+
}
|
|
1259
|
+
type BreadcrumbSeparator = 'chevron' | 'slash' | 'dot' | 'arrow';
|
|
1260
|
+
type BreadcrumbRenderItem = BreadcrumbItem & {
|
|
1261
|
+
template?: TemplateRef<unknown>;
|
|
1262
|
+
};
|
|
1263
|
+
type BreadcrumbRenderEntry = {
|
|
1264
|
+
type: 'item';
|
|
1265
|
+
item: BreadcrumbRenderItem;
|
|
1266
|
+
originalIndex: number;
|
|
1267
|
+
} | {
|
|
1268
|
+
type: 'ellipsis';
|
|
1269
|
+
id: string;
|
|
1270
|
+
items: readonly BreadcrumbRenderItem[];
|
|
1271
|
+
};
|
|
1272
|
+
declare class BreadcrumbItemComponent {
|
|
1273
|
+
readonly id: _angular_core.InputSignal<string>;
|
|
1274
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
1275
|
+
readonly icon: _angular_core.InputSignal<LucideIconData>;
|
|
1276
|
+
readonly active: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1277
|
+
readonly url: _angular_core.InputSignal<string>;
|
|
1278
|
+
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1279
|
+
readonly options: _angular_core.InputSignal<readonly BreadcrumbOption[]>;
|
|
1280
|
+
readonly template: _angular_core.Signal<TemplateRef<any>>;
|
|
1281
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbItemComponent, never>;
|
|
1282
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BreadcrumbItemComponent, "s-breadcrumb-item", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "url": { "alias": "url"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1283
|
+
}
|
|
1284
|
+
declare class Breadcrumb implements AfterViewInit {
|
|
1285
|
+
private readonly hostElement;
|
|
1286
|
+
private readonly destroyRef;
|
|
1287
|
+
private readonly ngRouter;
|
|
1288
|
+
readonly items: _angular_core.InputSignal<readonly BreadcrumbItem[]>;
|
|
1289
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
1290
|
+
readonly separator: _angular_core.InputSignal<BreadcrumbSeparator>;
|
|
1291
|
+
readonly separatorTemplate: _angular_core.InputSignal<TemplateRef<unknown>>;
|
|
1292
|
+
readonly collapse: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1293
|
+
readonly maxItems: _angular_core.InputSignal<number | "auto">;
|
|
1294
|
+
readonly router: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1295
|
+
readonly itemSelected: _angular_core.OutputEmitterRef<BreadcrumbSelectEvent>;
|
|
1296
|
+
protected readonly projectedItems: _angular_core.Signal<readonly BreadcrumbItemComponent[]>;
|
|
1297
|
+
protected readonly openMenuItemId: _angular_core.WritableSignal<string>;
|
|
1298
|
+
protected readonly containerWidth: _angular_core.WritableSignal<number>;
|
|
1299
|
+
protected readonly resolvedItems: _angular_core.Signal<readonly BreadcrumbRenderItem[]>;
|
|
1300
|
+
protected readonly visibleEntries: _angular_core.Signal<readonly BreadcrumbRenderEntry[]>;
|
|
1301
|
+
protected readonly hasItems: _angular_core.Signal<boolean>;
|
|
1302
|
+
ngAfterViewInit(): void;
|
|
1303
|
+
protected isLast(index: number): boolean;
|
|
1304
|
+
protected isCurrent(item: BreadcrumbItem, index: number): boolean;
|
|
1305
|
+
protected isMenuOpen(itemId: string): boolean;
|
|
1306
|
+
protected hasOptions(item: BreadcrumbItem): boolean;
|
|
1307
|
+
protected onItemClick(item: BreadcrumbItem, index: number, event: Event): void;
|
|
1308
|
+
protected onOverflowClick(event: Event): void;
|
|
1309
|
+
protected onOverflowItemClick(item: BreadcrumbItem, event: Event): void;
|
|
1310
|
+
protected onOptionClick(item: BreadcrumbItem, option: BreadcrumbOption, event: Event): void;
|
|
1311
|
+
protected onDocumentClick(event: Event): void;
|
|
1312
|
+
protected closeMenu(): void;
|
|
1313
|
+
protected trackByEntryId(index: number, entry: BreadcrumbRenderEntry): string;
|
|
1314
|
+
protected trackByOptionId(_index: number, option: BreadcrumbOption): string;
|
|
1315
|
+
private visibleItemLimit;
|
|
1316
|
+
private routerItems;
|
|
1317
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Breadcrumb, never>;
|
|
1318
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Breadcrumb, "s-breadcrumb", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "separatorTemplate": { "alias": "separatorTemplate"; "required": false; "isSignal": true; }; "collapse": { "alias": "collapse"; "required": false; "isSignal": true; }; "maxItems": { "alias": "maxItems"; "required": false; "isSignal": true; }; "router": { "alias": "router"; "required": false; "isSignal": true; }; }, { "itemSelected": "itemSelected"; }, ["projectedItems"], never, true, never>;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
declare class BsBaseList {
|
|
1322
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BsBaseList, never>;
|
|
1323
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BsBaseList, "s-base-list", never, {}, {}, never, ["[list-actions]", "[list-table]", "[list-pagination]"], true, never>;
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
type BsMessageType = 'info' | 'success' | 'warning' | 'error' | 'help' | 'loading';
|
|
1327
|
+
type BsMessageVariant = 'soft' | 'solid';
|
|
1328
|
+
type BsMessageActionTone = 'default' | 'primary';
|
|
1329
|
+
interface BsMessageAction {
|
|
1330
|
+
id: string;
|
|
1331
|
+
label: string;
|
|
1332
|
+
tone?: BsMessageActionTone;
|
|
1333
|
+
handler?: () => void;
|
|
1334
|
+
}
|
|
1335
|
+
interface BsMessageOptions {
|
|
1336
|
+
duration?: number;
|
|
1337
|
+
closable?: boolean;
|
|
1338
|
+
title?: string;
|
|
1339
|
+
description?: string;
|
|
1340
|
+
detailText?: string;
|
|
1341
|
+
onDetail?: () => void;
|
|
1342
|
+
actions?: readonly BsMessageAction[];
|
|
1343
|
+
variant?: BsMessageVariant;
|
|
1344
|
+
showIcon?: boolean;
|
|
1345
|
+
viewContainerRef?: ViewContainerRef;
|
|
1346
|
+
}
|
|
1347
|
+
interface BsMessageItem {
|
|
1348
|
+
id: string;
|
|
1349
|
+
type: BsMessageType;
|
|
1350
|
+
title: string;
|
|
1351
|
+
description?: string;
|
|
1352
|
+
detailText?: string;
|
|
1353
|
+
closable: boolean;
|
|
1354
|
+
createdAt: number;
|
|
1355
|
+
duration: number;
|
|
1356
|
+
actions: readonly BsMessageAction[];
|
|
1357
|
+
variant: BsMessageVariant;
|
|
1358
|
+
showIcon: boolean;
|
|
1359
|
+
repeatCount: number;
|
|
1360
|
+
onDetail?: () => void;
|
|
1361
|
+
}
|
|
1362
|
+
declare class BsMessageService {
|
|
1363
|
+
private readonly injector;
|
|
1364
|
+
private readonly zone;
|
|
1365
|
+
private readonly document;
|
|
1366
|
+
private readonly overlayHost;
|
|
1367
|
+
private attachedRef;
|
|
1368
|
+
private containerRef;
|
|
1369
|
+
private readonly items;
|
|
1370
|
+
private readonly timers;
|
|
1371
|
+
__unsafe_items(): BsMessageItem[];
|
|
1372
|
+
constructor();
|
|
1373
|
+
private exposeGlobalApiOnce;
|
|
1374
|
+
private ensureContainer;
|
|
1375
|
+
private syncContainer;
|
|
1376
|
+
private handleDetail;
|
|
1377
|
+
private handleAction;
|
|
1378
|
+
private isSameMessage;
|
|
1379
|
+
private scheduleRemoval;
|
|
1380
|
+
private clearTimer;
|
|
1381
|
+
show(type: BsMessageType, content: string, options?: BsMessageOptions): {
|
|
1382
|
+
id: string;
|
|
1383
|
+
close: () => void;
|
|
1384
|
+
};
|
|
1385
|
+
info(content: string, options?: BsMessageOptions): {
|
|
1386
|
+
id: string;
|
|
1387
|
+
close: () => void;
|
|
1388
|
+
};
|
|
1389
|
+
success(content: string, options?: BsMessageOptions): {
|
|
1390
|
+
id: string;
|
|
1391
|
+
close: () => void;
|
|
1392
|
+
};
|
|
1393
|
+
warning(content: string, options?: BsMessageOptions): {
|
|
1394
|
+
id: string;
|
|
1395
|
+
close: () => void;
|
|
1396
|
+
};
|
|
1397
|
+
error(content: string, options?: BsMessageOptions): {
|
|
1398
|
+
id: string;
|
|
1399
|
+
close: () => void;
|
|
1400
|
+
};
|
|
1401
|
+
help(content: string, options?: BsMessageOptions): {
|
|
1402
|
+
id: string;
|
|
1403
|
+
close: () => void;
|
|
1404
|
+
};
|
|
1405
|
+
loading(content: string, options?: BsMessageOptions): {
|
|
1406
|
+
id: string;
|
|
1407
|
+
close: () => void;
|
|
1408
|
+
};
|
|
1409
|
+
remove(id: string): void;
|
|
1410
|
+
clear(): void;
|
|
1411
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BsMessageService, never>;
|
|
1412
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<BsMessageService>;
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
/**
|
|
1416
|
+
* 消息组件
|
|
1417
|
+
* 作为消息容器的包装器,提供兼容模式支持
|
|
1418
|
+
*/
|
|
1419
|
+
declare class BsMessage {
|
|
1420
|
+
/**
|
|
1421
|
+
* 注入消息服务
|
|
1422
|
+
* 用于获取消息列表和处理消息操作
|
|
1423
|
+
*/
|
|
1424
|
+
private readonly message;
|
|
1425
|
+
/**
|
|
1426
|
+
* 计算属性:消息项列表
|
|
1427
|
+
* 兼容模式:如果业务仍手动放了 <s-message>,这里也能显示
|
|
1428
|
+
* 通过消息服务的__unsafe_items()方法获取消息列表
|
|
1429
|
+
*/
|
|
1430
|
+
readonly items: _angular_core.Signal<BsMessageItem[]>;
|
|
1431
|
+
/**
|
|
1432
|
+
* 关闭消息
|
|
1433
|
+
* @param id - 消息ID
|
|
1434
|
+
*/
|
|
1435
|
+
close(id: string): void;
|
|
1436
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BsMessage, never>;
|
|
1437
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BsMessage, "s-message", never, {}, {}, never, never, true, never>;
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
interface BsSelectOption<T = unknown> {
|
|
1441
|
+
label: string;
|
|
1442
|
+
value: T;
|
|
1443
|
+
disabled?: boolean;
|
|
1444
|
+
placeholder?: boolean;
|
|
1445
|
+
}
|
|
1446
|
+
declare class BsSelect implements ControlValueAccessor {
|
|
1447
|
+
protected readonly listBox: _angular_core.Signal<Listbox<unknown>>;
|
|
1448
|
+
protected readonly optionRefs: _angular_core.Signal<readonly Option<unknown>[]>;
|
|
1449
|
+
protected readonly combobox: _angular_core.Signal<Combobox<unknown>>;
|
|
1450
|
+
protected readonly plusIcon: lucide_angular.LucideIconData;
|
|
1451
|
+
protected readonly closeIcon: lucide_angular.LucideIconData;
|
|
1452
|
+
readonly labels: _angular_core.InputSignal<string[]>;
|
|
1453
|
+
readonly options: _angular_core.InputSignal<BsSelectOption<unknown>[]>;
|
|
1454
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
1455
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
1456
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
1457
|
+
readonly multiple: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1458
|
+
readonly matchTriggerWidth: _angular_core.InputSignal<boolean>;
|
|
1459
|
+
protected readonly displayValue: _angular_core.Signal<string>;
|
|
1460
|
+
protected readonly hasValue: _angular_core.Signal<boolean>;
|
|
1461
|
+
protected readonly normalizedOptions: _angular_core.Signal<BsSelectOption<unknown>[]>;
|
|
1462
|
+
private readonly selectedOption;
|
|
1463
|
+
protected readonly selectedOptions: _angular_core.Signal<BsSelectOption<unknown>[]>;
|
|
1464
|
+
protected readonly visibleSelectedOptions: _angular_core.Signal<BsSelectOption<unknown>[]>;
|
|
1465
|
+
protected readonly hiddenSelectedCount: _angular_core.Signal<number>;
|
|
1466
|
+
protected readonly isDisabled: _angular_core.Signal<boolean>;
|
|
1467
|
+
protected readonly selectedValues: _angular_core.WritableSignal<unknown[]>;
|
|
1468
|
+
private readonly disabledFromCva;
|
|
1469
|
+
private onChange;
|
|
1470
|
+
private onTouched;
|
|
1471
|
+
constructor();
|
|
1472
|
+
protected onListboxValueChange(values: unknown[]): void;
|
|
1473
|
+
protected onOptionClick(option: BsSelectOption<unknown>): void;
|
|
1474
|
+
protected openCombobox(event: Event): void;
|
|
1475
|
+
protected removeSelectedValue(value: unknown, event: Event): void;
|
|
1476
|
+
writeValue(value: unknown): void;
|
|
1477
|
+
registerOnChange(fn: (value: unknown) => void): void;
|
|
1478
|
+
registerOnTouched(fn: () => void): void;
|
|
1479
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1480
|
+
private scheduleClose;
|
|
1481
|
+
private isEmptyValue;
|
|
1482
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BsSelect, never>;
|
|
1483
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BsSelect, "s-select", never, { "labels": { "alias": "labels"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "matchTriggerWidth": { "alias": "matchTriggerWidth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
interface CardMenuItem {
|
|
1487
|
+
id: string;
|
|
1488
|
+
label: string;
|
|
1489
|
+
disabled?: boolean;
|
|
1490
|
+
}
|
|
1491
|
+
interface CardIconAction {
|
|
1492
|
+
id: string;
|
|
1493
|
+
icon: LucideIconData;
|
|
1494
|
+
ariaLabel: string;
|
|
1495
|
+
disabled?: boolean;
|
|
1496
|
+
}
|
|
1497
|
+
interface CardActionEvent {
|
|
1498
|
+
id: string;
|
|
1499
|
+
}
|
|
1500
|
+
declare class Card {
|
|
1501
|
+
private readonly hostElement;
|
|
1502
|
+
readonly title: _angular_core.InputSignal<string>;
|
|
1503
|
+
readonly content: _angular_core.InputSignal<string>;
|
|
1504
|
+
readonly hoverable: _angular_core.InputSignal<boolean>;
|
|
1505
|
+
readonly actionText: _angular_core.InputSignal<string>;
|
|
1506
|
+
readonly actionTextAriaLabel: _angular_core.InputSignal<string>;
|
|
1507
|
+
readonly menuItems: _angular_core.InputSignal<readonly CardMenuItem[]>;
|
|
1508
|
+
readonly iconActions: _angular_core.InputSignal<readonly CardIconAction[]>;
|
|
1509
|
+
readonly actionTriggered: _angular_core.OutputEmitterRef<CardActionEvent>;
|
|
1510
|
+
readonly menuItemSelected: _angular_core.OutputEmitterRef<CardActionEvent>;
|
|
1511
|
+
readonly iconActionSelected: _angular_core.OutputEmitterRef<CardActionEvent>;
|
|
1512
|
+
protected readonly moreIcon: LucideIconData;
|
|
1513
|
+
protected readonly hasMenu: _angular_core.Signal<boolean>;
|
|
1514
|
+
protected readonly hasIconActions: _angular_core.Signal<boolean>;
|
|
1515
|
+
protected readonly hasHeaderActions: _angular_core.Signal<boolean>;
|
|
1516
|
+
protected readonly hasHeader: _angular_core.Signal<boolean>;
|
|
1517
|
+
protected readonly isMenuOpen: _angular_core.WritableSignal<boolean>;
|
|
1518
|
+
protected onActionTextClick(): void;
|
|
1519
|
+
protected onMenuTriggerClick(event: Event): void;
|
|
1520
|
+
protected onMenuItemClick(item: CardMenuItem): void;
|
|
1521
|
+
protected onIconActionClick(action: CardIconAction): void;
|
|
1522
|
+
protected closeMenu(): void;
|
|
1523
|
+
protected onDocumentClick(event: Event): void;
|
|
1524
|
+
protected trackByMenuId(_index: number, item: CardMenuItem): string;
|
|
1525
|
+
protected trackByActionId(_index: number, action: CardIconAction): string;
|
|
1526
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Card, never>;
|
|
1527
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Card, "s-card", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; "hoverable": { "alias": "hoverable"; "required": false; "isSignal": true; }; "actionText": { "alias": "actionText"; "required": false; "isSignal": true; }; "actionTextAriaLabel": { "alias": "actionTextAriaLabel"; "required": false; "isSignal": true; }; "menuItems": { "alias": "menuItems"; "required": false; "isSignal": true; }; "iconActions": { "alias": "iconActions"; "required": false; "isSignal": true; }; }, { "actionTriggered": "actionTriggered"; "menuItemSelected": "menuItemSelected"; "iconActionSelected": "iconActionSelected"; }, never, ["[cardCover]", "[cardHeaderStart]", "[cardHeaderEnd]", "[cardSubheader]", "[cardBody]", "*", "[cardAside]", "[cardFooter]"], true, never>;
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
interface CalendarCell {
|
|
1531
|
+
date: Date;
|
|
1532
|
+
label: number;
|
|
1533
|
+
iso: string;
|
|
1534
|
+
inCurrentMonth: boolean;
|
|
1535
|
+
isToday: boolean;
|
|
1536
|
+
isDisabled: boolean;
|
|
1537
|
+
}
|
|
1538
|
+
interface CalendarRow {
|
|
1539
|
+
id: string;
|
|
1540
|
+
cells: CalendarCell[];
|
|
1541
|
+
}
|
|
1542
|
+
interface MonthCell {
|
|
1543
|
+
month: number;
|
|
1544
|
+
label: string;
|
|
1545
|
+
date: Date;
|
|
1546
|
+
}
|
|
1547
|
+
interface QuarterCell {
|
|
1548
|
+
quarter: 1 | 2 | 3 | 4;
|
|
1549
|
+
label: string;
|
|
1550
|
+
date: Date;
|
|
1551
|
+
}
|
|
1552
|
+
interface DatePickerPanelPosition {
|
|
1553
|
+
readonly top: number;
|
|
1554
|
+
readonly left: number;
|
|
1555
|
+
}
|
|
1556
|
+
interface DateRangeValue {
|
|
1557
|
+
start: Date | null;
|
|
1558
|
+
end: Date | null;
|
|
1559
|
+
}
|
|
1560
|
+
type DatePickerMode = 'date' | 'week' | 'month' | 'quarter' | 'range';
|
|
1561
|
+
declare class DatePicker {
|
|
1562
|
+
private readonly hostElement;
|
|
1563
|
+
readonly value: _angular_core.ModelSignal<Date>;
|
|
1564
|
+
readonly rangeValue: _angular_core.ModelSignal<DateRangeValue>;
|
|
1565
|
+
readonly mode: _angular_core.InputSignal<DatePickerMode>;
|
|
1566
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
1567
|
+
readonly rangeSeparator: _angular_core.InputSignal<string>;
|
|
1568
|
+
readonly locale: _angular_core.InputSignal<string>;
|
|
1569
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
1570
|
+
readonly minDate: _angular_core.InputSignal<Date>;
|
|
1571
|
+
readonly maxDate: _angular_core.InputSignal<Date>;
|
|
1572
|
+
readonly confirmText: _angular_core.InputSignal<string>;
|
|
1573
|
+
readonly cancelText: _angular_core.InputSignal<string>;
|
|
1574
|
+
readonly todayText: _angular_core.InputSignal<string>;
|
|
1575
|
+
readonly thisYearText: _angular_core.InputSignal<string>;
|
|
1576
|
+
readonly startPlaceholder: _angular_core.InputSignal<string>;
|
|
1577
|
+
readonly endPlaceholder: _angular_core.InputSignal<string>;
|
|
1578
|
+
readonly iconSize: _angular_core.InputSignal<number>;
|
|
1579
|
+
readonly weekDayLabels: _angular_core.InputSignal<readonly string[]>;
|
|
1580
|
+
protected readonly calendarIcon: lucide_angular.LucideIconData;
|
|
1581
|
+
protected readonly prevIcon: lucide_angular.LucideIconData;
|
|
1582
|
+
protected readonly nextIcon: lucide_angular.LucideIconData;
|
|
1583
|
+
protected readonly clearIcon: lucide_angular.LucideIconData;
|
|
1584
|
+
protected readonly isOpen: _angular_core.WritableSignal<boolean>;
|
|
1585
|
+
protected readonly panelPosition: _angular_core.WritableSignal<DatePickerPanelPosition>;
|
|
1586
|
+
protected readonly hasSelection: _angular_core.Signal<boolean>;
|
|
1587
|
+
protected readonly shouldShowClear: _angular_core.Signal<boolean>;
|
|
1588
|
+
private readonly today;
|
|
1589
|
+
private readonly pendingDate;
|
|
1590
|
+
private readonly pendingRange;
|
|
1591
|
+
private readonly rangeHoverDate;
|
|
1592
|
+
private readonly rangeSelectingPart;
|
|
1593
|
+
private readonly viewDate;
|
|
1594
|
+
protected readonly displayValue: _angular_core.Signal<string>;
|
|
1595
|
+
protected readonly title: _angular_core.Signal<string>;
|
|
1596
|
+
protected readonly cells: _angular_core.Signal<{
|
|
1597
|
+
date: Date;
|
|
1598
|
+
label: number;
|
|
1599
|
+
iso: string;
|
|
1600
|
+
inCurrentMonth: boolean;
|
|
1601
|
+
isToday: boolean;
|
|
1602
|
+
isDisabled: boolean;
|
|
1603
|
+
}[]>;
|
|
1604
|
+
protected readonly rows: _angular_core.Signal<CalendarRow[]>;
|
|
1605
|
+
protected readonly monthCells: _angular_core.Signal<MonthCell[]>;
|
|
1606
|
+
protected readonly quarterCells: _angular_core.Signal<QuarterCell[]>;
|
|
1607
|
+
protected toggle(): void;
|
|
1608
|
+
protected clearSelection(event: Event): void;
|
|
1609
|
+
protected selectDate(date: Date): void;
|
|
1610
|
+
protected selectWeek(row: CalendarRow): void;
|
|
1611
|
+
protected selectMonth(cell: MonthCell): void;
|
|
1612
|
+
protected selectQuarter(cell: QuarterCell): void;
|
|
1613
|
+
protected selectToday(): void;
|
|
1614
|
+
protected selectThisYear(): void;
|
|
1615
|
+
protected confirm(): void;
|
|
1616
|
+
protected cancel(): void;
|
|
1617
|
+
protected prev(): void;
|
|
1618
|
+
protected next(): void;
|
|
1619
|
+
protected isSelected(cell: CalendarCell): boolean;
|
|
1620
|
+
protected isWeekSelected(row: CalendarRow): boolean;
|
|
1621
|
+
protected isWeekAnchor(cell: CalendarCell): boolean;
|
|
1622
|
+
protected isTodayCell(cell: CalendarCell): boolean;
|
|
1623
|
+
protected isMonthSelected(cell: MonthCell): boolean;
|
|
1624
|
+
protected isQuarterSelected(cell: QuarterCell): boolean;
|
|
1625
|
+
protected isRangeStart(cell: CalendarCell): boolean;
|
|
1626
|
+
protected isRangeEnd(cell: CalendarCell): boolean;
|
|
1627
|
+
protected isRangeInBetween(cell: CalendarCell): boolean;
|
|
1628
|
+
protected hasRangePreviewEnd(): boolean;
|
|
1629
|
+
protected trackByIso(_index: number, cell: CalendarCell): string;
|
|
1630
|
+
protected trackByRow(_index: number, row: CalendarRow): string;
|
|
1631
|
+
protected onCellHover(date: Date | null): void;
|
|
1632
|
+
protected onDocumentClick(event: Event): void;
|
|
1633
|
+
protected onDocumentKeydown(event: KeyboardEvent): void;
|
|
1634
|
+
protected onWindowResize(): void;
|
|
1635
|
+
private selectRangeDate;
|
|
1636
|
+
private getRangePreview;
|
|
1637
|
+
private isDateDisabled;
|
|
1638
|
+
private syncPendingStateFromValue;
|
|
1639
|
+
private getInitialViewDate;
|
|
1640
|
+
private closePanel;
|
|
1641
|
+
private updatePanelPosition;
|
|
1642
|
+
private toCssPixelValue;
|
|
1643
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DatePicker, never>;
|
|
1644
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DatePicker, "s-date-picker", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "rangeValue": { "alias": "rangeValue"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "rangeSeparator": { "alias": "rangeSeparator"; "required": false; "isSignal": true; }; "locale": { "alias": "locale"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "minDate": { "alias": "minDate"; "required": false; "isSignal": true; }; "maxDate": { "alias": "maxDate"; "required": false; "isSignal": true; }; "confirmText": { "alias": "confirmText"; "required": false; "isSignal": true; }; "cancelText": { "alias": "cancelText"; "required": false; "isSignal": true; }; "todayText": { "alias": "todayText"; "required": false; "isSignal": true; }; "thisYearText": { "alias": "thisYearText"; "required": false; "isSignal": true; }; "startPlaceholder": { "alias": "startPlaceholder"; "required": false; "isSignal": true; }; "endPlaceholder": { "alias": "endPlaceholder"; "required": false; "isSignal": true; }; "iconSize": { "alias": "iconSize"; "required": false; "isSignal": true; }; "weekDayLabels": { "alias": "weekDayLabels"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "rangeValue": "rangeValueChange"; }, never, never, true, never>;
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
type PlatformDrawerSectionLayout = 'grid' | 'plain';
|
|
1648
|
+
type PlatformDrawerFieldVariant = 'default' | 'switch';
|
|
1649
|
+
declare class PlatformDrawerForm {
|
|
1650
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerForm, never>;
|
|
1651
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerForm, "platform-drawer-form", never, {}, {}, never, ["*"], true, never>;
|
|
1652
|
+
}
|
|
1653
|
+
declare class PlatformDrawerSection {
|
|
1654
|
+
readonly title: _angular_core.InputSignal<string>;
|
|
1655
|
+
readonly layout: _angular_core.InputSignal<PlatformDrawerSectionLayout>;
|
|
1656
|
+
readonly muted: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1657
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerSection, never>;
|
|
1658
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerSection, "platform-drawer-section", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "muted": { "alias": "muted"; "required": false; "isSignal": true; }; }, {}, never, ["[platformDrawerSectionAction]", "*"], true, never>;
|
|
1659
|
+
}
|
|
1660
|
+
declare class PlatformDrawerField {
|
|
1661
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
1662
|
+
readonly description: _angular_core.InputSignal<string>;
|
|
1663
|
+
readonly required: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1664
|
+
readonly full: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1665
|
+
readonly invalid: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1666
|
+
readonly variant: _angular_core.InputSignal<PlatformDrawerFieldVariant>;
|
|
1667
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerField, never>;
|
|
1668
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerField, "platform-drawer-field", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "full": { "alias": "full"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1669
|
+
}
|
|
1670
|
+
declare class PlatformDrawerFooter {
|
|
1671
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerFooter, never>;
|
|
1672
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerFooter, "platform-drawer-footer", never, {}, {}, never, ["*"], true, never>;
|
|
1673
|
+
}
|
|
1674
|
+
declare class PlatformDrawerError {
|
|
1675
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerError, never>;
|
|
1676
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerError, "platform-drawer-error", never, {}, {}, never, ["*"], true, never>;
|
|
1677
|
+
}
|
|
1678
|
+
declare class PlatformPrefixedInput {
|
|
1679
|
+
readonly prefix: _angular_core.InputSignal<string>;
|
|
1680
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformPrefixedInput, never>;
|
|
1681
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformPrefixedInput, "platform-prefixed-input", never, { "prefix": { "alias": "prefix"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1682
|
+
}
|
|
1683
|
+
declare class PlatformDrawerCheckboxGroup {
|
|
1684
|
+
readonly panel: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1685
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerCheckboxGroup, never>;
|
|
1686
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerCheckboxGroup, "platform-drawer-checkbox-group", never, { "panel": { "alias": "panel"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1687
|
+
}
|
|
1688
|
+
declare class PlatformDrawerCheckbox {
|
|
1689
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerCheckbox, never>;
|
|
1690
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerCheckbox, "platform-drawer-checkbox", never, {}, {}, never, ["*"], true, never>;
|
|
1691
|
+
}
|
|
1692
|
+
declare class PlatformDrawerEmpty {
|
|
1693
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerEmpty, never>;
|
|
1694
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerEmpty, "platform-drawer-empty", never, {}, {}, never, ["*"], true, never>;
|
|
1695
|
+
}
|
|
1696
|
+
declare class PlatformDrawerTable {
|
|
1697
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerTable, never>;
|
|
1698
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerTable, "platform-drawer-table", never, {}, {}, never, ["*"], true, never>;
|
|
1699
|
+
}
|
|
1700
|
+
declare class PlatformDrawerInputAction {
|
|
1701
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerInputAction, never>;
|
|
1702
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerInputAction, "platform-drawer-input-action", never, {}, {}, never, ["*"], true, never>;
|
|
1703
|
+
}
|
|
1704
|
+
declare class PlatformDrawerInputActionButton {
|
|
1705
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerInputActionButton, never>;
|
|
1706
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PlatformDrawerInputActionButton, "button[platformDrawerInputActionButton]", never, {}, {}, never, never, true, never>;
|
|
1707
|
+
}
|
|
1708
|
+
declare class PlatformDrawerToolbar {
|
|
1709
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerToolbar, never>;
|
|
1710
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerToolbar, "platform-drawer-toolbar", never, {}, {}, never, ["*"], true, never>;
|
|
1711
|
+
}
|
|
1712
|
+
declare class PlatformDrawerTree {
|
|
1713
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerTree, never>;
|
|
1714
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerTree, "platform-drawer-tree", never, {}, {}, never, ["*"], true, never>;
|
|
1715
|
+
}
|
|
1716
|
+
declare class PlatformDrawerTreeItem {
|
|
1717
|
+
readonly level: _angular_core.InputSignal<number>;
|
|
1718
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerTreeItem, never>;
|
|
1719
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerTreeItem, "platform-drawer-tree-item", never, { "level": { "alias": "level"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1720
|
+
}
|
|
1721
|
+
declare class PlatformDrawerTreeToggle {
|
|
1722
|
+
readonly hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1723
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerTreeToggle, never>;
|
|
1724
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PlatformDrawerTreeToggle, "button[platformDrawerTreeToggle]", never, { "hidden": { "alias": "platformDrawerTreeToggleHidden"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1725
|
+
}
|
|
1726
|
+
declare class PlatformDrawerComponentBar {
|
|
1727
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerComponentBar, never>;
|
|
1728
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerComponentBar, "platform-drawer-component-bar", never, {}, {}, never, ["*"], true, never>;
|
|
1729
|
+
}
|
|
1730
|
+
declare class PlatformDrawerComponentList {
|
|
1731
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerComponentList, never>;
|
|
1732
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerComponentList, "platform-drawer-component-list", never, {}, {}, never, ["*"], true, never>;
|
|
1733
|
+
}
|
|
1734
|
+
declare class PlatformDrawerComponentItem {
|
|
1735
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerComponentItem, never>;
|
|
1736
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformDrawerComponentItem, "platform-drawer-component-item", never, {}, {}, never, ["*"], true, never>;
|
|
1737
|
+
}
|
|
1738
|
+
declare class PlatformSwitch implements ControlValueAccessor {
|
|
1739
|
+
private readonly changeDetectorRef;
|
|
1740
|
+
private onChange;
|
|
1741
|
+
private onTouched;
|
|
1742
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
1743
|
+
readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1744
|
+
protected checked: boolean;
|
|
1745
|
+
protected disabled: boolean;
|
|
1746
|
+
protected get isDisabled(): boolean;
|
|
1747
|
+
writeValue(value: unknown): void;
|
|
1748
|
+
registerOnChange(fn: (value: boolean) => void): void;
|
|
1749
|
+
registerOnTouched(fn: () => void): void;
|
|
1750
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1751
|
+
protected handleChange(checked: boolean): void;
|
|
1752
|
+
protected handleInputChange(event: Event): void;
|
|
1753
|
+
protected handleTouched(): void;
|
|
1754
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformSwitch, never>;
|
|
1755
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformSwitch, "platform-switch", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
declare class PlatformDrawerFormModule {
|
|
1759
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformDrawerFormModule, never>;
|
|
1760
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<PlatformDrawerFormModule, never, [typeof PlatformDrawerForm, typeof PlatformDrawerSection, typeof PlatformDrawerField, typeof PlatformDrawerFooter, typeof PlatformDrawerError, typeof PlatformPrefixedInput, typeof PlatformDrawerCheckboxGroup, typeof PlatformDrawerCheckbox, typeof PlatformDrawerEmpty, typeof PlatformDrawerTable, typeof PlatformDrawerInputAction, typeof PlatformDrawerInputActionButton, typeof PlatformDrawerToolbar, typeof PlatformDrawerTree, typeof PlatformDrawerTreeItem, typeof PlatformDrawerTreeToggle, typeof PlatformDrawerComponentBar, typeof PlatformDrawerComponentList, typeof PlatformDrawerComponentItem, typeof PlatformSwitch], [typeof PlatformDrawerForm, typeof PlatformDrawerSection, typeof PlatformDrawerField, typeof PlatformDrawerFooter, typeof PlatformDrawerError, typeof PlatformPrefixedInput, typeof PlatformDrawerCheckboxGroup, typeof PlatformDrawerCheckbox, typeof PlatformDrawerEmpty, typeof PlatformDrawerTable, typeof PlatformDrawerInputAction, typeof PlatformDrawerInputActionButton, typeof PlatformDrawerToolbar, typeof PlatformDrawerTree, typeof PlatformDrawerTreeItem, typeof PlatformDrawerTreeToggle, typeof PlatformDrawerComponentBar, typeof PlatformDrawerComponentList, typeof PlatformDrawerComponentItem, typeof PlatformSwitch]>;
|
|
1761
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<PlatformDrawerFormModule>;
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1764
|
+
interface EmojiPickerOption {
|
|
1765
|
+
readonly label: string;
|
|
1766
|
+
readonly value: string;
|
|
1767
|
+
readonly group?: string;
|
|
1768
|
+
}
|
|
1769
|
+
interface EmojiPickerTab {
|
|
1770
|
+
readonly label: string;
|
|
1771
|
+
readonly value: string;
|
|
1772
|
+
readonly icon: string;
|
|
1773
|
+
}
|
|
1774
|
+
declare const DEFAULT_EMOJI_PICKER_OPTIONS: readonly EmojiPickerOption[];
|
|
1775
|
+
declare const DEFAULT_EMOJI_PICKER_TABS: readonly EmojiPickerTab[];
|
|
1776
|
+
declare class EmojiPicker {
|
|
1777
|
+
readonly panelId: _angular_core.InputSignal<string>;
|
|
1778
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
1779
|
+
readonly headerLabel: _angular_core.InputSignal<string>;
|
|
1780
|
+
readonly gridLabel: _angular_core.InputSignal<string>;
|
|
1781
|
+
readonly tabsLabel: _angular_core.InputSignal<string>;
|
|
1782
|
+
readonly options: _angular_core.InputSignal<readonly EmojiPickerOption[]>;
|
|
1783
|
+
readonly tabs: _angular_core.InputSignal<readonly EmojiPickerTab[]>;
|
|
1784
|
+
readonly emojiSelected: _angular_core.OutputEmitterRef<string>;
|
|
1785
|
+
readonly tabSelected: _angular_core.OutputEmitterRef<string>;
|
|
1786
|
+
protected readonly activeTab: _angular_core.WritableSignal<string>;
|
|
1787
|
+
protected readonly activeOptions: _angular_core.Signal<readonly EmojiPickerOption[]>;
|
|
1788
|
+
protected selectEmoji(value: string): void;
|
|
1789
|
+
protected selectTab(value: string): void;
|
|
1790
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EmojiPicker, never>;
|
|
1791
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EmojiPicker, "s-emoji-picker", never, { "panelId": { "alias": "panelId"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "headerLabel": { "alias": "headerLabel"; "required": false; "isSignal": true; }; "gridLabel": { "alias": "gridLabel"; "required": false; "isSignal": true; }; "tabsLabel": { "alias": "tabsLabel"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; }, { "emojiSelected": "emojiSelected"; "tabSelected": "tabSelected"; }, never, never, true, never>;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
interface FilterSummaryChip {
|
|
1795
|
+
id: string | number;
|
|
1796
|
+
label: string;
|
|
1797
|
+
removable?: boolean;
|
|
1798
|
+
ariaLabel?: string;
|
|
1799
|
+
}
|
|
1800
|
+
declare class FilterSummary {
|
|
1801
|
+
readonly summary: _angular_core.InputSignal<string>;
|
|
1802
|
+
readonly chips: _angular_core.ModelSignal<readonly FilterSummaryChip[]>;
|
|
1803
|
+
readonly chipsAriaLabel: _angular_core.InputSignal<string>;
|
|
1804
|
+
readonly resetLabel: _angular_core.InputSignal<string>;
|
|
1805
|
+
readonly showReset: _angular_core.InputSignal<boolean>;
|
|
1806
|
+
readonly chipRemoved: _angular_core.OutputEmitterRef<FilterSummaryChip>;
|
|
1807
|
+
readonly resetClicked: _angular_core.OutputEmitterRef<void>;
|
|
1808
|
+
protected readonly closeIcon: lucide_angular.LucideIconData;
|
|
1809
|
+
protected readonly hasChips: _angular_core.Signal<boolean>;
|
|
1810
|
+
protected readonly shouldShowReset: _angular_core.Signal<boolean>;
|
|
1811
|
+
protected removeChip(chip: FilterSummaryChip): void;
|
|
1812
|
+
protected emitReset(): void;
|
|
1813
|
+
protected trackByChipId(_index: number, chip: FilterSummaryChip): string | number;
|
|
1814
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilterSummary, never>;
|
|
1815
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FilterSummary, "s-filter-summary", never, { "summary": { "alias": "summary"; "required": false; "isSignal": true; }; "chips": { "alias": "chips"; "required": false; "isSignal": true; }; "chipsAriaLabel": { "alias": "chipsAriaLabel"; "required": false; "isSignal": true; }; "resetLabel": { "alias": "resetLabel"; "required": false; "isSignal": true; }; "showReset": { "alias": "showReset"; "required": false; "isSignal": true; }; }, { "chips": "chipsChange"; "chipRemoved": "chipRemoved"; "resetClicked": "resetClicked"; }, never, never, true, never>;
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
interface FileUploadButtonSelectedEvent {
|
|
1819
|
+
files: File[];
|
|
1820
|
+
}
|
|
1821
|
+
declare class FileUploadButtonComponent {
|
|
1822
|
+
readonly accept: _angular_core.InputSignal<string>;
|
|
1823
|
+
readonly multiple: _angular_core.InputSignal<boolean>;
|
|
1824
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
1825
|
+
readonly buttonClass: _angular_core.InputSignal<string>;
|
|
1826
|
+
readonly ariaBusy: _angular_core.InputSignal<string | boolean>;
|
|
1827
|
+
readonly filesSelected: _angular_core.OutputEmitterRef<FileUploadButtonSelectedEvent>;
|
|
1828
|
+
protected readonly fileInput: _angular_core.Signal<ElementRef<HTMLInputElement>>;
|
|
1829
|
+
protected openFileDialog(): void;
|
|
1830
|
+
protected onFileChange(event: Event): void;
|
|
1831
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FileUploadButtonComponent, never>;
|
|
1832
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FileUploadButtonComponent, "s-file-upload-button", never, { "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "buttonClass": { "alias": "buttonClass"; "required": false; "isSignal": true; }; "ariaBusy": { "alias": "ariaBusy"; "required": false; "isSignal": true; }; }, { "filesSelected": "filesSelected"; }, never, ["*"], true, never>;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
type HeaderTitleAlign = 'left' | 'center';
|
|
1836
|
+
type HeaderSize = 'default' | 'large' | 'conversation';
|
|
1837
|
+
type HeaderSurface = 'transparent' | 'white';
|
|
1838
|
+
type HeaderInset = 'none' | 'page';
|
|
1839
|
+
interface HeaderAction {
|
|
1840
|
+
id: string;
|
|
1841
|
+
label?: string;
|
|
1842
|
+
ariaLabel?: string;
|
|
1843
|
+
icon?: LucideIconData;
|
|
1844
|
+
tone?: 'default' | 'primary';
|
|
1845
|
+
disabled?: boolean;
|
|
1846
|
+
}
|
|
1847
|
+
interface HeaderActionEvent {
|
|
1848
|
+
id: string;
|
|
1849
|
+
}
|
|
1850
|
+
declare class Header {
|
|
1851
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
1852
|
+
readonly title: _angular_core.InputSignal<string>;
|
|
1853
|
+
readonly description: _angular_core.InputSignal<string>;
|
|
1854
|
+
readonly titleAlign: _angular_core.InputSignal<HeaderTitleAlign>;
|
|
1855
|
+
readonly size: _angular_core.InputSignal<HeaderSize>;
|
|
1856
|
+
readonly surface: _angular_core.InputSignal<HeaderSurface>;
|
|
1857
|
+
readonly inset: _angular_core.InputSignal<HeaderInset>;
|
|
1858
|
+
readonly showBack: _angular_core.InputSignal<boolean>;
|
|
1859
|
+
readonly showDropdown: _angular_core.InputSignal<boolean>;
|
|
1860
|
+
readonly showDescriptionDropdown: _angular_core.InputSignal<boolean>;
|
|
1861
|
+
readonly showStatusBar: _angular_core.InputSignal<boolean>;
|
|
1862
|
+
readonly statusTime: _angular_core.InputSignal<string>;
|
|
1863
|
+
readonly actions: _angular_core.InputSignal<readonly HeaderAction[]>;
|
|
1864
|
+
readonly backClicked: _angular_core.OutputEmitterRef<void>;
|
|
1865
|
+
readonly titleClicked: _angular_core.OutputEmitterRef<void>;
|
|
1866
|
+
readonly actionSelected: _angular_core.OutputEmitterRef<HeaderActionEvent>;
|
|
1867
|
+
protected readonly backIcon: LucideIconData;
|
|
1868
|
+
protected readonly downIcon: LucideIconData;
|
|
1869
|
+
protected readonly signalIcon: LucideIconData;
|
|
1870
|
+
protected readonly wifiIcon: LucideIconData;
|
|
1871
|
+
protected readonly batteryIcon: LucideIconData;
|
|
1872
|
+
protected readonly hasActions: _angular_core.Signal<boolean>;
|
|
1873
|
+
protected readonly hasStart: _angular_core.Signal<boolean>;
|
|
1874
|
+
protected readonly isTitleInteractive: _angular_core.Signal<boolean>;
|
|
1875
|
+
protected readonly titleButtonAriaLabel: _angular_core.Signal<string>;
|
|
1876
|
+
protected onBackClick(): void;
|
|
1877
|
+
protected onTitleClick(): void;
|
|
1878
|
+
protected onTitleKeydown(event: Event): void;
|
|
1879
|
+
protected onActionClick(action: HeaderAction): void;
|
|
1880
|
+
protected trackByActionId(_index: number, action: HeaderAction): string;
|
|
1881
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Header, never>;
|
|
1882
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Header, "m-header", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "titleAlign": { "alias": "titleAlign"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "surface": { "alias": "surface"; "required": false; "isSignal": true; }; "inset": { "alias": "inset"; "required": false; "isSignal": true; }; "showBack": { "alias": "showBack"; "required": false; "isSignal": true; }; "showDropdown": { "alias": "showDropdown"; "required": false; "isSignal": true; }; "showDescriptionDropdown": { "alias": "showDescriptionDropdown"; "required": false; "isSignal": true; }; "showStatusBar": { "alias": "showStatusBar"; "required": false; "isSignal": true; }; "statusTime": { "alias": "statusTime"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; }, { "backClicked": "backClicked"; "titleClicked": "titleClicked"; "actionSelected": "actionSelected"; }, never, ["[mHeaderStart]", "[header-left]", "[mHeaderTitle]", "[header-title]", "[mHeaderDescription]", "[mHeaderMeta]", "[header-right]", "[mHeaderActions]", "[mHeaderToolbarStart]", "[toolbar-left]", "m-toolbar", "[mHeaderToolbar]", "[mHeaderToolbarCenter]", "[toolbar-center]", "[mHeaderToolbarActions]", "[toolbar-right]"], true, never>;
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
declare class ListPageSidebarSlotDirective {
|
|
1886
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageSidebarSlotDirective, never>;
|
|
1887
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageSidebarSlotDirective, "[SListPageSidebar]", never, {}, {}, never, never, true, never>;
|
|
1888
|
+
}
|
|
1889
|
+
declare class ListPageSidebarComponent {
|
|
1890
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageSidebarComponent, never>;
|
|
1891
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListPageSidebarComponent, "s-list-page-sidebar", never, {}, {}, never, ["*"], true, never>;
|
|
1892
|
+
}
|
|
1893
|
+
declare class ListPageSidebarSearchDirective {
|
|
1894
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageSidebarSearchDirective, never>;
|
|
1895
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageSidebarSearchDirective, "[SListPageSidebarSearch]", never, {}, {}, never, never, true, never>;
|
|
1896
|
+
}
|
|
1897
|
+
declare class ListPageSidebarTreeDirective {
|
|
1898
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageSidebarTreeDirective, never>;
|
|
1899
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageSidebarTreeDirective, "[SListPageSidebarTree]", never, {}, {}, never, never, true, never>;
|
|
1900
|
+
}
|
|
1901
|
+
declare class ListPageHeaderSlotDirective {
|
|
1902
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageHeaderSlotDirective, never>;
|
|
1903
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageHeaderSlotDirective, "[SListPageHeader]", never, {}, {}, never, never, true, never>;
|
|
1904
|
+
}
|
|
1905
|
+
declare class ListPageHeaderComponent {
|
|
1906
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageHeaderComponent, never>;
|
|
1907
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListPageHeaderComponent, "s-list-page-header", never, {}, {}, never, ["*"], true, never>;
|
|
1908
|
+
}
|
|
1909
|
+
declare class ListPageHeaderRowComponent {
|
|
1910
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageHeaderRowComponent, never>;
|
|
1911
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListPageHeaderRowComponent, "s-list-page-header-row", never, {}, {}, never, ["*"], true, never>;
|
|
1912
|
+
}
|
|
1913
|
+
declare class ListPageHeaderLayoutDirective {
|
|
1914
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageHeaderLayoutDirective, never>;
|
|
1915
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageHeaderLayoutDirective, "[SListPageHeaderLayout]", never, {}, {}, never, never, true, never>;
|
|
1916
|
+
}
|
|
1917
|
+
declare class ListPageHeaderFiltersDirective {
|
|
1918
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageHeaderFiltersDirective, never>;
|
|
1919
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageHeaderFiltersDirective, "[SListPageHeaderFilters]", never, {}, {}, never, never, true, never>;
|
|
1920
|
+
}
|
|
1921
|
+
declare class ListPageHeaderActionsDirective {
|
|
1922
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageHeaderActionsDirective, never>;
|
|
1923
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageHeaderActionsDirective, "[SListPageHeaderActions]", never, {}, {}, never, never, true, never>;
|
|
1924
|
+
}
|
|
1925
|
+
declare class ListPageSummarySlotDirective {
|
|
1926
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageSummarySlotDirective, never>;
|
|
1927
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageSummarySlotDirective, "[SListPageSummary]", never, {}, {}, never, never, true, never>;
|
|
1928
|
+
}
|
|
1929
|
+
declare class ListPageContentDesktopSlotDirective {
|
|
1930
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageContentDesktopSlotDirective, never>;
|
|
1931
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageContentDesktopSlotDirective, "[SListPageContentDesktop]", never, {}, {}, never, never, true, never>;
|
|
1932
|
+
}
|
|
1933
|
+
declare class ListPageFilterPanelComponent {
|
|
1934
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageFilterPanelComponent, never>;
|
|
1935
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListPageFilterPanelComponent, "s-list-page-filter-panel", never, {}, {}, never, ["*"], true, never>;
|
|
1936
|
+
}
|
|
1937
|
+
declare class ListPageContentDesktopComponent {
|
|
1938
|
+
readonly withTabs: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1939
|
+
readonly minHeight: _angular_core.InputSignal<string>;
|
|
1940
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageContentDesktopComponent, never>;
|
|
1941
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListPageContentDesktopComponent, "s-list-page-content-desktop", never, { "withTabs": { "alias": "withTabs"; "required": false; "isSignal": true; }; "minHeight": { "alias": "minHeight"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1942
|
+
}
|
|
1943
|
+
declare class ListPagePaginationSlotDirective {
|
|
1944
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPagePaginationSlotDirective, never>;
|
|
1945
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPagePaginationSlotDirective, "[SListPagePagination]", never, {}, {}, never, never, true, never>;
|
|
1946
|
+
}
|
|
1947
|
+
declare class ListPagePaginationComponent {
|
|
1948
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPagePaginationComponent, never>;
|
|
1949
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListPagePaginationComponent, "s-list-page-pagination", never, {}, {}, never, ["*"], true, never>;
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
declare class ListPageFilterGridDirective {
|
|
1953
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageFilterGridDirective, never>;
|
|
1954
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageFilterGridDirective, "[SListPageFilterGrid]", never, {}, {}, never, never, true, never>;
|
|
1955
|
+
}
|
|
1956
|
+
declare class ListPageFilterFieldDirective {
|
|
1957
|
+
readonly dateRange: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1958
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageFilterFieldDirective, never>;
|
|
1959
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageFilterFieldDirective, "[SListPageFilterField]", never, { "dateRange": { "alias": "SListPageFilterFieldDateRange"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1960
|
+
}
|
|
1961
|
+
declare class ListPageFilterLabelDirective {
|
|
1962
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageFilterLabelDirective, never>;
|
|
1963
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageFilterLabelDirective, "[SListPageFilterLabel]", never, {}, {}, never, never, true, never>;
|
|
1964
|
+
}
|
|
1965
|
+
declare class ListPageFilterControlDirective {
|
|
1966
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageFilterControlDirective, never>;
|
|
1967
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageFilterControlDirective, "[SListPageFilterControl]", never, {}, {}, never, never, true, never>;
|
|
1968
|
+
}
|
|
1969
|
+
declare class ListPageFilterActionsDirective {
|
|
1970
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageFilterActionsDirective, never>;
|
|
1971
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageFilterActionsDirective, "[SListPageFilterActions]", never, {}, {}, never, never, true, never>;
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
declare class ListPageTableWrapDirective {
|
|
1975
|
+
readonly withTabs: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1976
|
+
readonly minHeight: _angular_core.InputSignal<string>;
|
|
1977
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageTableWrapDirective, never>;
|
|
1978
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageTableWrapDirective, "[SListPageTableWrap]", never, { "withTabs": { "alias": "withTabs"; "required": false; "isSignal": true; }; "minHeight": { "alias": "minHeight"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1979
|
+
}
|
|
1980
|
+
declare class ListPageTableDirective {
|
|
1981
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageTableDirective, never>;
|
|
1982
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageTableDirective, "table[SListPageTable]", never, {}, {}, never, never, true, never>;
|
|
1983
|
+
}
|
|
1984
|
+
declare class ListPageTableScrollDirective {
|
|
1985
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageTableScrollDirective, never>;
|
|
1986
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageTableScrollDirective, "[SListPageTableScroll]", never, {}, {}, never, never, true, never>;
|
|
1987
|
+
}
|
|
1988
|
+
declare class ListPageCheckboxColDirective {
|
|
1989
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageCheckboxColDirective, never>;
|
|
1990
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageCheckboxColDirective, "[SListPageCheckboxCol]", never, {}, {}, never, never, true, never>;
|
|
1991
|
+
}
|
|
1992
|
+
declare class ListPageActionColDirective {
|
|
1993
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageActionColDirective, never>;
|
|
1994
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageActionColDirective, "[SListPageActionCol]", never, {}, {}, never, never, true, never>;
|
|
1995
|
+
}
|
|
1996
|
+
declare class ListPageColumnDirective {
|
|
1997
|
+
readonly width: _angular_core.InputSignal<string>;
|
|
1998
|
+
readonly align: _angular_core.InputSignal<"center" | "left" | "right">;
|
|
1999
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageColumnDirective, never>;
|
|
2000
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageColumnDirective, "[SListPageColumn]", never, { "width": { "alias": "SListPageColumn"; "required": false; "isSignal": true; }; "align": { "alias": "SListPageColumnAlign"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2001
|
+
}
|
|
2002
|
+
declare class ListPageCellTextDirective {
|
|
2003
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageCellTextDirective, never>;
|
|
2004
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageCellTextDirective, "[SListPageCellText]", never, {}, {}, never, never, true, never>;
|
|
2005
|
+
}
|
|
2006
|
+
|
|
2007
|
+
declare class ListPageEmptyDirective {
|
|
2008
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageEmptyDirective, never>;
|
|
2009
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageEmptyDirective, "[SListPageEmpty]", never, {}, {}, never, never, true, never>;
|
|
2010
|
+
}
|
|
2011
|
+
declare class ListPageTabsDirective {
|
|
2012
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageTabsDirective, never>;
|
|
2013
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageTabsDirective, "[SListPageTabs]", never, {}, {}, never, never, true, never>;
|
|
2014
|
+
}
|
|
2015
|
+
declare class ListPageTabDirective {
|
|
2016
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageTabDirective, never>;
|
|
2017
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageTabDirective, "[SListPageTab]", never, {}, {}, never, never, true, never>;
|
|
2018
|
+
}
|
|
2019
|
+
declare class ListPageRowActionsDirective {
|
|
2020
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageRowActionsDirective, never>;
|
|
2021
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageRowActionsDirective, "[SListPageRowActions]", never, {}, {}, never, never, true, never>;
|
|
2022
|
+
}
|
|
2023
|
+
declare class ListPageRowActionTriggerDirective {
|
|
2024
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageRowActionTriggerDirective, never>;
|
|
2025
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageRowActionTriggerDirective, "[SListPageRowActionTrigger]", never, {}, {}, never, never, true, never>;
|
|
2026
|
+
}
|
|
2027
|
+
declare class ListPageRowActionDangerDirective {
|
|
2028
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageRowActionDangerDirective, never>;
|
|
2029
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageRowActionDangerDirective, "[SListPageRowActionDanger]", never, {}, {}, never, never, true, never>;
|
|
2030
|
+
}
|
|
2031
|
+
declare class ListPageIconButtonDirective {
|
|
2032
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageIconButtonDirective, never>;
|
|
2033
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageIconButtonDirective, "[SListPageIconButton]", never, {}, {}, never, never, true, never>;
|
|
2034
|
+
}
|
|
2035
|
+
declare class ListPageFileActionDirective {
|
|
2036
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageFileActionDirective, never>;
|
|
2037
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageFileActionDirective, "[SListPageFileAction]", never, {}, {}, never, never, true, never>;
|
|
2038
|
+
}
|
|
2039
|
+
declare class ListPageTreeToggleDirective {
|
|
2040
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageTreeToggleDirective, never>;
|
|
2041
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageTreeToggleDirective, "[SListPageTreeToggle]", never, {}, {}, never, never, true, never>;
|
|
2042
|
+
}
|
|
2043
|
+
declare class ListPageTreeIndentDirective {
|
|
2044
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageTreeIndentDirective, never>;
|
|
2045
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ListPageTreeIndentDirective, "[SListPageTreeIndent]", never, {}, {}, never, never, true, never>;
|
|
2046
|
+
}
|
|
2047
|
+
|
|
2048
|
+
declare class ListPageLayoutComponent {
|
|
2049
|
+
protected readonly sidebarSlot: _angular_core.Signal<ListPageSidebarSlotDirective>;
|
|
2050
|
+
protected readonly sidebarComponent: _angular_core.Signal<ListPageSidebarComponent>;
|
|
2051
|
+
protected readonly paginationTemplate: _angular_core.Signal<TemplateRef<any>>;
|
|
2052
|
+
protected readonly paginationComponent: _angular_core.Signal<ListPagePaginationComponent>;
|
|
2053
|
+
protected readonly desktopContentTemplate: _angular_core.Signal<TemplateRef<any>>;
|
|
2054
|
+
protected readonly hasSidebar: _angular_core.Signal<boolean>;
|
|
2055
|
+
protected readonly hasPagination: _angular_core.Signal<boolean>;
|
|
2056
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListPageLayoutComponent, never>;
|
|
2057
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListPageLayoutComponent, "s-list-page-layout", never, {}, {}, ["sidebarSlot", "sidebarComponent", "paginationTemplate", "paginationComponent", "desktopContentTemplate"], ["[SListPageHeader]", "s-list-page-header", "[SListPageSummary]", "s-filter-summary", "[SListPageSidebar]", "s-list-page-sidebar", "s-list-page-content-desktop", "s-list-page-pagination"], true, never>;
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
declare class ListSearchPanel {
|
|
2061
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
2062
|
+
readonly triggerText: _angular_core.InputSignal<string>;
|
|
2063
|
+
readonly inputId: _angular_core.InputSignal<string>;
|
|
2064
|
+
readonly searchIconClass: _angular_core.InputSignal<string>;
|
|
2065
|
+
readonly keyword: _angular_core.ModelSignal<string>;
|
|
2066
|
+
readonly search: _angular_core.OutputEmitterRef<void>;
|
|
2067
|
+
readonly reset: _angular_core.OutputEmitterRef<void>;
|
|
2068
|
+
protected readonly isMobileSearchOpen: _angular_core.WritableSignal<boolean>;
|
|
2069
|
+
protected readonly searchIcon: lucide_angular.LucideIconData;
|
|
2070
|
+
protected readonly closeIcon: lucide_angular.LucideIconData;
|
|
2071
|
+
private readonly mobileMediaQuery;
|
|
2072
|
+
protected openMobileSearchDialog(): void;
|
|
2073
|
+
protected openMobileSearchDialogOnSmallScreen(event: Event): void;
|
|
2074
|
+
protected closeMobileSearchDialog(): void;
|
|
2075
|
+
protected emitSearch(): void;
|
|
2076
|
+
protected emitReset(): void;
|
|
2077
|
+
private isMobileViewport;
|
|
2078
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListSearchPanel, never>;
|
|
2079
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListSearchPanel, "s-list-search-panel", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "triggerText": { "alias": "triggerText"; "required": false; "isSignal": true; }; "inputId": { "alias": "inputId"; "required": false; "isSignal": true; }; "searchIconClass": { "alias": "searchIconClass"; "required": false; "isSignal": true; }; "keyword": { "alias": "keyword"; "required": false; "isSignal": true; }; }, { "keyword": "keywordChange"; "search": "search"; "reset": "reset"; }, never, never, true, never>;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
interface PlatformLoginFeature {
|
|
2083
|
+
readonly label: string;
|
|
2084
|
+
readonly description?: string;
|
|
2085
|
+
readonly icon?: LucideIconData;
|
|
2086
|
+
readonly toneClass?: string;
|
|
2087
|
+
}
|
|
2088
|
+
interface PlatformLoginSocialProvider {
|
|
2089
|
+
readonly id: string;
|
|
2090
|
+
readonly label: string;
|
|
2091
|
+
readonly icon?: LucideIconData;
|
|
2092
|
+
readonly toneClass?: string;
|
|
2093
|
+
readonly disabled?: boolean;
|
|
2094
|
+
}
|
|
2095
|
+
interface PlatformLoginSubmitEvent {
|
|
2096
|
+
readonly username: string;
|
|
2097
|
+
readonly password: string;
|
|
2098
|
+
readonly rememberMe: boolean;
|
|
2099
|
+
}
|
|
2100
|
+
declare class PlatformLoginPage implements OnInit {
|
|
2101
|
+
readonly brandMark: _angular_core.InputSignal<string>;
|
|
2102
|
+
readonly brandName: _angular_core.InputSignal<string>;
|
|
2103
|
+
readonly productName: _angular_core.InputSignal<string>;
|
|
2104
|
+
readonly heroAriaLabel: _angular_core.InputSignal<string>;
|
|
2105
|
+
readonly heroEyebrow: _angular_core.InputSignal<string>;
|
|
2106
|
+
readonly heroTitle: _angular_core.InputSignal<string>;
|
|
2107
|
+
readonly heroText: _angular_core.InputSignal<string>;
|
|
2108
|
+
readonly features: _angular_core.InputSignal<readonly PlatformLoginFeature[]>;
|
|
2109
|
+
readonly showLanguageSwitcher: _angular_core.InputSignal<boolean>;
|
|
2110
|
+
readonly languageLabel: _angular_core.InputSignal<string>;
|
|
2111
|
+
readonly panelEyebrow: _angular_core.InputSignal<string>;
|
|
2112
|
+
readonly panelTitle: _angular_core.InputSignal<string>;
|
|
2113
|
+
readonly panelSubtitle: _angular_core.InputSignal<string>;
|
|
2114
|
+
readonly usernameLabel: _angular_core.InputSignal<string>;
|
|
2115
|
+
readonly passwordLabel: _angular_core.InputSignal<string>;
|
|
2116
|
+
readonly usernamePlaceholder: _angular_core.InputSignal<string>;
|
|
2117
|
+
readonly passwordPlaceholder: _angular_core.InputSignal<string>;
|
|
2118
|
+
readonly rememberLabel: _angular_core.InputSignal<string>;
|
|
2119
|
+
readonly forgotPasswordText: _angular_core.InputSignal<string>;
|
|
2120
|
+
readonly dividerText: _angular_core.InputSignal<string>;
|
|
2121
|
+
readonly registerPrompt: _angular_core.InputSignal<string>;
|
|
2122
|
+
readonly registerText: _angular_core.InputSignal<string>;
|
|
2123
|
+
readonly metaText: _angular_core.InputSignal<string>;
|
|
2124
|
+
readonly submitText: _angular_core.InputSignal<string>;
|
|
2125
|
+
readonly submittingText: _angular_core.InputSignal<string>;
|
|
2126
|
+
readonly emptyMessage: _angular_core.InputSignal<string>;
|
|
2127
|
+
readonly errorMessage: _angular_core.InputSignal<string>;
|
|
2128
|
+
readonly submitting: _angular_core.InputSignal<boolean>;
|
|
2129
|
+
readonly defaultUsername: _angular_core.InputSignal<string>;
|
|
2130
|
+
readonly rememberDefault: _angular_core.InputSignal<boolean>;
|
|
2131
|
+
readonly showForgotPassword: _angular_core.InputSignal<boolean>;
|
|
2132
|
+
readonly showRegister: _angular_core.InputSignal<boolean>;
|
|
2133
|
+
readonly socialProviders: _angular_core.InputSignal<readonly PlatformLoginSocialProvider[]>;
|
|
2134
|
+
readonly loginSubmit: _angular_core.OutputEmitterRef<PlatformLoginSubmitEvent>;
|
|
2135
|
+
readonly forgotPasswordClick: _angular_core.OutputEmitterRef<void>;
|
|
2136
|
+
readonly registerClick: _angular_core.OutputEmitterRef<void>;
|
|
2137
|
+
readonly languageClick: _angular_core.OutputEmitterRef<void>;
|
|
2138
|
+
readonly socialLogin: _angular_core.OutputEmitterRef<PlatformLoginSocialProvider>;
|
|
2139
|
+
protected readonly userIcon: LucideIconData;
|
|
2140
|
+
protected readonly keyIcon: LucideIconData;
|
|
2141
|
+
protected readonly eyeIcon: LucideIconData;
|
|
2142
|
+
protected readonly eyeOffIcon: LucideIconData;
|
|
2143
|
+
protected readonly languagesIcon: LucideIconData;
|
|
2144
|
+
protected readonly chevronDownIcon: LucideIconData;
|
|
2145
|
+
protected readonly username: _angular_core.WritableSignal<string>;
|
|
2146
|
+
protected readonly password: _angular_core.WritableSignal<string>;
|
|
2147
|
+
protected readonly rememberMe: _angular_core.WritableSignal<boolean>;
|
|
2148
|
+
protected readonly showPassword: _angular_core.WritableSignal<boolean>;
|
|
2149
|
+
protected readonly localErrorMessage: _angular_core.WritableSignal<string>;
|
|
2150
|
+
protected readonly visibleErrorMessage: _angular_core.Signal<string>;
|
|
2151
|
+
ngOnInit(): void;
|
|
2152
|
+
protected togglePassword(): void;
|
|
2153
|
+
protected submit(): void;
|
|
2154
|
+
protected emitForgotPassword(): void;
|
|
2155
|
+
protected emitRegister(): void;
|
|
2156
|
+
protected emitLanguageClick(): void;
|
|
2157
|
+
protected emitSocialLogin(provider: PlatformLoginSocialProvider): void;
|
|
2158
|
+
protected featureClass(toneClass: string | undefined): string;
|
|
2159
|
+
protected socialProviderClass(toneClass: string | undefined): string;
|
|
2160
|
+
protected socialProviderInitial(provider: PlatformLoginSocialProvider): string;
|
|
2161
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformLoginPage, never>;
|
|
2162
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformLoginPage, "s-login-page", never, { "brandMark": { "alias": "brandMark"; "required": false; "isSignal": true; }; "brandName": { "alias": "brandName"; "required": false; "isSignal": true; }; "productName": { "alias": "productName"; "required": false; "isSignal": true; }; "heroAriaLabel": { "alias": "heroAriaLabel"; "required": false; "isSignal": true; }; "heroEyebrow": { "alias": "heroEyebrow"; "required": false; "isSignal": true; }; "heroTitle": { "alias": "heroTitle"; "required": false; "isSignal": true; }; "heroText": { "alias": "heroText"; "required": false; "isSignal": true; }; "features": { "alias": "features"; "required": false; "isSignal": true; }; "showLanguageSwitcher": { "alias": "showLanguageSwitcher"; "required": false; "isSignal": true; }; "languageLabel": { "alias": "languageLabel"; "required": false; "isSignal": true; }; "panelEyebrow": { "alias": "panelEyebrow"; "required": false; "isSignal": true; }; "panelTitle": { "alias": "panelTitle"; "required": false; "isSignal": true; }; "panelSubtitle": { "alias": "panelSubtitle"; "required": false; "isSignal": true; }; "usernameLabel": { "alias": "usernameLabel"; "required": false; "isSignal": true; }; "passwordLabel": { "alias": "passwordLabel"; "required": false; "isSignal": true; }; "usernamePlaceholder": { "alias": "usernamePlaceholder"; "required": false; "isSignal": true; }; "passwordPlaceholder": { "alias": "passwordPlaceholder"; "required": false; "isSignal": true; }; "rememberLabel": { "alias": "rememberLabel"; "required": false; "isSignal": true; }; "forgotPasswordText": { "alias": "forgotPasswordText"; "required": false; "isSignal": true; }; "dividerText": { "alias": "dividerText"; "required": false; "isSignal": true; }; "registerPrompt": { "alias": "registerPrompt"; "required": false; "isSignal": true; }; "registerText": { "alias": "registerText"; "required": false; "isSignal": true; }; "metaText": { "alias": "metaText"; "required": false; "isSignal": true; }; "submitText": { "alias": "submitText"; "required": false; "isSignal": true; }; "submittingText": { "alias": "submittingText"; "required": false; "isSignal": true; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; "isSignal": true; }; "errorMessage": { "alias": "errorMessage"; "required": false; "isSignal": true; }; "submitting": { "alias": "submitting"; "required": false; "isSignal": true; }; "defaultUsername": { "alias": "defaultUsername"; "required": false; "isSignal": true; }; "rememberDefault": { "alias": "rememberDefault"; "required": false; "isSignal": true; }; "showForgotPassword": { "alias": "showForgotPassword"; "required": false; "isSignal": true; }; "showRegister": { "alias": "showRegister"; "required": false; "isSignal": true; }; "socialProviders": { "alias": "socialProviders"; "required": false; "isSignal": true; }; }, { "loginSubmit": "loginSubmit"; "forgotPasswordClick": "forgotPasswordClick"; "registerClick": "registerClick"; "languageClick": "languageClick"; "socialLogin": "socialLogin"; }, never, never, true, never>;
|
|
2163
|
+
}
|
|
2164
|
+
|
|
2165
|
+
type AppMenuIcon = string | LucideIconData;
|
|
2166
|
+
declare class MenuItemComponent {
|
|
2167
|
+
private closeMenu;
|
|
2168
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
2169
|
+
readonly tone: _angular_core.InputSignal<"default" | "danger">;
|
|
2170
|
+
readonly value: _angular_core.InputSignal<string>;
|
|
2171
|
+
readonly icon: _angular_core.InputSignal<AppMenuIcon>;
|
|
2172
|
+
readonly select: _angular_core.OutputEmitterRef<void>;
|
|
2173
|
+
private readonly menuItem;
|
|
2174
|
+
setCloseMenu(closeMenu: (() => void) | null): void;
|
|
2175
|
+
protected isTextIcon(icon: AppMenuIcon): icon is string;
|
|
2176
|
+
protected handleSelect(): void;
|
|
2177
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuItemComponent, never>;
|
|
2178
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MenuItemComponent, "s-menu-item", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "tone": { "alias": "tone"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, { "select": "select"; }, never, ["*"], true, never>;
|
|
2179
|
+
}
|
|
2180
|
+
declare class MenuComponent {
|
|
2181
|
+
readonly origin: _angular_core.InputSignal<ElementRef<HTMLElement> | CdkOverlayOrigin>;
|
|
2182
|
+
readonly trigger: _angular_core.InputSignal<MenuTrigger<string>>;
|
|
2183
|
+
readonly positions: _angular_core.InputSignal<ConnectedPosition[]>;
|
|
2184
|
+
readonly panelWidth: _angular_core.InputSignal<string>;
|
|
2185
|
+
readonly formatMenu: _angular_core.Signal<Menu<string>>;
|
|
2186
|
+
readonly menuItems: _angular_core.Signal<readonly MenuItemComponent[]>;
|
|
2187
|
+
readonly hasItems: _angular_core.Signal<boolean>;
|
|
2188
|
+
constructor();
|
|
2189
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
2190
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MenuComponent, "s-menu", never, { "origin": { "alias": "origin"; "required": true; "isSignal": true; }; "trigger": { "alias": "trigger"; "required": true; "isSignal": true; }; "positions": { "alias": "positions"; "required": false; "isSignal": true; }; "panelWidth": { "alias": "panelWidth"; "required": false; "isSignal": true; }; }, {}, ["menuItems"], ["*"], true, never>;
|
|
2191
|
+
}
|
|
2192
|
+
|
|
2193
|
+
type MerchantCardChipTone = 'neutral' | 'success' | 'warning' | 'danger' | 'info';
|
|
2194
|
+
interface MerchantCardChip {
|
|
2195
|
+
label: string;
|
|
2196
|
+
tone?: MerchantCardChipTone;
|
|
2197
|
+
icon?: LucideIconData;
|
|
2198
|
+
}
|
|
2199
|
+
declare class MerchantCard {
|
|
2200
|
+
readonly imageUrl: _angular_core.InputSignal<string>;
|
|
2201
|
+
readonly imageAlt: _angular_core.InputSignal<string>;
|
|
2202
|
+
readonly imageBadge: _angular_core.InputSignal<string>;
|
|
2203
|
+
readonly showMoreButton: _angular_core.InputSignal<boolean>;
|
|
2204
|
+
readonly name: _angular_core.InputSignal<string>;
|
|
2205
|
+
readonly content: _angular_core.InputSignal<string>;
|
|
2206
|
+
readonly badge: _angular_core.InputSignal<string>;
|
|
2207
|
+
readonly badgeTone: _angular_core.InputSignal<MerchantCardChipTone>;
|
|
2208
|
+
readonly tags: _angular_core.InputSignal<readonly MerchantCardChip[]>;
|
|
2209
|
+
readonly moreAriaLabel: _angular_core.InputSignal<string>;
|
|
2210
|
+
readonly moreClick: _angular_core.OutputEmitterRef<Event>;
|
|
2211
|
+
protected readonly moreIcon: LucideIconData;
|
|
2212
|
+
protected trackByChipLabel(_index: number, chip: MerchantCardChip): string;
|
|
2213
|
+
protected onMoreClick(event: Event): void;
|
|
2214
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MerchantCard, never>;
|
|
2215
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MerchantCard, "s-merchant-card", never, { "imageUrl": { "alias": "imageUrl"; "required": false; "isSignal": true; }; "imageAlt": { "alias": "imageAlt"; "required": false; "isSignal": true; }; "imageBadge": { "alias": "imageBadge"; "required": false; "isSignal": true; }; "showMoreButton": { "alias": "showMoreButton"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; "badge": { "alias": "badge"; "required": false; "isSignal": true; }; "badgeTone": { "alias": "badgeTone"; "required": false; "isSignal": true; }; "tags": { "alias": "tags"; "required": false; "isSignal": true; }; "moreAriaLabel": { "alias": "moreAriaLabel"; "required": false; "isSignal": true; }; }, { "moreClick": "moreClick"; }, never, ["[merchantCardMediaOverlay]", "[merchantCardActions]"], true, never>;
|
|
2216
|
+
}
|
|
2217
|
+
|
|
2218
|
+
declare const M_ALPHABET_DEFAULT_LETTERS: string[];
|
|
2219
|
+
type MAlphabetPlacement = 'inline' | 'edge';
|
|
2220
|
+
declare class MAlphabet {
|
|
2221
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2222
|
+
readonly letters: _angular_core.InputSignal<readonly string[]>;
|
|
2223
|
+
readonly placement: _angular_core.InputSignal<MAlphabetPlacement>;
|
|
2224
|
+
protected trackByLetter(_index: number, letter: string): string;
|
|
2225
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MAlphabet, never>;
|
|
2226
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MAlphabet, "m-alphabet", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "letters": { "alias": "letters"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2227
|
+
}
|
|
2228
|
+
|
|
2229
|
+
type MItemStandardTone = 'amber' | 'blue' | 'cyan' | 'green' | 'mint' | 'orange' | 'purple' | 'rose' | 'sky' | 'slate' | 'warm';
|
|
2230
|
+
type MItemAvatarIconShape = 'circle' | 'rounded-square' | 'square';
|
|
2231
|
+
declare class MItemProfileAvatarDirective {
|
|
2232
|
+
readonly mItemProfileAvatar: _angular_core.InputSignalWithTransform<MItemStandardTone, string>;
|
|
2233
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemProfileAvatarDirective, never>;
|
|
2234
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemProfileAvatarDirective, "[mItemProfileAvatar]", never, { "mItemProfileAvatar": { "alias": "mItemProfileAvatar"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2235
|
+
}
|
|
2236
|
+
declare class MItemProfileTitleDirective {
|
|
2237
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemProfileTitleDirective, never>;
|
|
2238
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemProfileTitleDirective, "[mItemProfileTitle]", never, {}, {}, never, never, true, never>;
|
|
2239
|
+
}
|
|
2240
|
+
declare class MItemProfileNameDirective {
|
|
2241
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemProfileNameDirective, never>;
|
|
2242
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemProfileNameDirective, "[mItemProfileName]", never, {}, {}, never, never, true, never>;
|
|
2243
|
+
}
|
|
2244
|
+
declare class MItemPresenceDirective {
|
|
2245
|
+
readonly mItemPresence: _angular_core.InputSignalWithTransform<boolean, string | boolean>;
|
|
2246
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2247
|
+
protected readonly resolvedAriaLabel: _angular_core.Signal<string>;
|
|
2248
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemPresenceDirective, never>;
|
|
2249
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemPresenceDirective, "[mItemPresence]", never, { "mItemPresence": { "alias": "mItemPresence"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2250
|
+
}
|
|
2251
|
+
declare class MItemAvatarFrameDirective {
|
|
2252
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemAvatarFrameDirective, never>;
|
|
2253
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemAvatarFrameDirective, "[mItemAvatarFrame]", never, {}, {}, never, never, true, never>;
|
|
2254
|
+
}
|
|
2255
|
+
declare class MItemAvatarPortraitDirective {
|
|
2256
|
+
readonly mItemAvatarPortrait: _angular_core.InputSignalWithTransform<MItemStandardTone, string>;
|
|
2257
|
+
protected readonly resolvedTone: _angular_core.Signal<MItemStandardTone>;
|
|
2258
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemAvatarPortraitDirective, never>;
|
|
2259
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemAvatarPortraitDirective, "[mItemAvatarPortrait]", never, { "mItemAvatarPortrait": { "alias": "mItemAvatarPortrait"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2260
|
+
}
|
|
2261
|
+
declare class MItemAvatarGroupDirective {
|
|
2262
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemAvatarGroupDirective, never>;
|
|
2263
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemAvatarGroupDirective, "[mItemAvatarGroup]", never, {}, {}, never, never, true, never>;
|
|
2264
|
+
}
|
|
2265
|
+
declare class MItemAvatarFaceDirective {
|
|
2266
|
+
readonly mItemAvatarFace: _angular_core.InputSignalWithTransform<MItemStandardTone, string>;
|
|
2267
|
+
protected readonly resolvedTone: _angular_core.Signal<MItemStandardTone>;
|
|
2268
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemAvatarFaceDirective, never>;
|
|
2269
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemAvatarFaceDirective, "[mItemAvatarFace]", never, { "mItemAvatarFace": { "alias": "mItemAvatarFace"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2270
|
+
}
|
|
2271
|
+
declare class MItemAvatarIconDirective {
|
|
2272
|
+
readonly mItemAvatarIcon: _angular_core.InputSignalWithTransform<MItemStandardTone, string>;
|
|
2273
|
+
readonly mItemAvatarIconShape: _angular_core.InputSignalWithTransform<MItemAvatarIconShape, string>;
|
|
2274
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemAvatarIconDirective, never>;
|
|
2275
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemAvatarIconDirective, "[mItemAvatarIcon]", never, { "mItemAvatarIcon": { "alias": "mItemAvatarIcon"; "required": false; "isSignal": true; }; "mItemAvatarIconShape": { "alias": "mItemAvatarIconShape"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2276
|
+
}
|
|
2277
|
+
declare class MItemIndicatorDirective {
|
|
2278
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemIndicatorDirective, never>;
|
|
2279
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemIndicatorDirective, "[mItemIndicator]", never, {}, {}, never, never, true, never>;
|
|
2280
|
+
}
|
|
2281
|
+
declare class MItemBadgeDirective {
|
|
2282
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemBadgeDirective, never>;
|
|
2283
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemBadgeDirective, "[mItemBadge]", never, {}, {}, never, never, true, never>;
|
|
2284
|
+
}
|
|
2285
|
+
declare class MItemUnreadDotDirective {
|
|
2286
|
+
protected readonly unreadLabel = "\u672A\u8BFB";
|
|
2287
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemUnreadDotDirective, never>;
|
|
2288
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemUnreadDotDirective, "[mItemUnreadDot]", never, {}, {}, never, never, true, never>;
|
|
2289
|
+
}
|
|
2290
|
+
declare class MItemMarkerDirective {
|
|
2291
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemMarkerDirective, never>;
|
|
2292
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemMarkerDirective, "[mItemMarker]", never, {}, {}, never, never, true, never>;
|
|
2293
|
+
}
|
|
2294
|
+
declare class MItemMenuIconDirective {
|
|
2295
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemMenuIconDirective, never>;
|
|
2296
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemMenuIconDirective, "[mItemMenuIcon]", never, {}, {}, never, never, true, never>;
|
|
2297
|
+
}
|
|
2298
|
+
declare class MItemMenuChevronDirective {
|
|
2299
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemMenuChevronDirective, never>;
|
|
2300
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemMenuChevronDirective, "[mItemMenuChevron]", never, {}, {}, never, never, true, never>;
|
|
2301
|
+
}
|
|
2302
|
+
declare const M_ITEM_APPEARANCE_DIRECTIVES: readonly [typeof MItemProfileAvatarDirective, typeof MItemProfileTitleDirective, typeof MItemProfileNameDirective, typeof MItemPresenceDirective, typeof MItemAvatarFrameDirective, typeof MItemAvatarPortraitDirective, typeof MItemAvatarGroupDirective, typeof MItemAvatarFaceDirective, typeof MItemAvatarIconDirective, typeof MItemIndicatorDirective, typeof MItemBadgeDirective, typeof MItemUnreadDotDirective, typeof MItemMarkerDirective, typeof MItemMenuIconDirective, typeof MItemMenuChevronDirective];
|
|
2303
|
+
|
|
2304
|
+
declare class MItemPrefixSlot {
|
|
2305
|
+
readonly template: TemplateRef<unknown>;
|
|
2306
|
+
constructor(template: TemplateRef<unknown>);
|
|
2307
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemPrefixSlot, never>;
|
|
2308
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemPrefixSlot, "ng-template[MItemPrefix]", never, {}, {}, never, never, true, never>;
|
|
2309
|
+
}
|
|
2310
|
+
declare class MItemAvatarSlot {
|
|
2311
|
+
readonly template: TemplateRef<unknown>;
|
|
2312
|
+
constructor(template: TemplateRef<unknown>);
|
|
2313
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemAvatarSlot, never>;
|
|
2314
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemAvatarSlot, "ng-template[MItemAvatar]", never, {}, {}, never, never, true, never>;
|
|
2315
|
+
}
|
|
2316
|
+
declare class MItemTitleSlot {
|
|
2317
|
+
readonly template: TemplateRef<unknown>;
|
|
2318
|
+
constructor(template: TemplateRef<unknown>);
|
|
2319
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemTitleSlot, never>;
|
|
2320
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemTitleSlot, "ng-template[MItemTitle]", never, {}, {}, never, never, true, never>;
|
|
2321
|
+
}
|
|
2322
|
+
declare class MItemSummarySlot {
|
|
2323
|
+
readonly template: TemplateRef<unknown>;
|
|
2324
|
+
constructor(template: TemplateRef<unknown>);
|
|
2325
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemSummarySlot, never>;
|
|
2326
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemSummarySlot, "ng-template[MItemSummary]", never, {}, {}, never, never, true, never>;
|
|
2327
|
+
}
|
|
2328
|
+
declare class MItemMetaSlot {
|
|
2329
|
+
readonly template: TemplateRef<unknown>;
|
|
2330
|
+
constructor(template: TemplateRef<unknown>);
|
|
2331
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemMetaSlot, never>;
|
|
2332
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemMetaSlot, "ng-template[MItemMeta]", never, {}, {}, never, never, true, never>;
|
|
2333
|
+
}
|
|
2334
|
+
declare class MItemFooterSlot {
|
|
2335
|
+
readonly template: TemplateRef<unknown>;
|
|
2336
|
+
constructor(template: TemplateRef<unknown>);
|
|
2337
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemFooterSlot, never>;
|
|
2338
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemFooterSlot, "ng-template[MItemFooter]", never, {}, {}, never, never, true, never>;
|
|
2339
|
+
}
|
|
2340
|
+
declare class MItemTrailingSlot {
|
|
2341
|
+
readonly template: TemplateRef<unknown>;
|
|
2342
|
+
constructor(template: TemplateRef<unknown>);
|
|
2343
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemTrailingSlot, never>;
|
|
2344
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemTrailingSlot, "ng-template[MItemTrailing]", never, {}, {}, never, never, true, never>;
|
|
2345
|
+
}
|
|
2346
|
+
declare class MItemStatusSlot {
|
|
2347
|
+
readonly template: TemplateRef<unknown>;
|
|
2348
|
+
constructor(template: TemplateRef<unknown>);
|
|
2349
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemStatusSlot, never>;
|
|
2350
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemStatusSlot, "ng-template[MItemStatus]", never, {}, {}, never, never, true, never>;
|
|
2351
|
+
}
|
|
2352
|
+
declare class MItemActionsSlot {
|
|
2353
|
+
readonly template: TemplateRef<unknown>;
|
|
2354
|
+
constructor(template: TemplateRef<unknown>);
|
|
2355
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItemActionsSlot, never>;
|
|
2356
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MItemActionsSlot, "ng-template[MItemActions]", never, {}, {}, never, never, true, never>;
|
|
2357
|
+
}
|
|
2358
|
+
declare const M_ITEM_SLOT_DIRECTIVES: readonly [typeof MItemPrefixSlot, typeof MItemAvatarSlot, typeof MItemTitleSlot, typeof MItemSummarySlot, typeof MItemMetaSlot, typeof MItemFooterSlot, typeof MItemTrailingSlot, typeof MItemStatusSlot, typeof MItemActionsSlot];
|
|
2359
|
+
|
|
2360
|
+
type MListVariant = 'plain' | 'card' | 'isolated' | 'feed' | 'menu' | 'request' | 'profile' | 'shortcut';
|
|
2361
|
+
type MListDensity = 'compact' | 'default' | 'comfortable';
|
|
2362
|
+
type MListDivider = 'none' | 'inset' | 'full';
|
|
2363
|
+
type MItemVariant = 'message' | 'workflow' | 'mail' | 'activity' | 'menu' | 'request' | 'shortcut';
|
|
2364
|
+
type MItemLayout = 'one-line' | 'two-line' | 'three-line';
|
|
2365
|
+
type MItemStatus = 'none' | 'unread' | 'read' | 'todo' | 'processing' | 'warning';
|
|
2366
|
+
|
|
2367
|
+
declare class MItem {
|
|
2368
|
+
readonly variant: _angular_core.InputSignal<MItemVariant>;
|
|
2369
|
+
readonly layout: _angular_core.InputSignal<MItemLayout>;
|
|
2370
|
+
readonly status: _angular_core.InputSignal<MItemStatus>;
|
|
2371
|
+
readonly statusLabel: _angular_core.InputSignal<string>;
|
|
2372
|
+
readonly title: _angular_core.InputSignal<string>;
|
|
2373
|
+
readonly time: _angular_core.InputSignal<string>;
|
|
2374
|
+
readonly content: _angular_core.InputSignal<string>;
|
|
2375
|
+
readonly extra: _angular_core.InputSignal<string>;
|
|
2376
|
+
readonly subtitle: _angular_core.InputSignal<string>;
|
|
2377
|
+
readonly avatarSrc: _angular_core.InputSignal<string>;
|
|
2378
|
+
readonly avatarText: _angular_core.InputSignal<string>;
|
|
2379
|
+
readonly avatarAlt: _angular_core.InputSignal<string>;
|
|
2380
|
+
readonly avatarSize: _angular_core.InputSignalWithTransform<number, string | number>;
|
|
2381
|
+
readonly avatarShape: _angular_core.InputSignal<AvatarShape>;
|
|
2382
|
+
readonly avatarIndicator: _angular_core.InputSignal<number>;
|
|
2383
|
+
readonly avatarIndicatorType: _angular_core.InputSignal<AvatarIndicatorType>;
|
|
2384
|
+
readonly clickable: _angular_core.InputSignal<boolean>;
|
|
2385
|
+
readonly bordered: _angular_core.InputSignal<boolean>;
|
|
2386
|
+
readonly compact: _angular_core.InputSignal<boolean>;
|
|
2387
|
+
readonly showFooter: _angular_core.InputSignal<boolean>;
|
|
2388
|
+
readonly selectable: _angular_core.InputSignal<boolean>;
|
|
2389
|
+
readonly selected: _angular_core.InputSignal<boolean>;
|
|
2390
|
+
readonly active: _angular_core.InputSignal<boolean>;
|
|
2391
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
2392
|
+
readonly itemClick: _angular_core.OutputEmitterRef<Event>;
|
|
2393
|
+
protected prefixSlot?: MItemPrefixSlot;
|
|
2394
|
+
protected avatarSlot?: MItemAvatarSlot;
|
|
2395
|
+
protected titleSlot?: MItemTitleSlot;
|
|
2396
|
+
protected summarySlot?: MItemSummarySlot;
|
|
2397
|
+
protected metaSlot?: MItemMetaSlot;
|
|
2398
|
+
protected footerSlot?: MItemFooterSlot;
|
|
2399
|
+
protected trailingSlot?: MItemTrailingSlot;
|
|
2400
|
+
protected statusSlot?: MItemStatusSlot;
|
|
2401
|
+
protected actionsSlot?: MItemActionsSlot;
|
|
2402
|
+
protected onActivate(event: Event): void;
|
|
2403
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MItem, never>;
|
|
2404
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MItem, "m-item", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "statusLabel": { "alias": "statusLabel"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "time": { "alias": "time"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; "extra": { "alias": "extra"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "avatarSrc": { "alias": "avatarSrc"; "required": false; "isSignal": true; }; "avatarText": { "alias": "avatarText"; "required": false; "isSignal": true; }; "avatarAlt": { "alias": "avatarAlt"; "required": false; "isSignal": true; }; "avatarSize": { "alias": "avatarSize"; "required": false; "isSignal": true; }; "avatarShape": { "alias": "avatarShape"; "required": false; "isSignal": true; }; "avatarIndicator": { "alias": "avatarIndicator"; "required": false; "isSignal": true; }; "avatarIndicatorType": { "alias": "avatarIndicatorType"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; "bordered": { "alias": "bordered"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; "showFooter": { "alias": "showFooter"; "required": false; "isSignal": true; }; "selectable": { "alias": "selectable"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; }, ["prefixSlot", "avatarSlot", "titleSlot", "summarySlot", "metaSlot", "footerSlot", "trailingSlot", "statusSlot", "actionsSlot"], ["[m-item-prefix]", "[mItemPrefix]", "[m-item-start]", "[mItemStart]", "[m-item-avatar]", "[mItemAvatar]", "[m-item-title]", "[mItemTitle]", "[m-item-title-text]", "[mItemTitleText]", "[m-item-meta]", "[mItemMeta]", "[m-item-time]", "[mItemTime]", "[m-item-description]", "[mItemDescription]", "[m-item-content]", "[mItemContent]", "[m-item-content-text]", "[mItemContentText]", "[m-item-actions]", "[mItemActions]", "[m-item-end]", "[mItemEnd]", "[m-item-extra]", "[mItemExtra]", "[m-item-extra-text]", "[mItemExtraText]", "[m-item-append]", "[mItemAppend]", "[m-item-footer]", "[mItemFooter]"], true, never>;
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2407
|
+
declare class MList {
|
|
2408
|
+
private readonly defaultSectionTitleId;
|
|
2409
|
+
readonly variant: _angular_core.InputSignal<MListVariant>;
|
|
2410
|
+
readonly density: _angular_core.InputSignal<MListDensity>;
|
|
2411
|
+
readonly divider: _angular_core.InputSignal<MListDivider>;
|
|
2412
|
+
readonly card: _angular_core.InputSignal<boolean>;
|
|
2413
|
+
readonly compact: _angular_core.InputSignal<boolean>;
|
|
2414
|
+
readonly isolated: _angular_core.InputSignal<boolean>;
|
|
2415
|
+
readonly selectable: _angular_core.InputSignal<boolean>;
|
|
2416
|
+
readonly loading: _angular_core.InputSignal<boolean>;
|
|
2417
|
+
readonly empty: _angular_core.InputSignal<boolean>;
|
|
2418
|
+
readonly emptyText: _angular_core.InputSignal<string>;
|
|
2419
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2420
|
+
readonly sectionTitle: _angular_core.InputSignal<string>;
|
|
2421
|
+
readonly sectionTitleId: _angular_core.InputSignal<string>;
|
|
2422
|
+
protected readonly resolvedAriaLabel: _angular_core.Signal<string>;
|
|
2423
|
+
protected readonly resolvedSectionTitleId: _angular_core.Signal<string>;
|
|
2424
|
+
protected readonly isCard: _angular_core.Signal<boolean>;
|
|
2425
|
+
protected readonly isCompact: _angular_core.Signal<boolean>;
|
|
2426
|
+
protected readonly isComfortable: _angular_core.Signal<boolean>;
|
|
2427
|
+
protected readonly isIsolated: _angular_core.Signal<boolean>;
|
|
2428
|
+
protected readonly isFeed: _angular_core.Signal<boolean>;
|
|
2429
|
+
protected readonly isMenu: _angular_core.Signal<boolean>;
|
|
2430
|
+
protected readonly isRequest: _angular_core.Signal<boolean>;
|
|
2431
|
+
protected readonly isProfile: _angular_core.Signal<boolean>;
|
|
2432
|
+
protected readonly isShortcut: _angular_core.Signal<boolean>;
|
|
2433
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MList, never>;
|
|
2434
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MList, "m-list", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "density": { "alias": "density"; "required": false; "isSignal": true; }; "divider": { "alias": "divider"; "required": false; "isSignal": true; }; "card": { "alias": "card"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; "isolated": { "alias": "isolated"; "required": false; "isSignal": true; }; "selectable": { "alias": "selectable"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "empty": { "alias": "empty"; "required": false; "isSignal": true; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "sectionTitle": { "alias": "sectionTitle"; "required": false; "isSignal": true; }; "sectionTitleId": { "alias": "sectionTitleId"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
2435
|
+
}
|
|
2436
|
+
|
|
2437
|
+
declare class MobilePageHeaderSlotDirective {
|
|
2438
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MobilePageHeaderSlotDirective, never>;
|
|
2439
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MobilePageHeaderSlotDirective, "[mPageHeader]", never, {}, {}, never, never, true, never>;
|
|
2440
|
+
}
|
|
2441
|
+
declare class MobilePageContentSlotDirective {
|
|
2442
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MobilePageContentSlotDirective, never>;
|
|
2443
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MobilePageContentSlotDirective, "[mPageContent]", never, {}, {}, never, never, true, never>;
|
|
2444
|
+
}
|
|
2445
|
+
declare class MobilePageFooterSlotDirective {
|
|
2446
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MobilePageFooterSlotDirective, never>;
|
|
2447
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MobilePageFooterSlotDirective, "[mPageFooter]", never, {}, {}, never, never, true, never>;
|
|
2448
|
+
}
|
|
2449
|
+
declare class MobilePageLayoutComponent {
|
|
2450
|
+
protected readonly headerSlot: _angular_core.Signal<MobilePageHeaderSlotDirective>;
|
|
2451
|
+
protected readonly contentSlot: _angular_core.Signal<MobilePageContentSlotDirective>;
|
|
2452
|
+
protected readonly footerSlot: _angular_core.Signal<MobilePageFooterSlotDirective>;
|
|
2453
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MobilePageLayoutComponent, never>;
|
|
2454
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MobilePageLayoutComponent, "m-page-layout", never, {}, {}, ["headerSlot", "contentSlot", "footerSlot"], ["[mPageHeader]", "[mPageContent]", "[mPageFooter]"], true, never>;
|
|
2455
|
+
}
|
|
2456
|
+
|
|
2457
|
+
declare class MToolbar {
|
|
2458
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MToolbar, never>;
|
|
2459
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MToolbar, "m-toolbar", never, {}, {}, never, ["*"], true, never>;
|
|
2460
|
+
}
|
|
2461
|
+
declare class MContent {
|
|
2462
|
+
readonly stack: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2463
|
+
readonly gap: _angular_core.InputSignalWithTransform<number, string | number>;
|
|
2464
|
+
readonly padding: _angular_core.InputSignal<string>;
|
|
2465
|
+
protected contentDisplay(): string | null;
|
|
2466
|
+
protected contentFlexDirection(): string | null;
|
|
2467
|
+
protected contentGap(): string | null;
|
|
2468
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MContent, never>;
|
|
2469
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MContent, "m-content", never, { "stack": { "alias": "stack"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "padding": { "alias": "padding"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
2470
|
+
}
|
|
2471
|
+
declare class MFooter {
|
|
2472
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MFooter, never>;
|
|
2473
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MFooter, "m-footer", never, {}, {}, never, ["*"], true, never>;
|
|
2474
|
+
}
|
|
2475
|
+
declare class MPage {
|
|
2476
|
+
readonly padding: _angular_core.InputSignal<string>;
|
|
2477
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MPage, never>;
|
|
2478
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MPage, "m-page", never, { "padding": { "alias": "padding"; "required": false; "isSignal": true; }; }, {}, never, ["m-header,[mPageHeader]", "m-content,[mPageContent]", "m-footer,[mPageFooter]", "*"], true, never>;
|
|
2479
|
+
}
|
|
2480
|
+
|
|
2481
|
+
declare class PPageHeaderSlotDirective {
|
|
2482
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PPageHeaderSlotDirective, never>;
|
|
2483
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PPageHeaderSlotDirective, "[pPageHeader]", never, {}, {}, never, never, true, never>;
|
|
2484
|
+
}
|
|
2485
|
+
declare class PPageSidebarSlotDirective {
|
|
2486
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PPageSidebarSlotDirective, never>;
|
|
2487
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PPageSidebarSlotDirective, "[pPageSidebar]", never, {}, {}, never, never, true, never>;
|
|
2488
|
+
}
|
|
2489
|
+
declare class PPageContentSlotDirective {
|
|
2490
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PPageContentSlotDirective, never>;
|
|
2491
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PPageContentSlotDirective, "[pPageContent]", never, {}, {}, never, never, true, never>;
|
|
2492
|
+
}
|
|
2493
|
+
declare class PPageFooterSlotDirective {
|
|
2494
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PPageFooterSlotDirective, never>;
|
|
2495
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PPageFooterSlotDirective, "[pPageFooter]", never, {}, {}, never, never, true, never>;
|
|
2496
|
+
}
|
|
2497
|
+
declare class PToolbar {
|
|
2498
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PToolbar, never>;
|
|
2499
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PToolbar, "p-toolbar", never, {}, {}, never, ["*"], true, never>;
|
|
2500
|
+
}
|
|
2501
|
+
declare class PSidebar {
|
|
2502
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PSidebar, never>;
|
|
2503
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PSidebar, "p-sidebar", never, {}, {}, never, ["*"], true, never>;
|
|
2504
|
+
}
|
|
2505
|
+
declare class PContent {
|
|
2506
|
+
readonly stack: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2507
|
+
readonly gap: _angular_core.InputSignalWithTransform<number, string | number>;
|
|
2508
|
+
protected contentDisplay(): string | null;
|
|
2509
|
+
protected contentFlexDirection(): string | null;
|
|
2510
|
+
protected contentGap(): string | null;
|
|
2511
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PContent, never>;
|
|
2512
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PContent, "p-content", never, { "stack": { "alias": "stack"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
2513
|
+
}
|
|
2514
|
+
declare class PFooter {
|
|
2515
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PFooter, never>;
|
|
2516
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PFooter, "p-footer", never, {}, {}, never, ["*"], true, never>;
|
|
2517
|
+
}
|
|
2518
|
+
declare class PPage {
|
|
2519
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PPage, never>;
|
|
2520
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PPage, "p-page", never, {}, {}, never, ["p-toolbar,[pPageHeader]", "p-sidebar,[pPageSidebar]", "p-content,[pPageContent]", "p-footer,[pPageFooter]", "*"], true, never>;
|
|
2521
|
+
}
|
|
2522
|
+
|
|
2523
|
+
declare class MPersonCardMobileLayer {
|
|
2524
|
+
readonly active: _angular_core.InputSignal<boolean>;
|
|
2525
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2526
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MPersonCardMobileLayer, never>;
|
|
2527
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MPersonCardMobileLayer, "m-person-card-mobile-layer", never, { "active": { "alias": "active"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
2528
|
+
}
|
|
2529
|
+
declare class MPersonCardDesktopLayer {
|
|
2530
|
+
readonly active: _angular_core.InputSignal<boolean>;
|
|
2531
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2532
|
+
readonly closeAriaLabel: _angular_core.InputSignal<string>;
|
|
2533
|
+
readonly closeRequested: _angular_core.OutputEmitterRef<void>;
|
|
2534
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MPersonCardDesktopLayer, never>;
|
|
2535
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MPersonCardDesktopLayer, "m-person-card-desktop-layer", never, { "active": { "alias": "active"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "closeAriaLabel": { "alias": "closeAriaLabel"; "required": false; "isSignal": true; }; }, { "closeRequested": "closeRequested"; }, never, ["*"], true, never>;
|
|
2536
|
+
}
|
|
2537
|
+
|
|
2538
|
+
declare class MProductShellRailSlot {
|
|
2539
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MProductShellRailSlot, never>;
|
|
2540
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MProductShellRailSlot, "[mProductShellRail]", never, {}, {}, never, never, true, never>;
|
|
2541
|
+
}
|
|
2542
|
+
declare class MProductShellMainSlot {
|
|
2543
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MProductShellMainSlot, never>;
|
|
2544
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MProductShellMainSlot, "[mProductShellMain]", never, {}, {}, never, never, true, never>;
|
|
2545
|
+
}
|
|
2546
|
+
declare class MProductShellBottomSlot {
|
|
2547
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MProductShellBottomSlot, never>;
|
|
2548
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MProductShellBottomSlot, "[mProductShellBottom]", never, {}, {}, never, never, true, never>;
|
|
2549
|
+
}
|
|
2550
|
+
declare class MProductShell {
|
|
2551
|
+
readonly hosted: _angular_core.InputSignal<boolean>;
|
|
2552
|
+
readonly mobile: _angular_core.InputSignal<boolean>;
|
|
2553
|
+
readonly mobileSubpage: _angular_core.InputSignal<boolean>;
|
|
2554
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MProductShell, never>;
|
|
2555
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MProductShell, "m-product-shell", never, { "hosted": { "alias": "hosted"; "required": false; "isSignal": true; }; "mobile": { "alias": "mobile"; "required": false; "isSignal": true; }; "mobileSubpage": { "alias": "mobileSubpage"; "required": false; "isSignal": true; }; }, {}, never, ["[mProductShellRail]", "[mProductShellMain]", "[mProductShellBottom]"], true, never>;
|
|
2556
|
+
}
|
|
2557
|
+
|
|
2558
|
+
type PaginationVariant = 'default' | 'compact';
|
|
2559
|
+
declare class Pagination {
|
|
2560
|
+
private readonly destroyRef;
|
|
2561
|
+
currentPage: _angular_core.ModelSignal<number>;
|
|
2562
|
+
readonly pageSizeOptions: _angular_core.InputSignal<number[]>;
|
|
2563
|
+
readonly totalItems: _angular_core.InputSignalWithTransform<number, string | number>;
|
|
2564
|
+
readonly maxVisiblePages: _angular_core.InputSignalWithTransform<number, string | number>;
|
|
2565
|
+
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2566
|
+
readonly variant: _angular_core.InputSignalWithTransform<PaginationVariant, string>;
|
|
2567
|
+
readonly showSizeChanger: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2568
|
+
readonly showQuickJumper: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2569
|
+
readonly pageSizeControl: FormControl<number>;
|
|
2570
|
+
readonly quickJumpControl: FormControl<string>;
|
|
2571
|
+
private readonly selectedPageSize;
|
|
2572
|
+
readonly pageChange: _angular_core.OutputEmitterRef<number>;
|
|
2573
|
+
readonly pageSizeChange: _angular_core.OutputEmitterRef<number>;
|
|
2574
|
+
protected readonly prevIcon: lucide_angular.LucideIconData;
|
|
2575
|
+
protected readonly nextIcon: lucide_angular.LucideIconData;
|
|
2576
|
+
readonly totalPages: _angular_core.Signal<number>;
|
|
2577
|
+
readonly pages: _angular_core.Signal<(string | number)[]>;
|
|
2578
|
+
readonly isCompact: _angular_core.Signal<boolean>;
|
|
2579
|
+
readonly canGoPrev: _angular_core.Signal<boolean>;
|
|
2580
|
+
readonly canGoNext: _angular_core.Signal<boolean>;
|
|
2581
|
+
readonly pageSizeSelectOptions: _angular_core.Signal<BsSelectOption<number>[]>;
|
|
2582
|
+
constructor();
|
|
2583
|
+
goToPage(page: number | string): void;
|
|
2584
|
+
prevPage(): void;
|
|
2585
|
+
nextPage(): void;
|
|
2586
|
+
quickJump(): void;
|
|
2587
|
+
trackPage(index: number, page: number | string): number | string;
|
|
2588
|
+
private syncControlDisabledState;
|
|
2589
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Pagination, never>;
|
|
2590
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Pagination, "s-pagination", never, { "currentPage": { "alias": "currentPage"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "totalItems": { "alias": "totalItems"; "required": false; "isSignal": true; }; "maxVisiblePages": { "alias": "maxVisiblePages"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "showSizeChanger": { "alias": "showSizeChanger"; "required": false; "isSignal": true; }; "showQuickJumper": { "alias": "showQuickJumper"; "required": false; "isSignal": true; }; }, { "currentPage": "currentPageChange"; "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; }, never, never, true, never>;
|
|
2591
|
+
}
|
|
2592
|
+
|
|
2593
|
+
interface MRailNavItem extends MTabItem {
|
|
2594
|
+
readonly badge?: number | string | null;
|
|
2595
|
+
readonly route?: string | null;
|
|
2596
|
+
}
|
|
2597
|
+
declare class MRailNav {
|
|
2598
|
+
private readonly router;
|
|
2599
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2600
|
+
readonly actionAriaLabel: _angular_core.InputSignal<string>;
|
|
2601
|
+
readonly actionIcon: _angular_core.InputSignal<LucideIconData>;
|
|
2602
|
+
readonly items: _angular_core.InputSignal<readonly MRailNavItem[]>;
|
|
2603
|
+
readonly selectedItemId: _angular_core.InputSignal<string | number>;
|
|
2604
|
+
readonly actionSelected: _angular_core.OutputEmitterRef<void>;
|
|
2605
|
+
readonly itemSelected: _angular_core.OutputEmitterRef<MRailNavItem>;
|
|
2606
|
+
protected onSelect(item: MRailNavItem): void;
|
|
2607
|
+
protected trackByItemId(_index: number, item: MRailNavItem): string | number;
|
|
2608
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MRailNav, never>;
|
|
2609
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MRailNav, "m-rail-nav", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "actionAriaLabel": { "alias": "actionAriaLabel"; "required": false; "isSignal": true; }; "actionIcon": { "alias": "actionIcon"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "selectedItemId": { "alias": "selectedItemId"; "required": false; "isSignal": true; }; }, { "actionSelected": "actionSelected"; "itemSelected": "itemSelected"; }, never, never, true, never>;
|
|
2610
|
+
}
|
|
2611
|
+
|
|
2612
|
+
declare class RoutePlaceholderPageComponent {
|
|
2613
|
+
readonly title: _angular_core.InputSignal<string>;
|
|
2614
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RoutePlaceholderPageComponent, never>;
|
|
2615
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RoutePlaceholderPageComponent, "s-route-placeholder-page", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2616
|
+
}
|
|
2617
|
+
|
|
2618
|
+
interface SectionNavItem {
|
|
2619
|
+
id: string | number;
|
|
2620
|
+
label: string;
|
|
2621
|
+
disabled?: boolean;
|
|
2622
|
+
meta?: Record<string, unknown>;
|
|
2623
|
+
}
|
|
2624
|
+
interface SectionNavGroup {
|
|
2625
|
+
id: string | number;
|
|
2626
|
+
label: string;
|
|
2627
|
+
icon?: LucideIconData;
|
|
2628
|
+
items: readonly SectionNavItem[];
|
|
2629
|
+
collapsible?: boolean;
|
|
2630
|
+
}
|
|
2631
|
+
interface SectionNavSelectChange {
|
|
2632
|
+
group: SectionNavGroup;
|
|
2633
|
+
item: SectionNavItem;
|
|
2634
|
+
}
|
|
2635
|
+
interface SectionNavToggleChange {
|
|
2636
|
+
group: SectionNavGroup;
|
|
2637
|
+
expanded: boolean;
|
|
2638
|
+
}
|
|
2639
|
+
declare class SectionNav {
|
|
2640
|
+
private readonly expandedStateTouched;
|
|
2641
|
+
readonly groups: _angular_core.InputSignal<readonly SectionNavGroup[]>;
|
|
2642
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2643
|
+
readonly selectedItemId: _angular_core.ModelSignal<string | number>;
|
|
2644
|
+
readonly expandedGroupIds: _angular_core.ModelSignal<readonly (string | number)[]>;
|
|
2645
|
+
readonly expandAllByDefault: _angular_core.InputSignal<boolean>;
|
|
2646
|
+
readonly itemSelected: _angular_core.OutputEmitterRef<SectionNavSelectChange>;
|
|
2647
|
+
readonly groupToggled: _angular_core.OutputEmitterRef<SectionNavToggleChange>;
|
|
2648
|
+
protected readonly chevronIcon: LucideIconData;
|
|
2649
|
+
protected readonly resolvedExpandedGroupIds: _angular_core.Signal<readonly (string | number)[]>;
|
|
2650
|
+
protected isExpanded(group: SectionNavGroup): boolean;
|
|
2651
|
+
protected isSelected(item: SectionNavItem): boolean;
|
|
2652
|
+
protected toggleGroup(group: SectionNavGroup): void;
|
|
2653
|
+
protected selectItem(group: SectionNavGroup, item: SectionNavItem): void;
|
|
2654
|
+
protected trackByGroupId(_index: number, group: SectionNavGroup): string | number;
|
|
2655
|
+
protected trackByItemId(_index: number, item: SectionNavItem): string | number;
|
|
2656
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SectionNav, never>;
|
|
2657
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SectionNav, "s-section-nav", never, { "groups": { "alias": "groups"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "selectedItemId": { "alias": "selectedItemId"; "required": false; "isSignal": true; }; "expandedGroupIds": { "alias": "expandedGroupIds"; "required": false; "isSignal": true; }; "expandAllByDefault": { "alias": "expandAllByDefault"; "required": false; "isSignal": true; }; }, { "selectedItemId": "selectedItemIdChange"; "expandedGroupIds": "expandedGroupIdsChange"; "itemSelected": "itemSelected"; "groupToggled": "groupToggled"; }, never, never, true, never>;
|
|
2658
|
+
}
|
|
2659
|
+
|
|
2660
|
+
interface SegmentedOption {
|
|
2661
|
+
id: string;
|
|
2662
|
+
label: string;
|
|
2663
|
+
disabled?: boolean;
|
|
2664
|
+
}
|
|
2665
|
+
interface SegmentedSelectEvent {
|
|
2666
|
+
option: SegmentedOption;
|
|
2667
|
+
}
|
|
2668
|
+
declare class Segmented {
|
|
2669
|
+
readonly options: _angular_core.InputSignal<readonly SegmentedOption[]>;
|
|
2670
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2671
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
2672
|
+
readonly selectedId: _angular_core.ModelSignal<string>;
|
|
2673
|
+
readonly optionSelected: _angular_core.OutputEmitterRef<SegmentedSelectEvent>;
|
|
2674
|
+
protected readonly hasOptions: _angular_core.Signal<boolean>;
|
|
2675
|
+
constructor();
|
|
2676
|
+
protected isSelected(optionId: string): boolean;
|
|
2677
|
+
protected onSelect(option: SegmentedOption): void;
|
|
2678
|
+
protected trackByOptionId(_index: number, option: SegmentedOption): string;
|
|
2679
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Segmented, never>;
|
|
2680
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Segmented, "s-segmented", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "selectedId": { "alias": "selectedId"; "required": false; "isSignal": true; }; }, { "selectedId": "selectedIdChange"; "optionSelected": "optionSelected"; }, never, never, true, never>;
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2683
|
+
type PlatformSearchAppearance = 'default' | 'soft' | 'topbar';
|
|
2684
|
+
declare class PlatformSearchComponent {
|
|
2685
|
+
readonly keyword: _angular_core.ModelSignal<string>;
|
|
2686
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
2687
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2688
|
+
readonly appearance: _angular_core.InputSignal<PlatformSearchAppearance>;
|
|
2689
|
+
protected readonly searchIcon: lucide_angular.LucideIconData;
|
|
2690
|
+
protected updateKeyword(event: Event): void;
|
|
2691
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformSearchComponent, never>;
|
|
2692
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlatformSearchComponent, "s-search", never, { "keyword": { "alias": "keyword"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; }, { "keyword": "keywordChange"; }, never, never, true, never>;
|
|
2693
|
+
}
|
|
2694
|
+
|
|
2695
|
+
interface SearchBarSubmitEvent {
|
|
2696
|
+
value: string;
|
|
2697
|
+
}
|
|
2698
|
+
declare class SearchBar {
|
|
2699
|
+
readonly value: _angular_core.ModelSignal<string>;
|
|
2700
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
2701
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2702
|
+
readonly cancelText: _angular_core.InputSignal<string>;
|
|
2703
|
+
readonly showCancel: _angular_core.InputSignal<boolean>;
|
|
2704
|
+
readonly showBack: _angular_core.InputSignal<boolean>;
|
|
2705
|
+
readonly autofocus: _angular_core.InputSignal<boolean>;
|
|
2706
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
2707
|
+
readonly backClicked: _angular_core.OutputEmitterRef<void>;
|
|
2708
|
+
readonly cancelClicked: _angular_core.OutputEmitterRef<void>;
|
|
2709
|
+
readonly cleared: _angular_core.OutputEmitterRef<void>;
|
|
2710
|
+
readonly submitted: _angular_core.OutputEmitterRef<SearchBarSubmitEvent>;
|
|
2711
|
+
protected readonly searchIcon: lucide_angular.LucideIconData;
|
|
2712
|
+
protected readonly backIcon: lucide_angular.LucideIconData;
|
|
2713
|
+
protected readonly clearIcon: lucide_angular.LucideIconData;
|
|
2714
|
+
protected readonly hasValue: _angular_core.Signal<boolean>;
|
|
2715
|
+
protected updateValue(event: Event): void;
|
|
2716
|
+
protected clearValue(): void;
|
|
2717
|
+
protected onBackClick(): void;
|
|
2718
|
+
protected onCancelClick(): void;
|
|
2719
|
+
protected onSubmit(): void;
|
|
2720
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchBar, never>;
|
|
2721
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchBar, "m-search-bar", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "cancelText": { "alias": "cancelText"; "required": false; "isSignal": true; }; "showCancel": { "alias": "showCancel"; "required": false; "isSignal": true; }; "showBack": { "alias": "showBack"; "required": false; "isSignal": true; }; "autofocus": { "alias": "autofocus"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "backClicked": "backClicked"; "cancelClicked": "cancelClicked"; "cleared": "cleared"; "submitted": "submitted"; }, never, never, true, never>;
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2724
|
+
type StatusDotStatus = 'success' | 'error' | 'default' | 'processing' | 'warning';
|
|
2725
|
+
type StatusDotSize = 'sm' | 'md';
|
|
2726
|
+
declare class StatusDot {
|
|
2727
|
+
readonly status: _angular_core.InputSignal<StatusDotStatus>;
|
|
2728
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
2729
|
+
readonly size: _angular_core.InputSignal<StatusDotSize>;
|
|
2730
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2731
|
+
protected readonly resolvedAriaLabel: _angular_core.Signal<string>;
|
|
2732
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<StatusDot, never>;
|
|
2733
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StatusDot, "s-status-dot", never, { "status": { "alias": "status"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2734
|
+
}
|
|
2735
|
+
|
|
2736
|
+
type StepStatus = 'wait' | 'process' | 'finish' | 'error';
|
|
2737
|
+
type StepsVariant = 'default' | 'dot' | 'navigation';
|
|
2738
|
+
type StepsOrientation = 'horizontal' | 'vertical';
|
|
2739
|
+
type StepsSize = 'default' | 'small';
|
|
2740
|
+
interface StepItem {
|
|
2741
|
+
id: string;
|
|
2742
|
+
title: string;
|
|
2743
|
+
description?: string;
|
|
2744
|
+
status?: StepStatus;
|
|
2745
|
+
icon?: LucideIconData;
|
|
2746
|
+
}
|
|
2747
|
+
declare class Steps {
|
|
2748
|
+
readonly items: _angular_core.InputSignal<readonly StepItem[]>;
|
|
2749
|
+
readonly current: _angular_core.InputSignal<number>;
|
|
2750
|
+
readonly variant: _angular_core.InputSignal<StepsVariant>;
|
|
2751
|
+
readonly orientation: _angular_core.InputSignal<StepsOrientation>;
|
|
2752
|
+
readonly size: _angular_core.InputSignal<StepsSize>;
|
|
2753
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2754
|
+
protected readonly normalizedItems: _angular_core.Signal<{
|
|
2755
|
+
index: number;
|
|
2756
|
+
status: StepStatus;
|
|
2757
|
+
isLast: boolean;
|
|
2758
|
+
id: string;
|
|
2759
|
+
title: string;
|
|
2760
|
+
description?: string;
|
|
2761
|
+
icon?: LucideIconData;
|
|
2762
|
+
}[]>;
|
|
2763
|
+
protected isDefault(): boolean;
|
|
2764
|
+
protected isDot(): boolean;
|
|
2765
|
+
protected isNavigation(): boolean;
|
|
2766
|
+
protected isVertical(): boolean;
|
|
2767
|
+
protected isSmall(): boolean;
|
|
2768
|
+
protected trackById(_index: number, item: StepItem): string;
|
|
2769
|
+
private resolveStatus;
|
|
2770
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Steps, never>;
|
|
2771
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Steps, "s-steps", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "current": { "alias": "current"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2772
|
+
}
|
|
2773
|
+
|
|
2774
|
+
type TabsVariant = 'contained' | 'line';
|
|
2775
|
+
interface TabItem {
|
|
2776
|
+
id: string;
|
|
2777
|
+
label: string;
|
|
2778
|
+
disabled?: boolean;
|
|
2779
|
+
}
|
|
2780
|
+
interface TabChangeEvent {
|
|
2781
|
+
item: TabItem;
|
|
2782
|
+
}
|
|
2783
|
+
declare class Tabs implements AfterViewInit {
|
|
2784
|
+
private readonly destroyRef;
|
|
2785
|
+
private readonly hostElement;
|
|
2786
|
+
readonly tabs: _angular_core.InputSignal<readonly TabItem[]>;
|
|
2787
|
+
readonly variant: _angular_core.InputSignal<TabsVariant>;
|
|
2788
|
+
readonly showOverflowActions: _angular_core.InputSignal<boolean>;
|
|
2789
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2790
|
+
readonly activeId: _angular_core.ModelSignal<string>;
|
|
2791
|
+
readonly tabChanged: _angular_core.OutputEmitterRef<TabChangeEvent>;
|
|
2792
|
+
protected readonly scrollContainer: _angular_core.Signal<ElementRef<HTMLElement>>;
|
|
2793
|
+
protected readonly canScrollPrev: _angular_core.WritableSignal<boolean>;
|
|
2794
|
+
protected readonly canScrollNext: _angular_core.WritableSignal<boolean>;
|
|
2795
|
+
protected readonly overflowTabIds: _angular_core.WritableSignal<string[]>;
|
|
2796
|
+
protected readonly overflowMenuOpen: _angular_core.WritableSignal<boolean>;
|
|
2797
|
+
protected readonly leftIcon: lucide_angular.LucideIconData;
|
|
2798
|
+
protected readonly rightIcon: lucide_angular.LucideIconData;
|
|
2799
|
+
protected readonly moreIcon: lucide_angular.LucideIconData;
|
|
2800
|
+
protected readonly isContained: _angular_core.Signal<boolean>;
|
|
2801
|
+
protected readonly visibleTabs: _angular_core.Signal<TabItem[]>;
|
|
2802
|
+
protected readonly overflowTabs: _angular_core.Signal<TabItem[]>;
|
|
2803
|
+
constructor();
|
|
2804
|
+
ngAfterViewInit(): void;
|
|
2805
|
+
protected isActive(tabId: string): boolean;
|
|
2806
|
+
protected selectTab(tab: TabItem): void;
|
|
2807
|
+
protected toggleOverflowMenu(event: Event): void;
|
|
2808
|
+
protected scrollPrev(): void;
|
|
2809
|
+
protected scrollNext(): void;
|
|
2810
|
+
protected trackById(_index: number, tab: TabItem): string;
|
|
2811
|
+
protected onDocumentClick(event: Event): void;
|
|
2812
|
+
private scrollTabsBy;
|
|
2813
|
+
private updateOverflowState;
|
|
2814
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Tabs, never>;
|
|
2815
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Tabs, "s-tabs", never, { "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "showOverflowActions": { "alias": "showOverflowActions"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "activeId": { "alias": "activeId"; "required": false; "isSignal": true; }; }, { "activeId": "activeIdChange"; "tabChanged": "tabChanged"; }, never, never, true, never>;
|
|
2816
|
+
}
|
|
2817
|
+
|
|
2818
|
+
type STagVariant = 'soft' | 'solid' | 'outline' | 'ghost' | 'text';
|
|
2819
|
+
type STagColor = 'neutral' | 'primary' | 'success' | 'warning' | 'danger' | 'info';
|
|
2820
|
+
type STagSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
2821
|
+
type STagShape = 'default' | 'round';
|
|
2822
|
+
type TagTone = STagColor;
|
|
2823
|
+
type TagVariant = STagVariant | 'outlined';
|
|
2824
|
+
declare class Tag {
|
|
2825
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
2826
|
+
readonly color: _angular_core.InputSignal<STagColor>;
|
|
2827
|
+
readonly tone: _angular_core.InputSignal<STagColor>;
|
|
2828
|
+
readonly variant: _angular_core.InputSignal<TagVariant>;
|
|
2829
|
+
readonly size: _angular_core.InputSignal<STagSize>;
|
|
2830
|
+
readonly shape: _angular_core.InputSignal<STagShape>;
|
|
2831
|
+
readonly closable: _angular_core.InputSignal<boolean>;
|
|
2832
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
2833
|
+
readonly href: _angular_core.InputSignal<string>;
|
|
2834
|
+
readonly target: _angular_core.InputSignal<string>;
|
|
2835
|
+
readonly rel: _angular_core.InputSignal<string>;
|
|
2836
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2837
|
+
readonly tagClicked: _angular_core.OutputEmitterRef<void>;
|
|
2838
|
+
readonly closeClicked: _angular_core.OutputEmitterRef<void>;
|
|
2839
|
+
protected readonly closeIcon: lucide_angular.LucideIconData;
|
|
2840
|
+
protected readonly externalLinkIcon: lucide_angular.LucideIconData;
|
|
2841
|
+
protected readonly isLink: _angular_core.Signal<boolean>;
|
|
2842
|
+
protected readonly displayLabel: _angular_core.Signal<string>;
|
|
2843
|
+
protected readonly resolvedAriaLabel: _angular_core.Signal<string>;
|
|
2844
|
+
protected readonly resolvedColor: _angular_core.Signal<STagColor>;
|
|
2845
|
+
protected readonly resolvedVariant: _angular_core.Signal<STagVariant>;
|
|
2846
|
+
protected readonly hostClass: _angular_core.Signal<string>;
|
|
2847
|
+
protected emitTagClicked(): void;
|
|
2848
|
+
protected emitCloseClicked(event: Event): void;
|
|
2849
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Tag, never>;
|
|
2850
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Tag, "s-tag", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "tone": { "alias": "tone"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "shape": { "alias": "shape"; "required": false; "isSignal": true; }; "closable": { "alias": "closable"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "href": { "alias": "href"; "required": false; "isSignal": true; }; "target": { "alias": "target"; "required": false; "isSignal": true; }; "rel": { "alias": "rel"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "tagClicked": "tagClicked"; "closeClicked": "closeClicked"; }, never, ["*", "*"], true, never>;
|
|
2851
|
+
}
|
|
2852
|
+
|
|
2853
|
+
type TimelineStatus = 'wait' | 'process' | 'finish' | 'error';
|
|
2854
|
+
type TimelineVariant = 'dot' | 'default';
|
|
2855
|
+
interface TimelineItem {
|
|
2856
|
+
id: string;
|
|
2857
|
+
title: string;
|
|
2858
|
+
description?: string;
|
|
2859
|
+
status?: TimelineStatus;
|
|
2860
|
+
icon?: LucideIconData;
|
|
2861
|
+
}
|
|
2862
|
+
declare class Timeline {
|
|
2863
|
+
readonly items: _angular_core.InputSignal<readonly TimelineItem[]>;
|
|
2864
|
+
readonly current: _angular_core.InputSignal<number>;
|
|
2865
|
+
readonly variant: _angular_core.InputSignal<TimelineVariant>;
|
|
2866
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2867
|
+
protected readonly normalizedItems: _angular_core.Signal<{
|
|
2868
|
+
index: number;
|
|
2869
|
+
status: TimelineStatus;
|
|
2870
|
+
isLast: boolean;
|
|
2871
|
+
id: string;
|
|
2872
|
+
title: string;
|
|
2873
|
+
description?: string;
|
|
2874
|
+
icon?: LucideIconData;
|
|
2875
|
+
}[]>;
|
|
2876
|
+
protected isDot(): boolean;
|
|
2877
|
+
protected trackById(_index: number, item: TimelineItem): string;
|
|
2878
|
+
private resolveStatus;
|
|
2879
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Timeline, never>;
|
|
2880
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Timeline, "s-timeline", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "current": { "alias": "current"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2881
|
+
}
|
|
2882
|
+
|
|
2883
|
+
interface TreeNode {
|
|
2884
|
+
id: string | number;
|
|
2885
|
+
label: string;
|
|
2886
|
+
count?: number;
|
|
2887
|
+
trailingText?: string;
|
|
2888
|
+
avatarText?: string;
|
|
2889
|
+
children?: readonly TreeNode[];
|
|
2890
|
+
selectable?: boolean;
|
|
2891
|
+
meta?: Record<string, unknown>;
|
|
2892
|
+
}
|
|
2893
|
+
interface TreeToggleChange {
|
|
2894
|
+
node: TreeNode;
|
|
2895
|
+
expanded: boolean;
|
|
2896
|
+
}
|
|
2897
|
+
declare class Tree {
|
|
2898
|
+
readonly nodes: _angular_core.InputSignal<readonly TreeNode[]>;
|
|
2899
|
+
readonly selectedId: _angular_core.InputSignal<string | number>;
|
|
2900
|
+
readonly expandedIds: _angular_core.InputSignal<readonly (string | number)[]>;
|
|
2901
|
+
readonly level: _angular_core.InputSignal<number>;
|
|
2902
|
+
readonly selectionChange: _angular_core.OutputEmitterRef<TreeNode>;
|
|
2903
|
+
readonly toggleChange: _angular_core.OutputEmitterRef<TreeToggleChange>;
|
|
2904
|
+
protected readonly expandIcon: lucide_angular.LucideIconData;
|
|
2905
|
+
protected readonly collapseIcon: lucide_angular.LucideIconData;
|
|
2906
|
+
protected hasChildren(node: TreeNode): boolean;
|
|
2907
|
+
protected isExpanded(node: TreeNode): boolean;
|
|
2908
|
+
protected isSelected(node: TreeNode): boolean;
|
|
2909
|
+
protected onRowClick(node: TreeNode, event?: Event): void;
|
|
2910
|
+
protected onToggleClick(node: TreeNode, event: Event): void;
|
|
2911
|
+
protected onChildSelection(node: TreeNode): void;
|
|
2912
|
+
protected onChildToggle(change: TreeToggleChange): void;
|
|
2913
|
+
protected onKeydown(node: TreeNode, event: KeyboardEvent): void;
|
|
2914
|
+
protected trackByNodeId(_index: number, node: TreeNode): string | number;
|
|
2915
|
+
private toggle;
|
|
2916
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Tree, never>;
|
|
2917
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Tree, "s-tree", never, { "nodes": { "alias": "nodes"; "required": false; "isSignal": true; }; "selectedId": { "alias": "selectedId"; "required": false; "isSignal": true; }; "expandedIds": { "alias": "expandedIds"; "required": false; "isSignal": true; }; "level": { "alias": "level"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; "toggleChange": "toggleChange"; }, never, never, true, never>;
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
declare class TreeSelect implements ControlValueAccessor {
|
|
2921
|
+
private readonly trigger;
|
|
2922
|
+
readonly nodes: _angular_core.InputSignal<readonly TreeNode[]>;
|
|
2923
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
2924
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2925
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
2926
|
+
readonly matchTriggerWidth: _angular_core.InputSignal<boolean>;
|
|
2927
|
+
readonly expandedIds: _angular_core.InputSignal<readonly (string | number)[]>;
|
|
2928
|
+
readonly selectionChange: _angular_core.OutputEmitterRef<TreeNode>;
|
|
2929
|
+
readonly expandedIdsChange: _angular_core.OutputEmitterRef<readonly (string | number)[]>;
|
|
2930
|
+
protected readonly opened: _angular_core.WritableSignal<boolean>;
|
|
2931
|
+
protected readonly selectedId: _angular_core.WritableSignal<string | number>;
|
|
2932
|
+
protected readonly currentExpandedIds: _angular_core.WritableSignal<readonly (string | number)[]>;
|
|
2933
|
+
protected readonly triggerWidth: _angular_core.WritableSignal<number>;
|
|
2934
|
+
private readonly disabledFromCva;
|
|
2935
|
+
protected readonly isDisabled: _angular_core.Signal<boolean>;
|
|
2936
|
+
protected readonly selectedNode: _angular_core.Signal<TreeNode>;
|
|
2937
|
+
protected readonly displayValue: _angular_core.Signal<string>;
|
|
2938
|
+
protected readonly hasValue: _angular_core.Signal<boolean>;
|
|
2939
|
+
protected readonly overlayWidth: _angular_core.Signal<string | number>;
|
|
2940
|
+
private onChange;
|
|
2941
|
+
private onTouched;
|
|
2942
|
+
constructor();
|
|
2943
|
+
protected togglePopup(): void;
|
|
2944
|
+
protected openPopup(): void;
|
|
2945
|
+
protected closePopup(): void;
|
|
2946
|
+
protected onNodeSelected(node: TreeNode): void;
|
|
2947
|
+
protected onTreeToggle(change: TreeToggleChange): void;
|
|
2948
|
+
protected onTriggerKeydown(event: KeyboardEvent): void;
|
|
2949
|
+
writeValue(value: string | number | null | undefined): void;
|
|
2950
|
+
registerOnChange(fn: (value: string | number | null) => void): void;
|
|
2951
|
+
registerOnTouched(fn: () => void): void;
|
|
2952
|
+
setDisabledState(isDisabled: boolean): void;
|
|
2953
|
+
private syncTriggerWidth;
|
|
2954
|
+
private addExpandedId;
|
|
2955
|
+
private findNodeById;
|
|
2956
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TreeSelect, never>;
|
|
2957
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TreeSelect, "s-tree-select", never, { "nodes": { "alias": "nodes"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "matchTriggerWidth": { "alias": "matchTriggerWidth"; "required": false; "isSignal": true; }; "expandedIds": { "alias": "expandedIds"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; "expandedIdsChange": "expandedIdsChange"; }, never, never, true, never>;
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2960
|
+
type UploadItemStatus = 'done' | 'success' | 'uploading' | 'error';
|
|
2961
|
+
type UploadVariant = 'picture-card' | 'file-list' | 'dropzone' | 'button';
|
|
2962
|
+
type UploadButtonVariant = 'outline' | 'primary' | 'icon' | 'soft-icon';
|
|
2963
|
+
type UploadItemKind = 'image' | 'word' | 'pdf' | 'ppt' | 'sheet' | 'archive' | 'audio' | 'video' | 'file';
|
|
2964
|
+
type UploadSelectionSource = 'picker' | 'drop' | 'replace';
|
|
2965
|
+
interface UploadItem {
|
|
2966
|
+
id: string;
|
|
2967
|
+
name?: string;
|
|
2968
|
+
size?: number;
|
|
2969
|
+
sizeText?: string;
|
|
2970
|
+
meta?: string;
|
|
2971
|
+
fileType?: UploadItemKind | string;
|
|
2972
|
+
thumbnailSrc?: string | null;
|
|
2973
|
+
alt?: string;
|
|
2974
|
+
status?: UploadItemStatus;
|
|
2975
|
+
progress?: number;
|
|
2976
|
+
errorText?: string;
|
|
2977
|
+
disabled?: boolean;
|
|
2978
|
+
active?: boolean;
|
|
2979
|
+
}
|
|
2980
|
+
interface UploadActionEvent {
|
|
2981
|
+
item: UploadItem;
|
|
2982
|
+
}
|
|
2983
|
+
interface UploadFilesSelectedEvent {
|
|
2984
|
+
files: File[];
|
|
2985
|
+
source?: UploadSelectionSource;
|
|
2986
|
+
item?: UploadItem;
|
|
2987
|
+
}
|
|
2988
|
+
declare class Upload {
|
|
2989
|
+
readonly items: _angular_core.InputSignal<readonly UploadItem[]>;
|
|
2990
|
+
readonly variant: _angular_core.InputSignal<UploadVariant>;
|
|
2991
|
+
readonly buttonVariant: _angular_core.InputSignal<UploadButtonVariant>;
|
|
2992
|
+
readonly accept: _angular_core.InputSignal<string>;
|
|
2993
|
+
readonly multiple: _angular_core.InputSignal<boolean>;
|
|
2994
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
2995
|
+
readonly maxCount: _angular_core.InputSignal<number>;
|
|
2996
|
+
readonly cardSize: _angular_core.InputSignal<number>;
|
|
2997
|
+
readonly cardWidth: _angular_core.InputSignal<number>;
|
|
2998
|
+
readonly cardHeight: _angular_core.InputSignal<number>;
|
|
2999
|
+
readonly addLabel: _angular_core.InputSignal<string>;
|
|
3000
|
+
readonly buttonLabel: _angular_core.InputSignal<string>;
|
|
3001
|
+
readonly uploadingLabel: _angular_core.InputSignal<string>;
|
|
3002
|
+
readonly errorFallbackText: _angular_core.InputSignal<string>;
|
|
3003
|
+
readonly emptyFileName: _angular_core.InputSignal<string>;
|
|
3004
|
+
readonly dropTitle: _angular_core.InputSignal<string>;
|
|
3005
|
+
readonly dropDescription: _angular_core.InputSignal<string>;
|
|
3006
|
+
readonly hint: _angular_core.InputSignal<string>;
|
|
3007
|
+
readonly showHint: _angular_core.InputSignal<boolean>;
|
|
3008
|
+
readonly showList: _angular_core.InputSignal<boolean>;
|
|
3009
|
+
readonly showPreview: _angular_core.InputSignal<boolean>;
|
|
3010
|
+
readonly showRemove: _angular_core.InputSignal<boolean>;
|
|
3011
|
+
readonly showReplace: _angular_core.InputSignal<boolean>;
|
|
3012
|
+
readonly showSuccessMark: _angular_core.InputSignal<boolean>;
|
|
3013
|
+
readonly filesSelected: _angular_core.OutputEmitterRef<UploadFilesSelectedEvent>;
|
|
3014
|
+
readonly itemPreview: _angular_core.OutputEmitterRef<UploadActionEvent>;
|
|
3015
|
+
readonly itemRemove: _angular_core.OutputEmitterRef<UploadActionEvent>;
|
|
3016
|
+
readonly itemRetry: _angular_core.OutputEmitterRef<UploadActionEvent>;
|
|
3017
|
+
readonly itemReplace: _angular_core.OutputEmitterRef<UploadActionEvent>;
|
|
3018
|
+
protected readonly fileInput: _angular_core.Signal<ElementRef<HTMLInputElement>>;
|
|
3019
|
+
protected readonly dragOver: _angular_core.WritableSignal<boolean>;
|
|
3020
|
+
protected readonly addIcon: lucide_angular.LucideIconData;
|
|
3021
|
+
protected readonly checkIcon: lucide_angular.LucideIconData;
|
|
3022
|
+
protected readonly closeIcon: lucide_angular.LucideIconData;
|
|
3023
|
+
protected readonly fileIcon: lucide_angular.LucideIconData;
|
|
3024
|
+
protected readonly imageIcon: lucide_angular.LucideIconData;
|
|
3025
|
+
protected readonly previewIcon: lucide_angular.LucideIconData;
|
|
3026
|
+
protected readonly removeIcon: lucide_angular.LucideIconData;
|
|
3027
|
+
protected readonly replaceIcon: lucide_angular.LucideIconData;
|
|
3028
|
+
protected readonly retryIcon: lucide_angular.LucideIconData;
|
|
3029
|
+
protected readonly uploadIcon: lucide_angular.LucideIconData;
|
|
3030
|
+
protected readonly canAddMore: _angular_core.Signal<boolean>;
|
|
3031
|
+
private selectionSource;
|
|
3032
|
+
private replacementItem;
|
|
3033
|
+
protected trackById(_index: number, item: UploadItem): string;
|
|
3034
|
+
protected itemStatus(item: UploadItem): UploadItemStatus;
|
|
3035
|
+
protected isDoneStatus(item: UploadItem): boolean;
|
|
3036
|
+
protected showPictureSuccessMark(item: UploadItem): boolean;
|
|
3037
|
+
protected itemProgress(item: UploadItem): number;
|
|
3038
|
+
protected itemErrorText(item: UploadItem): string;
|
|
3039
|
+
protected itemName(item: UploadItem): string;
|
|
3040
|
+
protected itemMeta(item: UploadItem): string;
|
|
3041
|
+
protected itemKind(item: UploadItem): UploadItemKind;
|
|
3042
|
+
protected itemKindLabel(item: UploadItem): string;
|
|
3043
|
+
protected openFileDialog(): void;
|
|
3044
|
+
protected openReplaceDialog(item: UploadItem, event?: Event): void;
|
|
3045
|
+
protected onTriggerKeydown(event: KeyboardEvent): void;
|
|
3046
|
+
protected onFileChange(event: Event): void;
|
|
3047
|
+
protected onDragEnter(event: DragEvent): void;
|
|
3048
|
+
protected onDragOver(event: DragEvent): void;
|
|
3049
|
+
protected onDragLeave(event: DragEvent): void;
|
|
3050
|
+
protected onDrop(event: DragEvent): void;
|
|
3051
|
+
protected previewItem(item: UploadItem, event?: Event): void;
|
|
3052
|
+
protected removeItem(item: UploadItem, event?: Event): void;
|
|
3053
|
+
protected retryItem(item: UploadItem, event?: Event): void;
|
|
3054
|
+
private openPicker;
|
|
3055
|
+
private emitFiles;
|
|
3056
|
+
private limitFiles;
|
|
3057
|
+
private normalizeKind;
|
|
3058
|
+
private formatSize;
|
|
3059
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Upload, never>;
|
|
3060
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Upload, "s-upload", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "buttonVariant": { "alias": "buttonVariant"; "required": false; "isSignal": true; }; "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "maxCount": { "alias": "maxCount"; "required": false; "isSignal": true; }; "cardSize": { "alias": "cardSize"; "required": false; "isSignal": true; }; "cardWidth": { "alias": "cardWidth"; "required": false; "isSignal": true; }; "cardHeight": { "alias": "cardHeight"; "required": false; "isSignal": true; }; "addLabel": { "alias": "addLabel"; "required": false; "isSignal": true; }; "buttonLabel": { "alias": "buttonLabel"; "required": false; "isSignal": true; }; "uploadingLabel": { "alias": "uploadingLabel"; "required": false; "isSignal": true; }; "errorFallbackText": { "alias": "errorFallbackText"; "required": false; "isSignal": true; }; "emptyFileName": { "alias": "emptyFileName"; "required": false; "isSignal": true; }; "dropTitle": { "alias": "dropTitle"; "required": false; "isSignal": true; }; "dropDescription": { "alias": "dropDescription"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "showHint": { "alias": "showHint"; "required": false; "isSignal": true; }; "showList": { "alias": "showList"; "required": false; "isSignal": true; }; "showPreview": { "alias": "showPreview"; "required": false; "isSignal": true; }; "showRemove": { "alias": "showRemove"; "required": false; "isSignal": true; }; "showReplace": { "alias": "showReplace"; "required": false; "isSignal": true; }; "showSuccessMark": { "alias": "showSuccessMark"; "required": false; "isSignal": true; }; }, { "filesSelected": "filesSelected"; "itemPreview": "itemPreview"; "itemRemove": "itemRemove"; "itemRetry": "itemRetry"; "itemReplace": "itemReplace"; }, never, never, true, never>;
|
|
3061
|
+
}
|
|
3062
|
+
|
|
3063
|
+
declare class FlexColumnFillDirective {
|
|
3064
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlexColumnFillDirective, never>;
|
|
3065
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FlexColumnFillDirective, "[sFlexColumnFill]", never, {}, {}, never, never, true, never>;
|
|
3066
|
+
}
|
|
3067
|
+
|
|
3068
|
+
declare class BsLoadingDirective implements OnChanges {
|
|
3069
|
+
private readonly el;
|
|
3070
|
+
private readonly renderer;
|
|
3071
|
+
loading: boolean;
|
|
3072
|
+
private overlayEl?;
|
|
3073
|
+
private overlayContainer?;
|
|
3074
|
+
private previousMinHeight?;
|
|
3075
|
+
constructor(el: ElementRef<HTMLElement>, renderer: Renderer2);
|
|
3076
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
3077
|
+
private showOverlay;
|
|
3078
|
+
private hideOverlay;
|
|
3079
|
+
private getOverlayContainer;
|
|
3080
|
+
private ensureSpinKeyframes;
|
|
3081
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BsLoadingDirective, never>;
|
|
3082
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<BsLoadingDirective, "[sLoading]", never, { "loading": { "alias": "sLoading"; "required": false; }; }, {}, never, never, true, never>;
|
|
3083
|
+
}
|
|
3084
|
+
|
|
3085
|
+
type PlatformInputSize = 'sm' | 'md' | 'lg';
|
|
3086
|
+
type PlatformInputVariant = 'control' | 'bare' | 'soft';
|
|
3087
|
+
declare class PlatformInputDirective {
|
|
3088
|
+
readonly size: _angular_core.InputSignal<PlatformInputSize>;
|
|
3089
|
+
readonly variant: _angular_core.InputSignal<PlatformInputVariant>;
|
|
3090
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformInputDirective, never>;
|
|
3091
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PlatformInputDirective, "input[pInput], textarea[pInput]", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3092
|
+
}
|
|
3093
|
+
|
|
3094
|
+
type ConfirmDialogVariant = 'danger' | 'warning' | 'confirm' | 'info' | 'success';
|
|
3095
|
+
interface ConfirmDialogDetail {
|
|
3096
|
+
readonly label: string;
|
|
3097
|
+
readonly value: string | number | null | undefined;
|
|
3098
|
+
}
|
|
3099
|
+
interface DeleteConfirmDialogData {
|
|
3100
|
+
readonly variant?: ConfirmDialogVariant | null;
|
|
3101
|
+
readonly type?: ConfirmDialogVariant | null;
|
|
3102
|
+
readonly title?: string | null;
|
|
3103
|
+
readonly name?: string | null;
|
|
3104
|
+
readonly username?: string | null;
|
|
3105
|
+
readonly message?: string | null;
|
|
3106
|
+
readonly details?: readonly ConfirmDialogDetail[] | null;
|
|
3107
|
+
readonly cancelText?: string | null;
|
|
3108
|
+
readonly confirmText?: string | null;
|
|
3109
|
+
readonly showCancel?: boolean | null;
|
|
3110
|
+
readonly showClose?: boolean | null;
|
|
3111
|
+
}
|
|
3112
|
+
type ConfirmDialogData = DeleteConfirmDialogData;
|
|
3113
|
+
declare class DeleteConfirmDialogComponent {
|
|
3114
|
+
static readonly dialogChrome = "content";
|
|
3115
|
+
static readonly dialogSize = "small";
|
|
3116
|
+
private readonly dialogRef;
|
|
3117
|
+
private readonly data;
|
|
3118
|
+
protected readonly name: string;
|
|
3119
|
+
protected readonly variant: ConfirmDialogVariant;
|
|
3120
|
+
protected readonly closeIcon: LucideIconData;
|
|
3121
|
+
protected readonly icon: LucideIconData;
|
|
3122
|
+
protected readonly title: string;
|
|
3123
|
+
protected readonly message: string;
|
|
3124
|
+
protected readonly details: readonly ConfirmDialogDetail[];
|
|
3125
|
+
protected readonly cancelText: string;
|
|
3126
|
+
protected readonly confirmText: string;
|
|
3127
|
+
protected readonly showCancel: boolean;
|
|
3128
|
+
protected readonly showClose: boolean;
|
|
3129
|
+
protected readonly primaryButtonVariant: string;
|
|
3130
|
+
protected cancel(): void;
|
|
3131
|
+
protected confirm(): void;
|
|
3132
|
+
private resolveVariant;
|
|
3133
|
+
private defaultTitle;
|
|
3134
|
+
private defaultMessage;
|
|
3135
|
+
private normalizeDetails;
|
|
3136
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DeleteConfirmDialogComponent, never>;
|
|
3137
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DeleteConfirmDialogComponent, "s-delete-confirm-dialog", never, {}, {}, never, never, true, never>;
|
|
3138
|
+
}
|
|
3139
|
+
|
|
3140
|
+
declare class DialogContainerRef<T = unknown> {
|
|
3141
|
+
private readonly subject;
|
|
3142
|
+
readonly afterClosed$: rxjs.Observable<T>;
|
|
3143
|
+
close(result?: T): void;
|
|
3144
|
+
}
|
|
3145
|
+
|
|
3146
|
+
type DialogContainerSize = 'small' | 'standard' | 'large';
|
|
3147
|
+
|
|
3148
|
+
type DialogContainerChrome = 'default' | 'content';
|
|
3149
|
+
interface DialogContainerConfig {
|
|
3150
|
+
title?: string;
|
|
3151
|
+
data?: unknown;
|
|
3152
|
+
viewContainerRef?: ViewContainerRef;
|
|
3153
|
+
showHeader?: boolean;
|
|
3154
|
+
size?: DialogContainerSize;
|
|
3155
|
+
}
|
|
3156
|
+
declare class DialogContainerService {
|
|
3157
|
+
private readonly injector;
|
|
3158
|
+
private readonly overlayHost;
|
|
3159
|
+
open<T>(component: Type<T>, config?: DialogContainerConfig): DialogContainerRef<unknown>;
|
|
3160
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DialogContainerService, never>;
|
|
3161
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DialogContainerService>;
|
|
3162
|
+
}
|
|
3163
|
+
|
|
3164
|
+
declare const DIALOG_DATA: InjectionToken<unknown>;
|
|
3165
|
+
|
|
3166
|
+
declare const PLATFORM_OVERLAY_VIEW_CONTAINER_REF: InjectionToken<ViewContainerRef>;
|
|
3167
|
+
interface PlatformOverlayAttachOptions {
|
|
3168
|
+
injector?: Injector | null;
|
|
3169
|
+
viewContainerRef?: ViewContainerRef | null;
|
|
3170
|
+
config?: OverlayConfig;
|
|
3171
|
+
}
|
|
3172
|
+
interface PlatformOverlayComponentRef<T> {
|
|
3173
|
+
overlayRef: OverlayRef;
|
|
3174
|
+
componentRef: ComponentRef<T>;
|
|
3175
|
+
dispose: () => void;
|
|
3176
|
+
}
|
|
3177
|
+
declare class PlatformOverlayPortalHost {
|
|
3178
|
+
private readonly document;
|
|
3179
|
+
private readonly overlay;
|
|
3180
|
+
private readonly defaultViewContainerRef;
|
|
3181
|
+
attachComponent<T>(component: Type<T>, options?: PlatformOverlayAttachOptions): PlatformOverlayComponentRef<T> | null;
|
|
3182
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlatformOverlayPortalHost, never>;
|
|
3183
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<PlatformOverlayPortalHost>;
|
|
3184
|
+
}
|
|
3185
|
+
|
|
3186
|
+
declare class SideDrawerRef<T = unknown> {
|
|
3187
|
+
private readonly subject;
|
|
3188
|
+
readonly afterClosed$: rxjs.Observable<T>;
|
|
3189
|
+
close(result?: T): void;
|
|
3190
|
+
}
|
|
3191
|
+
|
|
3192
|
+
interface SideDrawerConfig {
|
|
3193
|
+
title?: string;
|
|
3194
|
+
closeLabel?: string;
|
|
3195
|
+
closeOnMask?: boolean;
|
|
3196
|
+
drawerWidth?: string;
|
|
3197
|
+
data?: unknown;
|
|
3198
|
+
viewContainerRef?: ViewContainerRef;
|
|
3199
|
+
}
|
|
3200
|
+
declare class SideDrawerService {
|
|
3201
|
+
private readonly injector;
|
|
3202
|
+
private readonly overlayHost;
|
|
3203
|
+
open<TComponent, TResult = unknown>(component: Type<TComponent>, config?: SideDrawerConfig): SideDrawerRef<TResult>;
|
|
3204
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SideDrawerService, never>;
|
|
3205
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<SideDrawerService>;
|
|
3206
|
+
}
|
|
3207
|
+
|
|
3208
|
+
declare const SIDE_DRAWER_DATA: InjectionToken<unknown>;
|
|
3209
|
+
|
|
3210
|
+
declare class EnumPicePipe implements PipeTransform {
|
|
3211
|
+
transform(key: string, values: Record<string, string>): string;
|
|
3212
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EnumPicePipe, never>;
|
|
3213
|
+
static ɵpipe: _angular_core.ɵɵPipeDeclaration<EnumPicePipe, "enumPice", true>;
|
|
3214
|
+
}
|
|
3215
|
+
|
|
3216
|
+
export { APP_RUNTIME_CONTEXT, AUTHENTICATED_STATE_GETTER, ActionMenuComponent, AppFooter, AppHeader, AppShell, Aside, Avatar, AvatarGroup, Badge, BaseListComponent, BottomNav, Breadcrumb, BreadcrumbItemComponent, BsBaseList, BsLoadingDirective, BsMessage, BsMessageService, BsSelect, CORE_AUTH_GUARD_CONFIG, Card, DeleteConfirmDialogComponent as ConfirmDialogComponent, Content, DEFAULT_APP_RUNTIME_CONTEXT, DEFAULT_EMOJI_PICKER_OPTIONS, DEFAULT_EMOJI_PICKER_TABS, DEFAULT_HTTP_RESPONSE_INTERCEPTOR_CONFIG, DEFAULT_HTTP_SUCCESS_MESSAGES, DIALOG_DATA, DatePicker, DeleteConfirmDialogComponent, DialogContainerRef, DialogContainerService, ElectronRequest, EmojiPicker, EmptyFooter, EmptySidebar, EnumPicePipe, FileUploadButtonComponent, FilterSummary, FlexColumnFillDirective, GlobalErrorHandler, HTTP_AUTH_TOKEN_GETTER, HTTP_CONFIG, HTTP_RESPONSE_INTERCEPTOR_CONFIG, HTTP_SUCCESS_MESSAGE, HTTP_UNAUTHORIZED_HANDLER, HasPermissionDirective, Header, HttpConfig, ListPageActionColDirective, ListPageCellTextDirective, ListPageCheckboxColDirective, ListPageColumnDirective, ListPageContentDesktopComponent, ListPageContentDesktopSlotDirective, ListPageEmptyDirective, ListPageFileActionDirective, ListPageFilterActionsDirective, ListPageFilterControlDirective, ListPageFilterFieldDirective, ListPageFilterGridDirective, ListPageFilterLabelDirective, ListPageFilterPanelComponent, ListPageHeaderActionsDirective, ListPageHeaderComponent, ListPageHeaderFiltersDirective, ListPageHeaderLayoutDirective, ListPageHeaderRowComponent, ListPageHeaderSlotDirective, ListPageIconButtonDirective, ListPageLayoutComponent, ListPagePaginationComponent, ListPagePaginationSlotDirective, ListPageRowActionDangerDirective, ListPageRowActionTriggerDirective, ListPageRowActionsDirective, ListPageSidebarComponent, ListPageSidebarSearchDirective, ListPageSidebarSlotDirective, ListPageSidebarTreeDirective, ListPageSummarySlotDirective, ListPageTabDirective, ListPageTableDirective, ListPageTableScrollDirective, ListPageTableWrapDirective, ListPageTabsDirective, ListPageTreeIndentDirective, ListPageTreeToggleDirective, ListSearchPanel, MAlphabet, MContent, MESSAGE_SERVICE, MFooter, MItem, MItemActionsSlot, MItemAvatarFaceDirective, MItemAvatarFrameDirective, MItemAvatarGroupDirective, MItemAvatarIconDirective, MItemAvatarPortraitDirective, MItemAvatarSlot, MItemBadgeDirective, MItemFooterSlot, MItemIndicatorDirective, MItemMarkerDirective, MItemMenuChevronDirective, MItemMenuIconDirective, MItemMetaSlot, MItemPrefixSlot, MItemPresenceDirective, MItemProfileAvatarDirective, MItemProfileNameDirective, MItemProfileTitleDirective, MItemStatusSlot, MItemSummarySlot, MItemTitleSlot, MItemTrailingSlot, MItemUnreadDotDirective, MList, MPage, MobilePageContentSlotDirective as MPageContentSlotDirective, MobilePageFooterSlotDirective as MPageFooterSlotDirective, MobilePageHeaderSlotDirective as MPageHeaderSlotDirective, MPersonCardDesktopLayer, MPersonCardMobileLayer, MProductShell, MProductShellBottomSlot, MProductShellMainSlot, MProductShellRailSlot, MRailNav, MTabs, MToolbar, M_ALPHABET_DEFAULT_LETTERS, M_ITEM_APPEARANCE_DIRECTIVES, M_ITEM_SLOT_DIRECTIVES, MenuComponent, MenuItemComponent, MerchantCard, MinimalHeader, MobilePageContentSlotDirective, MobilePageFooterSlotDirective, MobilePageHeaderSlotDirective, MobilePageLayoutComponent, NotificationCenter, Outlets, PContent, PFooter, PLATFORM_OVERLAY_VIEW_CONTAINER_REF, PPage, PPageContentSlotDirective, PPageFooterSlotDirective, PPageHeaderSlotDirective, PPageSidebarSlotDirective, PSidebar, PToolbar, Pagination, PermissionService, PlatformDrawerCheckbox, PlatformDrawerCheckboxGroup, PlatformDrawerComponentBar, PlatformDrawerComponentItem, PlatformDrawerComponentList, PlatformDrawerEmpty, PlatformDrawerError, PlatformDrawerField, PlatformDrawerFooter, PlatformDrawerForm, PlatformDrawerFormModule, PlatformDrawerInputAction, PlatformDrawerInputActionButton, PlatformDrawerSection, PlatformDrawerTable, PlatformDrawerToolbar, PlatformDrawerTree, PlatformDrawerTreeItem, PlatformDrawerTreeToggle, PlatformInputDirective, PlatformLoginPage, PlatformOverlayPortalHost, PlatformPrefixedInput, PlatformSearchComponent, PlatformSwitch, RoutePlaceholderPageComponent, RuntimeService, SHELL_CONFIG, SIDE_DRAWER_DATA, SearchBar, SectionNav, Segmented, ShellLayout, SideDrawerRef, SideDrawerService, SidebarHeaderLayout, StatusDot, Steps, Tabs, Tag, ThrowException, Timeline, TopNavHeader, TopNavLayout, Tree, TreeSelect, Upload, coreAuthGuard, coreGuestOnlyGuard, decreaseLoading, increaseLoading, injectShellConfig, isLoading, provideAuthenticatedStateGetter, provideCoreAuthGuardConfig, provideGlobalErrorHandler, provideHttpAuthTokenGetter, provideHttpConfig, provideHttpResponseInterceptorConfig, provideHttpUnauthorizedHandler, provideIMessageService, provideRuntimeContext, provideShellConfig, provideShellConfigFactory, requestInterceptor, resolveShellParts, responseInterceptor, withHttpSuccessMessage, withoutHttpSuccessMessage };
|
|
3217
|
+
export type { ActionMenuItem, AppMenuIcon, AppRuntimeContext, AppRuntimeHost, AuthenticatedStateGetter, AvatarGroupItem, AvatarIndicatorType, AvatarShape, AvatarStatus, BadgeValue, BottomNavItem, BreadcrumbItem, BreadcrumbOption, BreadcrumbSelectEvent, BreadcrumbSeparator, BsMessageAction, BsMessageActionTone, BsMessageItem, BsMessageOptions, BsMessageType, BsMessageVariant, BsSelectOption, CardActionEvent, CardIconAction, CardMenuItem, ConfirmDialogData, ConfirmDialogDetail, ConfirmDialogVariant, CoreAuthGuardConfig, DatePickerMode, DateRangeValue, DeleteConfirmDialogData, DialogContainerChrome, DialogContainerConfig, EmojiPickerOption, EmojiPickerTab, FileUploadButtonSelectedEvent, FilterSummaryChip, HeaderAction, HeaderActionEvent, HeaderInset, HeaderSize, HeaderSurface, HeaderTitleAlign, HttpAuthTokenGetter, HttpResponseInterceptorConfig, HttpResponseInterceptorConfigInput, HttpSuccessMessageConfig, HttpSuccessMessageConfigInput, HttpSuccessMessageInput, HttpSuccessMessageMethod, HttpSuccessMessageOptions, HttpUnauthorizedHandler, IMessageService, MAlphabetPlacement, MItemAvatarIconShape, MItemLayout, MItemStandardTone, MItemStatus, MItemVariant, MListDensity, MListDivider, MListVariant, MRailNavItem, MTabItem, MTabItemTone, MerchantCardChip, MerchantCardChipTone, NotificationCenterItem, OptionalPermissionInput, PermissionInput, PlatformDrawerFieldVariant, PlatformDrawerSectionLayout, PlatformInputSize, PlatformInputVariant, PlatformLoginFeature, PlatformLoginSocialProvider, PlatformLoginSubmitEvent, PlatformOverlayAttachOptions, PlatformOverlayComponentRef, PlatformSearchAppearance, RequiredPermissions, ResolvedShellPartConfig, STagColor, STagShape, STagSize, STagVariant, SearchBarSubmitEvent, SectionNavGroup, SectionNavItem, SectionNavSelectChange, SectionNavToggleChange, SegmentedOption, SegmentedSelectEvent, ShellBrandConfig, ShellConfig, ShellFooterVariant, ShellHeaderActionConfig, ShellHeaderConfig, ShellHeaderLanguageOption, ShellHeaderNotificationItem, ShellHeaderUtilityItem, ShellHeaderUtilityKind, ShellHeaderVariant, ShellLayoutMode, ShellNavItem, ShellSearchCategory, ShellSearchResult, ShellSidebarConfig, ShellSidebarVariant, SideDrawerConfig, SidebarHeaderPartConfig, SidebarHeaderShellConfig, StatusDotSize, StatusDotStatus, StepItem, StepStatus, StepsOrientation, StepsSize, StepsVariant, TabChangeEvent, TabItem, TabsVariant, TagTone, TagVariant, TimelineItem, TimelineStatus, TimelineVariant, TopNavPartConfig, TopNavShellConfig, TreeNode, TreeToggleChange, UploadActionEvent, UploadButtonVariant, UploadFilesSelectedEvent, UploadItem, UploadItemKind, UploadItemStatus, UploadSelectionSource, UploadVariant, WorkbenchPartConfig, WorkbenchShellConfig, WorkspaceRefreshable };
|