@fuentis/phoenix-ui 0.0.9-alpha.51 → 0.0.9-alpha.511

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/fesm2022/fuentis-phoenix-ui.mjs +6950 -433
  2. package/fesm2022/fuentis-phoenix-ui.mjs.map +1 -1
  3. package/index.d.ts +1076 -5
  4. package/package.json +15 -11
  5. package/styles/flag.css +1 -0
  6. package/styles/global.css +58 -1
  7. package/lib/components/data-table/phoenix-data-table/isSelected.pipe.d.ts +0 -7
  8. package/lib/components/data-table/phoenix-data-table/phoenix-data-table.component.d.ts +0 -84
  9. package/lib/components/data-table/phoenix-data-table-action/phoenix-data-table-action.component.d.ts +0 -28
  10. package/lib/components/data-table/phoenix-data-table-tabs/phoenix-data-table-tabs.component.d.ts +0 -16
  11. package/lib/components/data-table/utils/data-cell-value.pipe.d.ts +0 -16
  12. package/lib/components/data-table/utils/dataTable.enum.d.ts +0 -62
  13. package/lib/components/data-table/utils/dataTable.interface.d.ts +0 -43
  14. package/lib/components/data-table/utils/export-type.util.d.ts +0 -4
  15. package/lib/components/data-table/utils/remove-html-tags.pipe.d.ts +0 -7
  16. package/lib/components/search-bar/search-bar.component.d.ts +0 -30
  17. package/lib/components/shell/shell.component.d.ts +0 -9
  18. package/lib/components/sidebar/sidebar.component.d.ts +0 -12
  19. package/lib/components/sidebar-item/sidebar-item.component.d.ts +0 -12
  20. package/lib/components/status-header/status-header.component.d.ts +0 -45
  21. package/lib/components/topbar/topbar.component.d.ts +0 -46
  22. package/lib/components/user/user.component.d.ts +0 -15
  23. package/lib/models/shell-config.model.d.ts +0 -26
  24. package/lib/services/library-config.token.d.ts +0 -19
  25. package/lib/services/library-translate.service.d.ts +0 -21
  26. package/lib/utils/date-format.service.d.ts +0 -14
  27. package/public-api.d.ts +0 -11
package/index.d.ts CHANGED
@@ -1,5 +1,1076 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@fuentis/phoenix-ui" />
5
- export * from './public-api';
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter, ElementRef, OnChanges, SimpleChanges, OnInit, DestroyRef, OnDestroy } from '@angular/core';
3
+ import { ButtonProps } from 'primeng/button';
4
+ import { Popover } from 'primeng/popover';
5
+ import { TranslateService } from '@ngx-translate/core';
6
+ import * as rxjs from 'rxjs';
7
+ import { Subject, Subscription, Observable } from 'rxjs';
8
+ import { Router } from '@angular/router';
9
+ import { Table, TableLazyLoadEvent, TableHeaderCheckboxToggleEvent } from 'primeng/table';
10
+ import { FormBuilder, FormGroup } from '@angular/forms';
11
+ import { HttpClient } from '@angular/common/http';
12
+ import { DynamicDialogRef, DynamicDialogConfig } from 'primeng/dynamicdialog';
13
+ import { Drawer } from 'primeng/drawer';
14
+
15
+ declare class InnerHeaderComponent {
16
+ title: string;
17
+ tooltipContent: string;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<InnerHeaderComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<InnerHeaderComponent, "pho-inner-header", never, { "title": { "alias": "title"; "required": false; }; "tooltipContent": { "alias": "tooltipContent"; "required": false; }; }, {}, never, ["*"], true, never>;
20
+ }
21
+
22
+ declare class SidebarComponent {
23
+ toggleSidebar: EventEmitter<boolean>;
24
+ sliderClick: EventEmitter<any>;
25
+ classname: string;
26
+ mainItems: any;
27
+ footerItem: any;
28
+ isHovered: boolean;
29
+ isSlim: boolean;
30
+ get hoverState(): "default" | "hovered";
31
+ onMouseEnter(): void;
32
+ onMouseLeave(): void;
33
+ onToggleSidebar(): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<SidebarComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidebarComponent, "pho-sidebar", never, { "classname": { "alias": "classname"; "required": false; }; "mainItems": { "alias": "mainItems"; "required": false; }; "footerItem": { "alias": "footerItem"; "required": false; }; }, { "toggleSidebar": "toggleSidebar"; "sliderClick": "sliderClick"; }, never, never, true, never>;
36
+ }
37
+
38
+ declare class ActionStateService {
39
+ private _disabledActions;
40
+ get disabledActions(): i0.Signal<Set<string>>;
41
+ disableAction(id: string): void;
42
+ enableAction(id: string): void;
43
+ isDisabled(id: string): boolean;
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionStateService, never>;
45
+ static ɵprov: i0.ɵɵInjectableDeclaration<ActionStateService>;
46
+ }
47
+
48
+ declare enum ActionTypes {
49
+ BASIC = "BASIC",
50
+ SELECT = "SELECT"
51
+ }
52
+ interface Actions {
53
+ }
54
+ type RegisteredActionEnums = Actions[keyof Actions];
55
+ type AllActionValues = RegisteredActionEnums[keyof RegisteredActionEnums];
56
+ interface Action<T = AllActionValues> {
57
+ id?: string;
58
+ actionId: T;
59
+ label: string;
60
+ icon: string;
61
+ severity: Exclude<ButtonProps['severity'], 'warning'> | 'warn';
62
+ iconPos?: 'right' | 'left';
63
+ type: keyof typeof ActionTypes;
64
+ text?: boolean;
65
+ key?: string;
66
+ requiredPermission?: string;
67
+ data?: any;
68
+ disabled?: boolean;
69
+ visible?: boolean;
70
+ loading?: boolean;
71
+ class?: string;
72
+ items?: {
73
+ key?: string;
74
+ actionId?: T;
75
+ label?: string;
76
+ separator?: boolean;
77
+ icon?: string;
78
+ requiredPermission?: string;
79
+ }[];
80
+ }
81
+ declare class ActionsComponent {
82
+ actionStateService: ActionStateService;
83
+ actions: Action[];
84
+ actionClick: EventEmitter<Action<never>>;
85
+ onActionClick($event: any, action: Action, menuRef?: Popover): void;
86
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionsComponent, never>;
87
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActionsComponent, "pho-actions", never, { "actions": { "alias": "actions"; "required": false; }; }, { "actionClick": "actionClick"; }, never, never, true, never>;
88
+ }
89
+
90
+ declare enum ActionKinds {
91
+ CREATE = "CREATE",
92
+ SUBMIT = "SUBMIT",
93
+ ASSIGN = "ASSIGN",
94
+ NEW = "NEW",
95
+ UPDATE = "UPDATE",
96
+ RELOAD = "RELOAD",
97
+ CLOSE = "CLOSE",
98
+ OPEN = "OPEN",
99
+ EDIT = "EDIT",
100
+ DELETE = "DELETE",
101
+ EDIT_TRANSITION = "EDIT_TRANSITION",
102
+ ADD_TRANSITION = "ADD_TRANSITION",
103
+ READ = "READ"
104
+ }
105
+
106
+ interface cardConfig {
107
+ name: string;
108
+ subName: string;
109
+ description: string;
110
+ actions: any[];
111
+ additional: any[];
112
+ }
113
+ declare class CardComponent<T extends Record<string, any>> {
114
+ card: i0.InputSignal<T>;
115
+ cardEventEmmiter: i0.OutputEmitterRef<{
116
+ data: T;
117
+ action: string;
118
+ }>;
119
+ actionEnum: typeof ActionKinds;
120
+ cardActions: i0.InputSignal<any>;
121
+ getObjectValueByKey(obj: any, key: string): any;
122
+ descEl: ElementRef<HTMLElement>;
123
+ showTooltip: boolean;
124
+ ngAfterViewInit(): void;
125
+ onCardClick(event: any, actionType?: string): void;
126
+ shouldShowTitleTooltip(): boolean;
127
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent<any>, never>;
128
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent<any>, "phoenix-card", never, { "card": { "alias": "card"; "required": true; "isSignal": true; }; "cardActions": { "alias": "cardActions"; "required": false; "isSignal": true; }; }, { "cardEventEmmiter": "cardEventEmmiter"; }, never, ["[custom]", "[footer]"], true, never>;
129
+ }
130
+
131
+ interface SearchTabs {
132
+ id: number;
133
+ apiUrl: string;
134
+ header: string;
135
+ linkUrl: string;
136
+ }
137
+
138
+ interface SidebarItem {
139
+ module: string;
140
+ items: any;
141
+ }
142
+ interface TopbarItem {
143
+ label: string;
144
+ icon?: string;
145
+ url?: string;
146
+ routerLink?: string[];
147
+ disabled?: boolean;
148
+ path: string;
149
+ }
150
+ interface User {
151
+ email: string;
152
+ username: string;
153
+ imageUrl: string;
154
+ bindImageUrl: string;
155
+ firstname?: string;
156
+ lastname?: string;
157
+ }
158
+ interface ShellConfig {
159
+ user: User;
160
+ mainItems: SidebarItem[][];
161
+ shortModuleName: string;
162
+ footerItem: TopbarItem[];
163
+ topbarModulesMenu: any[];
164
+ searchConfig?: SearchTabs[];
165
+ }
166
+
167
+ interface TopbarModuleItem {
168
+ label: string;
169
+ fullName?: string;
170
+ icon?: string;
171
+ url?: string;
172
+ routerLink?: string[];
173
+ disabled?: boolean;
174
+ }
175
+ interface TopbarModuleGroup {
176
+ label: string;
177
+ layout: 'full' | 'grid';
178
+ showIconBackground: boolean;
179
+ items: TopbarModuleItem[];
180
+ }
181
+ interface TopbarFooterConfig {
182
+ companyName: string;
183
+ companyUrl: string;
184
+ guideLabel: string;
185
+ guideUrl: string;
186
+ copyrightText: string;
187
+ }
188
+ interface UrlConfig {
189
+ url: string | null;
190
+ disabled?: boolean;
191
+ }
192
+ declare class TopbarComponent {
193
+ sidebarConfig: {
194
+ visible: boolean;
195
+ type: string;
196
+ };
197
+ currentYear: number;
198
+ isSidebarVisible: boolean;
199
+ homeUrl: string;
200
+ user: User;
201
+ shortModuleName?: string;
202
+ hidelogo?: boolean;
203
+ topbarModulesMenu: any[];
204
+ darkModeSelector: any;
205
+ urlConfig?: UrlConfig;
206
+ footerConfig: TopbarFooterConfig;
207
+ onDarkModeSelect: EventEmitter<void>;
208
+ onUserPopoverAction: EventEmitter<string>;
209
+ closeCallback(event: any): void;
210
+ searchConfig: i0.InputSignal<SearchTabs[] | undefined>;
211
+ openSidebarPanel(): void;
212
+ private messageService;
213
+ private translateService;
214
+ /** ✅ Zatvara sidebar */
215
+ closeSidebar(): void;
216
+ ngOnInit(): void;
217
+ onDarkModeSelectEmit(): void;
218
+ goToHome(): void;
219
+ goToTicketCenter(): void;
220
+ copyToClipboard($event: any, linkUrl: any): void;
221
+ get bindImageUrl(): string;
222
+ static ɵfac: i0.ɵɵFactoryDeclaration<TopbarComponent, never>;
223
+ static ɵcmp: i0.ɵɵComponentDeclaration<TopbarComponent, "pho-topbar", never, { "homeUrl": { "alias": "homeUrl"; "required": false; }; "user": { "alias": "user"; "required": false; }; "shortModuleName": { "alias": "shortModuleName"; "required": false; }; "hidelogo": { "alias": "hidelogo"; "required": false; }; "topbarModulesMenu": { "alias": "topbarModulesMenu"; "required": false; }; "darkModeSelector": { "alias": "darkModeSelector"; "required": false; }; "urlConfig": { "alias": "urlConfig"; "required": false; }; "footerConfig": { "alias": "footerConfig"; "required": false; }; "searchConfig": { "alias": "searchConfig"; "required": false; "isSignal": true; }; }, { "onDarkModeSelect": "onDarkModeSelect"; "onUserPopoverAction": "onUserPopoverAction"; }, never, ["*"], true, never>;
224
+ }
225
+
226
+ declare class BaseObject {
227
+ name: string;
228
+ uuid: string;
229
+ constructor(partial: Partial<BaseObject>);
230
+ }
231
+ declare class BaseObjectType {
232
+ id: number;
233
+ labelKey: string;
234
+ labelKeyValEn: string;
235
+ labelKeyValDe: string;
236
+ labelKeyValSr?: string;
237
+ labelKeyVal?: string;
238
+ [key: string]: any;
239
+ constructor(partial: Partial<BaseObjectType>);
240
+ }
241
+
242
+ declare class SearchResult {
243
+ name: string;
244
+ title: string;
245
+ uuid: string;
246
+ type?: BaseObjectType;
247
+ entity?: BaseObject;
248
+ scopes?: BaseObject[];
249
+ asset?: BaseObject;
250
+ score?: number;
251
+ togType?: string;
252
+ url?: string;
253
+ constructor(partial: Partial<SearchResult>);
254
+ }
255
+
256
+ interface TypesFilter {
257
+ title: string;
258
+ checkboxes: any;
259
+ }
260
+ declare class SearchBarComponent {
261
+ translate: TranslateService;
262
+ op: any;
263
+ elm: ElementRef;
264
+ private crudService;
265
+ tabs: i0.InputSignal<SearchTabs[] | undefined>;
266
+ isOpen: boolean;
267
+ valueChanges: Subject<Event>;
268
+ inputEvent: Event;
269
+ clonedData?: SearchResult[];
270
+ searchData?: SearchResult[];
271
+ size: number;
272
+ tabIndex: number;
273
+ trigg: boolean;
274
+ inputText?: string;
275
+ textValue: string;
276
+ checkboxes: {
277
+ [key: string]: boolean;
278
+ };
279
+ valueSub$: Subscription;
280
+ reloadSubscription$?: Subscription;
281
+ mocekedFilters: TypesFilter[];
282
+ constructor(translate: TranslateService);
283
+ expand(): void;
284
+ onParentClick(event: Event): void;
285
+ onTabClick(id: number): void;
286
+ onScroll(scrollObj: Event): void;
287
+ populateFilters(data?: SearchResult[]): void;
288
+ onClick(data: {
289
+ value: {
290
+ checked: boolean;
291
+ };
292
+ name: string;
293
+ }): void;
294
+ filterData(makeNewFilters?: boolean): void;
295
+ setCheckBoxes(): void;
296
+ setLinkUrl(data?: any): void;
297
+ ngOnDestroy(): void;
298
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchBarComponent, never>;
299
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "pho-search-bar", never, { "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
300
+ }
301
+
302
+ declare class SidebarItemComponent implements OnChanges {
303
+ private router;
304
+ item: any;
305
+ classname: string;
306
+ sliderClick: EventEmitter<any>;
307
+ constructor(router: Router);
308
+ onSliderClick($event: any, menu: any): void;
309
+ onSliderItemsClick(event: any): void;
310
+ ngOnChanges(_: SimpleChanges): void;
311
+ static ɵfac: i0.ɵɵFactoryDeclaration<SidebarItemComponent, never>;
312
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidebarItemComponent, "pho-sidebar-item", never, { "item": { "alias": "item"; "required": false; }; "classname": { "alias": "classname"; "required": false; }; }, { "sliderClick": "sliderClick"; }, never, never, true, never>;
313
+ }
314
+
315
+ declare class UserComponent {
316
+ user: User;
317
+ actionEmmiter: EventEmitter<string>;
318
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserComponent, never>;
319
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserComponent, "pho-user", never, { "user": { "alias": "user"; "required": false; }; }, { "actionEmmiter": "actionEmmiter"; }, never, never, true, never>;
320
+ }
321
+
322
+ declare class StatusHeaderComponent {
323
+ onQuickPickClickEmiter: EventEmitter<void>;
324
+ onToggleClickEmmiter: EventEmitter<"forward" | "back">;
325
+ onCloseEvent: EventEmitter<void>;
326
+ type: any;
327
+ items: any;
328
+ name: string;
329
+ title: string;
330
+ tag?: {
331
+ icon?: string;
332
+ text?: string;
333
+ variant?: string;
334
+ };
335
+ tags?: Array<{
336
+ icon?: string;
337
+ value?: string;
338
+ variant?: string;
339
+ color?: string;
340
+ tooltip?: string;
341
+ }>;
342
+ enableQuickPick: boolean;
343
+ actions: any[];
344
+ panelState: boolean;
345
+ customClose: boolean;
346
+ validSeverities: string[];
347
+ onToggleClick(direction: 'forward' | 'back'): void;
348
+ toggleSidePanel(): void;
349
+ closePanel(): void;
350
+ static ɵfac: i0.ɵɵFactoryDeclaration<StatusHeaderComponent, never>;
351
+ static ɵcmp: i0.ɵɵComponentDeclaration<StatusHeaderComponent, "phoenix-status-header", never, { "type": { "alias": "type"; "required": false; }; "items": { "alias": "items"; "required": false; }; "name": { "alias": "name"; "required": false; }; "title": { "alias": "title"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "tags": { "alias": "tags"; "required": false; }; "enableQuickPick": { "alias": "enableQuickPick"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "panelState": { "alias": "panelState"; "required": false; }; "customClose": { "alias": "customClose"; "required": false; }; }, { "onQuickPickClickEmiter": "onQuickPickClickEmiter"; "onToggleClickEmmiter": "onToggleClickEmmiter"; "onCloseEvent": "onCloseEvent"; }, never, never, true, never>;
352
+ }
353
+
354
+ declare enum StatusColType {
355
+ TAG = "TAG",
356
+ STRING = "STRING",
357
+ PERSON = "PERSON",
358
+ LINK = "LINK",
359
+ DATE = "DATE",
360
+ LIST = "LIST",
361
+ COUNTRY = "COUNTRY"
362
+ }
363
+
364
+ declare enum StatusTooltipType {
365
+ TAG = "TAG",
366
+ STRING = "STRING",
367
+ PERSON = "PERSON",
368
+ LINK = "LINK",
369
+ DATE = "DATE",
370
+ DATE_PERSON = "DATE_PERSON"
371
+ }
372
+ interface StatusTooltipItem {
373
+ label: string;
374
+ value: string | null;
375
+ type: StatusTooltipType;
376
+ value1?: string;
377
+ value2?: string;
378
+ }
379
+ interface StatusAttribute {
380
+ type: StatusColType;
381
+ label: string;
382
+ value: any;
383
+ dateFormat?: string;
384
+ key?: string;
385
+ color?: string;
386
+ icon?: string;
387
+ value1?: string;
388
+ tooltip?: StatusTooltipItem[];
389
+ url?: string;
390
+ item?: {
391
+ name: string;
392
+ url?: string;
393
+ disabled?: boolean;
394
+ }[] | string | null;
395
+ }
396
+
397
+ interface ContextObjectTag {
398
+ text: string;
399
+ icon?: string;
400
+ variant?: string;
401
+ color?: string;
402
+ label?: string;
403
+ }
404
+ interface ContextObjectConfig {
405
+ showHeader?: boolean;
406
+ type?: string;
407
+ name?: string;
408
+ title?: string;
409
+ tags?: ContextObjectTag[];
410
+ labels?: ContextObjectTag[];
411
+ otherInfo?: StatusAttribute[];
412
+ backRoute?: any[];
413
+ }
414
+
415
+ declare class ContexObjectComponent {
416
+ config?: ContextObjectConfig;
417
+ dateFormat: string;
418
+ dateOnlyFormat: string;
419
+ router: Router;
420
+ statusTooltipType: typeof StatusTooltipType;
421
+ validSeverities: string[];
422
+ get ctxType(): string | undefined;
423
+ get ctxName(): string;
424
+ get ctxTitle(): string;
425
+ get ctxTags(): {
426
+ icon?: string;
427
+ text?: string;
428
+ variant?: any;
429
+ color?: string;
430
+ label?: string;
431
+ }[];
432
+ get ctxLabels(): {
433
+ text: string;
434
+ }[];
435
+ get ctxBackRoute(): any[] | undefined;
436
+ get ctxOtherInfo(): StatusAttribute[];
437
+ onBackClick(): void;
438
+ getFullUrl(path: string): string;
439
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContexObjectComponent, never>;
440
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContexObjectComponent, "phoenix-contex-object", never, { "config": { "alias": "config"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "dateOnlyFormat": { "alias": "dateOnlyFormat"; "required": false; }; }, {}, never, never, true, never>;
441
+ }
442
+
443
+ interface ShellTheme {
444
+ mode: 'light' | 'dark' | 'system';
445
+ }
446
+ declare class ShellComponent {
447
+ config: {
448
+ user: any;
449
+ shortModuleName: string;
450
+ hidelogo?: boolean;
451
+ /** header control */
452
+ headerContext?: ContextObjectConfig;
453
+ searchConfig?: any;
454
+ topbarModulesMenu?: any;
455
+ urlConfig?: {
456
+ url: string | null;
457
+ disabled?: boolean;
458
+ };
459
+ mainItems?: any[];
460
+ footerItem?: any;
461
+ };
462
+ darkModeSelector: {
463
+ mode: string;
464
+ };
465
+ theme: ShellTheme;
466
+ onDarkModeSelect: EventEmitter<any>;
467
+ onIsSlimSelect: EventEmitter<any>;
468
+ onUserAction: EventEmitter<string>;
469
+ sliderClick: EventEmitter<any>;
470
+ themeChange: EventEmitter<ShellTheme>;
471
+ isSlim: boolean;
472
+ readonly gridTemplateColumns = "auto 1fr";
473
+ /** if showHeader=true adding additional row between topbar and content */
474
+ get gridTemplateRows(): string;
475
+ toggleSidebar(isSlim: boolean): void;
476
+ onThemeChange(mode: ShellTheme['mode']): void;
477
+ selectDarkMode(): void;
478
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShellComponent, never>;
479
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellComponent, "pho-shell", never, { "config": { "alias": "config"; "required": false; }; "darkModeSelector": { "alias": "darkModeSelector"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "onDarkModeSelect": "onDarkModeSelect"; "onIsSlimSelect": "onIsSlimSelect"; "onUserAction": "onUserAction"; "sliderClick": "sliderClick"; "themeChange": "themeChange"; }, never, ["*"], true, never>;
480
+ }
481
+
482
+ declare enum tableActionType {
483
+ CREATE = "create",
484
+ EDIT = "edit",
485
+ BULK_EDIT = "bulk_edit",
486
+ DELETE = "delete",
487
+ DETAILS = "details",
488
+ ASSIGN = "assign",
489
+ APPLY = "apply",
490
+ OPEN_IN_NEW_TAB = "open_in_new_tab",
491
+ TAB = "tab",
492
+ OPEN_FULL_SCREEN = "open_full_screen",
493
+ ADD_LINK = "add_link",
494
+ DISCONNECT = "disconnect",
495
+ REMOVE = "remove",
496
+ SYNC = "sync",
497
+ MENU = "menu",
498
+ DROP = "drop",
499
+ OVERVIEW = "overview",
500
+ HISTORY = "syncHistory",
501
+ DOWNLOAD = "download",
502
+ ATTACH = "attach",
503
+ IMPORT = "import",
504
+ ROW_DELETE = "row_delete",
505
+ RUN = "run",
506
+ ASSIGN_FROM_CATALOG = "ASSIGN_FROM_CATALOG",
507
+ ASSIGN_FROM_ITEM = "ASSIGN_FROM_ITEM",
508
+ ASSIGN_CONTROLS = "ASSING_CONTROLS",
509
+ ASSIGN_MEASURE = "ASSGIN_MEASURE",
510
+ CREATE_ADITIONAL_MEASURE = "CREATE_ADITIONAL_MEASURE"
511
+ }
512
+ declare enum tableButtonFormat {
513
+ TEXT_ICON = "TEXT_ICON",
514
+ TEXT = "TEXT",
515
+ ICON = "ICON",
516
+ ICON_ROUNDED = "ICON_ROUNDED"
517
+ }
518
+ declare enum tableButtonContext {
519
+ GLOBAL = "GLOBAL",
520
+ MORE = "MORE",
521
+ BULK = "BULK",
522
+ ROW = "ROW"
523
+ }
524
+ declare enum tableColumnType {
525
+ TEXT = "TEXT",
526
+ TIMEPERIOD = "TIMEPERIOD",
527
+ RICH_TEXT = "RICH_TEXT",
528
+ TEXT_AREA = "TEXT_AREA",
529
+ DATE = "DATE",
530
+ DATE_COMPLEX = "DATE_COMPLEX",//Date and time
531
+ TAG = "TAG",
532
+ OBJ_TAG = "OBJ_TAG",
533
+ LIST_TAG = "LIST_TAG",
534
+ NUMBER = "NUMBER",
535
+ PERSON = "PERSON",
536
+ COMPLETNESS = "COMPLETNESS",
537
+ BOOLEAN = "BOOLEAN",
538
+ LIST = "LIST",
539
+ CUSTOM = "CUSTOM",
540
+ EMAIL = "EMAIL"
541
+ }
542
+ declare enum tableSelectionType {
543
+ CHECKBOX = "checkbox",
544
+ RADIO_BTN = "radio_btn"
545
+ }
546
+ declare enum tableFilterType {
547
+ DATE = "date",
548
+ BOOLEAN = "boolean",
549
+ MULTISELECT = "multiselect",
550
+ COMPLETNESS = "completness"
551
+ }
552
+
553
+ interface TableConfiguration {
554
+ actions: TableAction[];
555
+ tabs?: TabAction[];
556
+ exportTable: boolean;
557
+ toggleColumns?: boolean;
558
+ toogleColumnsData?: TableColumn[];
559
+ lazy: boolean;
560
+ selectionType?: tableSelectionType;
561
+ key?: string;
562
+ rows?: number;
563
+ selectionMode?: 'single' | 'multiple';
564
+ globalFilter?: boolean;
565
+ scrollHeight?: string;
566
+ filterConfiguration: any[];
567
+ hasCellClick?: boolean;
568
+ }
569
+ interface TableAction {
570
+ key?: string;
571
+ label: string;
572
+ format: tableButtonFormat;
573
+ context: tableButtonContext;
574
+ type: tableActionType;
575
+ disabled?: boolean;
576
+ notauthorized?: boolean;
577
+ buttonType?: string;
578
+ ui?: 'button' | 'menu' | 'switch' | 'checkbox';
579
+ items?: any;
580
+ checkboxrelatedauth?: boolean;
581
+ icon?: string;
582
+ confirmationMsgKey?: string;
583
+ confirmationMode?: ConfirmationMode;
584
+ typing?: TypingConfirmationConfig;
585
+ }
586
+ interface TabAction {
587
+ key?: string;
588
+ label: string;
589
+ type: tableActionType;
590
+ badgeCount?: string;
591
+ disabled?: boolean;
592
+ }
593
+ type ConfirmationMode = 'DEFAULT' | 'TYPING';
594
+ interface TypingConfirmationConfig {
595
+ confirmText?: string;
596
+ warningKey?: string;
597
+ typeBelowKey?: string;
598
+ submitLabelKey?: string;
599
+ cancelLabelKey?: string;
600
+ subtitleKey?: string;
601
+ caseInsensitive?: boolean;
602
+ }
603
+ interface TableColumn {
604
+ header: string;
605
+ field: string;
606
+ columnType: string;
607
+ filter?: string;
608
+ filterOptions?: any;
609
+ sortable?: boolean;
610
+ customRenderer?: (rowData: any) => string;
611
+ }
612
+
613
+ declare enum ExportType {
614
+ PDF = "PDF",
615
+ EXCEL = "EXCEL"
616
+ }
617
+
618
+ declare class PhoenixDataTableComponent implements OnInit, OnChanges {
619
+ overviewBtn: any;
620
+ table?: Table;
621
+ data: any;
622
+ exportdData: any;
623
+ columns: TableColumn[];
624
+ loading: i0.InputSignal<boolean>;
625
+ totalRecords: number;
626
+ tableConfiguration: any;
627
+ actionClickEmmiter: EventEmitter<any>;
628
+ lazyLoadDataEmmiter: EventEmitter<any>;
629
+ onRowClickEmmiter: EventEmitter<any>;
630
+ onRowCheckboxRadioClickEmmiter: EventEmitter<any>;
631
+ onExportClickEmmiter: EventEmitter<ExportType>;
632
+ onSaveColumnsClickEmmiter: EventEmitter<string[]>;
633
+ onHeaderCheckboxToggleEmmiter: EventEmitter<any>;
634
+ exportData?: {
635
+ type: ExportType;
636
+ data: any;
637
+ };
638
+ exportType: typeof ExportType;
639
+ translateService: TranslateService;
640
+ fb: FormBuilder;
641
+ dr: DestroyRef;
642
+ columnTypeEnum: typeof tableColumnType;
643
+ tableFilterTypeEnum: typeof tableFilterType;
644
+ selectionTypeEnum: typeof tableSelectionType;
645
+ _selectedColumns: TableColumn[];
646
+ selectedData: any[];
647
+ dateFormat: string;
648
+ dateFilterOptions: {
649
+ label: any;
650
+ value: string;
651
+ }[];
652
+ globalFilterFields: string[];
653
+ filtersForm: FormGroup<{}>;
654
+ originalData: any;
655
+ ngOnInit(): void;
656
+ filterTableData(originalArray: any[], mapping: any): any[];
657
+ resetFilters(): void;
658
+ ngOnChanges(changes: SimpleChanges): void;
659
+ /**
660
+ * Emits table actions
661
+ * table source change (SC phase), global actions (create, assing), bluk and row actions
662
+ * @description
663
+ */
664
+ actionClick(action: any, data?: any): void;
665
+ /**
666
+ * Lazy load
667
+ * Use when lazy is set to TRUE
668
+ * @description
669
+ */
670
+ loadData(event: TableLazyLoadEvent): void;
671
+ convertSortOrder(sortOrder: number | null | undefined): string;
672
+ /**
673
+ * Row click
674
+ * --
675
+ * @description custom method added for row click
676
+ */
677
+ onRowClick(event: Event, row: any): void;
678
+ enableDisableCheckBoxRelatedGlobalActions(): void;
679
+ onHeaderCheckboxToggle(event: TableHeaderCheckboxToggleEvent): void;
680
+ isRowSelectable(event: any): boolean | undefined;
681
+ exportExcel(data: any[]): void;
682
+ exportPdf(data: any[]): void;
683
+ isISODateString(value: string): boolean;
684
+ saveAsExcelFile(buffer: any): void;
685
+ saveColumns(): void;
686
+ resetColumns(): void;
687
+ get selectedColumns(): TableColumn[];
688
+ set selectedColumns(val: TableColumn[]);
689
+ static ɵfac: i0.ɵɵFactoryDeclaration<PhoenixDataTableComponent, never>;
690
+ static ɵcmp: i0.ɵɵComponentDeclaration<PhoenixDataTableComponent, "phoenix-data-table", never, { "data": { "alias": "data"; "required": true; }; "exportdData": { "alias": "exportdData"; "required": false; }; "columns": { "alias": "columns"; "required": true; }; "loading": { "alias": "loading"; "required": true; "isSignal": true; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "tableConfiguration": { "alias": "tableConfiguration"; "required": true; }; "exportData": { "alias": "exportData"; "required": false; }; }, { "actionClickEmmiter": "actionClickEmmiter"; "lazyLoadDataEmmiter": "lazyLoadDataEmmiter"; "onRowClickEmmiter": "onRowClickEmmiter"; "onRowCheckboxRadioClickEmmiter": "onRowCheckboxRadioClickEmmiter"; "onExportClickEmmiter": "onExportClickEmmiter"; "onSaveColumnsClickEmmiter": "onSaveColumnsClickEmmiter"; "onHeaderCheckboxToggleEmmiter": "onHeaderCheckboxToggleEmmiter"; }, never, never, true, never>;
691
+ static ngAcceptInputType_tableConfiguration: TableConfiguration;
692
+ }
693
+
694
+ declare class TableComponent implements OnChanges {
695
+ dt: Table;
696
+ /** Input data for the table. Automatically updates original and derived states. */
697
+ set data(value: any[]);
698
+ /** Column definitions provided by the parent. */
699
+ columns: any[];
700
+ /** Preselected columns (used to restore user preferences). */
701
+ selectedColumnsInput: any[];
702
+ /** Table configuration (key, toggles, options). */
703
+ tableConfiguration: any;
704
+ /** Dynamic filters passed from parent. */
705
+ filters: any;
706
+ /** Emits when a row-level or global action is triggered. */
707
+ actionClick: EventEmitter<any>;
708
+ /** Emits when a row is clicked or selected. */
709
+ rowSelection: EventEmitter<any>;
710
+ /** Emits when checkbox selection changes. */
711
+ checkBoxSelection: EventEmitter<any>;
712
+ /** Emits when columns are saved or changed. */
713
+ saveColumns: EventEmitter<string[]>;
714
+ /** i18n translation service. */
715
+ translateService: TranslateService;
716
+ /** Change detection reference for delayed updates. */
717
+ private cdr;
718
+ /** Full dataset after filters/search/sorting. */
719
+ allData: any[];
720
+ /** Immutable copy of the original dataset. */
721
+ originalData: any[];
722
+ /** Data currently bound to the UI table. */
723
+ tableData: any[];
724
+ /** Current selection of rows. */
725
+ selectedItems: i0.WritableSignal<any[]>;
726
+ /** Columns currently visible in the UI. */
727
+ selectedColumns: any[];
728
+ /** Text from global search input. */
729
+ searchQuery: string;
730
+ /** Indicates if multiple rows are selected. */
731
+ bulkMode: boolean;
732
+ /** Number of records after filtering/search. */
733
+ totalRecords: number;
734
+ /** Index of the last record loaded (for virtual scroll). */
735
+ lastLoadedIndex: number;
736
+ /** Enum references for templates. */
737
+ selectionTypeEnum: typeof tableSelectionType;
738
+ columnTypeEnum: typeof tableColumnType;
739
+ /** Date format string for date columns. */
740
+ dateFormat: string;
741
+ /** Active filter state. */
742
+ private currentFilters;
743
+ /** Column field → type mapping for sorting/formatting. */
744
+ columnTypeMap: Record<string, string>;
745
+ /**
746
+ * Lifecycle hook: triggered when inputs change.
747
+ * Resets selection, maps columns, sets defaults for actions.
748
+ */
749
+ ngOnChanges(changes: SimpleChanges): void;
750
+ /**
751
+ * Handles lazy loading of data (paging, sorting).
752
+ * Supports multi-column sorting and slicing by index.
753
+ */
754
+ loadLazyData(event: TableLazyLoadEvent): void;
755
+ /**
756
+ * Converts any value into a form usable for sorting.
757
+ * Handles numbers, strings, dates, ranges, arrays, and objects.
758
+ */
759
+ private getComparableValue;
760
+ /**
761
+ * Executes global search across all records and fields.
762
+ * Preserves active filters if applied.
763
+ */
764
+ /**
765
+ * Executes global search ONLY across visible table columns.
766
+ * Preserves active filters if applied.
767
+ */
768
+ onSearch(query: string): void;
769
+ /** Supports nested fields like "entity.name" */
770
+ private getValueByPath;
771
+ /** Checks if a value matches the global search query. */
772
+ private matchesQuery;
773
+ /**
774
+ * Re-applies filters on the original dataset.
775
+ * Used internally to recompute data after filter state changes.
776
+ */
777
+ private getFilteredData;
778
+ /**
779
+ * Applies new filter values to the dataset.
780
+ * Handles primitives, objects, and LIST columns (arrays of values).
781
+ */
782
+ applyFilters(filters: Record<string, any>): void;
783
+ /** Determines if a row can be selected based on `canSelect`. */
784
+ isRowSelectable(event: any): boolean;
785
+ /** Retrieves a nested value from an object given a dot-path. */
786
+ private getNestedValue;
787
+ /** Updates selected columns and triggers change detection. */
788
+ applyColumns(selected: any[]): void;
789
+ /** Emits row selection events. */
790
+ onRowClick(event: Event, rowData: any): void;
791
+ /** Updates checkbox selection state and emits changes. */
792
+ onSelectionChange(selected: any[]): void;
793
+ /**
794
+ * Handles table action clicks.
795
+ * Supports PDF/CSV exports with localized labels.
796
+ */
797
+ handleActionClick(event: any): void;
798
+ /** Convenience wrapper for translations in templates. */
799
+ translateKey(key: string): string;
800
+ /** Clears all selections and disables bulk mode. */
801
+ clearSelection(): void;
802
+ isColumnClickable(columnIndex: number): boolean;
803
+ getNested(obj: any, path?: string): any;
804
+ /** Copies provided text to clipboard. */
805
+ copyToClipboard(event: Event, text: string): void;
806
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
807
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "phoenix-table", never, { "data": { "alias": "data"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "selectedColumnsInput": { "alias": "selectedColumnsInput"; "required": false; }; "tableConfiguration": { "alias": "tableConfiguration"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; }, { "actionClick": "actionClick"; "rowSelection": "rowSelection"; "checkBoxSelection": "checkBoxSelection"; "saveColumns": "saveColumns"; }, never, never, true, never>;
808
+ }
809
+
810
+ interface MetaControl {
811
+ id: any;
812
+ position: number;
813
+ readOnly?: boolean;
814
+ userFriendlyMessage: string;
815
+ mandatory: boolean;
816
+ hidden?: boolean;
817
+ style: {
818
+ colWidth: number;
819
+ };
820
+ configuration: {
821
+ id?: number;
822
+ key: string;
823
+ type: string;
824
+ options?: {
825
+ key: string;
826
+ userFriendlyMessage: string;
827
+ }[];
828
+ };
829
+ validators?: any;
830
+ }
831
+
832
+ declare class MetaFormService {
833
+ router: Router;
834
+ private formEvent;
835
+ private formReadOnlySubject;
836
+ private formTabContent;
837
+ private formDirtyStatus;
838
+ private formBuildCompletedSubject;
839
+ currentFormState: rxjs.Observable<any>;
840
+ formReadOnlyState: rxjs.Observable<boolean>;
841
+ currentFormTabContent: rxjs.Observable<string>;
842
+ currentFormDirtyStatus: rxjs.Observable<boolean>;
843
+ /**
844
+ * Notify when form is completed
845
+ * @description Notifies you about when form bild is completed in meta-form component class. Usefull when you need to attach some listeners on form controls or any other action related to form when all controls are avaiable
846
+ * @returns {boolean}
847
+ */
848
+ formBuildCompleted: rxjs.Observable<boolean>;
849
+ constructor();
850
+ setFormEvent(event: any): void;
851
+ setFormReadOnlyState(state: boolean): void;
852
+ setFormTabContent(tabContent: string): void;
853
+ setFormDirtyStatus(status: boolean): void;
854
+ /**
855
+ * Sets the form build completion status to indicate when the form is created.
856
+ *
857
+ * @param {boolean} isCompleted - A boolean value to indicate whether the form build is completed.
858
+ * Set to `true` when the form is fully created.
859
+ *
860
+ * @description This method is used to notify when the form is created and ready for use.
861
+ */
862
+ setFormBuildCompletition(isCompleted: boolean): void;
863
+ static ɵfac: i0.ɵɵFactoryDeclaration<MetaFormService, never>;
864
+ static ɵprov: i0.ɵɵInjectableDeclaration<MetaFormService>;
865
+ }
866
+
867
+ declare abstract class MetaFormAbstract {
868
+ private fb;
869
+ metaService: MetaFormService;
870
+ private translateService;
871
+ private http;
872
+ metaForm: FormGroup;
873
+ metaFormValues: any;
874
+ metaFormControls: any;
875
+ loading: boolean;
876
+ disableForm: boolean;
877
+ formButtons: boolean;
878
+ groupForm: boolean;
879
+ formStyle: any;
880
+ onFormSubmit: EventEmitter<any>;
881
+ onFormCancel: EventEmitter<any>;
882
+ formActive$: Observable<boolean>;
883
+ formSub$: Subscription;
884
+ constructor(fb: FormBuilder, metaService: MetaFormService, translateService: TranslateService, http: HttpClient);
885
+ createForm(controls: MetaControl[] | any): void;
886
+ activateForm(): void;
887
+ addControlValidators(control: any): void;
888
+ onSubmit(): void;
889
+ onCancel(): void;
890
+ /**
891
+ * Resets form to initial state
892
+ *
893
+ * @description Useful when user interact with form (edit some inputs) and than clicks CANCEL. This method patch original values to FormGroup again
894
+ *
895
+ */
896
+ resetToInitialValues(): void;
897
+ ngOnDestroy(): void;
898
+ static ɵfac: i0.ɵɵFactoryDeclaration<MetaFormAbstract, never>;
899
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MetaFormAbstract, never, never, { "metaForm": { "alias": "metaForm"; "required": false; }; "metaFormValues": { "alias": "metaFormValues"; "required": false; }; "metaFormControls": { "alias": "metaFormControls"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "disableForm": { "alias": "disableForm"; "required": false; }; "formButtons": { "alias": "formButtons"; "required": false; }; "groupForm": { "alias": "groupForm"; "required": false; }; "formStyle": { "alias": "formStyle"; "required": false; }; }, { "onFormSubmit": "onFormSubmit"; "onFormCancel": "onFormCancel"; }, never, never, true, never>;
900
+ }
901
+
902
+ declare enum ControlType {
903
+ TEXT = "TEXT",
904
+ NUMBER = "NUMBER",
905
+ MS_OPTION = "MS_OPTION",
906
+ SS_OPTION = "SS_OPTION",
907
+ TEXT_AREA = "TEXT_AREA",
908
+ TEXT_EDITOR = "TEXT_EDITOR",
909
+ DATE = "DATE",
910
+ START_DUE_DATE = "START_DUE_DATE",
911
+ CHECKBOX = "CHECKBOX",
912
+ CHECKBOX_COLOR = "CHECKBOX_COLOR",
913
+ LINKS_DATA = "LINKS_DATA",
914
+ PASSWORD = "PASSWORD",
915
+ SWITCH = "SWITCH",
916
+ TIMEPERIOD = "TIMEPERIOD",
917
+ CURRENCY = "CURRENCY",
918
+ ASSIGN = "ASSIGN",
919
+ ASSIGN_ASSET = "ASSIGN_ASSET",
920
+ COLOR = "COLOR",
921
+ SELECT_BUTTON = "SELECT_BUTTON",
922
+ UPLOAD = "UPLOAD",
923
+ UPLOAD_DRAG_DROP = "UPLOAD_DRAG_DROP",
924
+ SLOT = "SLOT",
925
+ SS_OPTION_OBJECT_BASED = "SS_OPTION_OBJECT_BASED"
926
+ }
927
+
928
+ declare class MetaFormComponent extends MetaFormAbstract implements OnChanges {
929
+ constructor(fb: FormBuilder, metaService: MetaFormService, translateService: TranslateService, http: HttpClient);
930
+ ControlType: typeof ControlType;
931
+ optionLabel: string;
932
+ ngOnChanges(simpleChanges: SimpleChanges): void;
933
+ static ɵfac: i0.ɵɵFactoryDeclaration<MetaFormComponent, never>;
934
+ static ɵcmp: i0.ɵɵComponentDeclaration<MetaFormComponent, "phoenix-meta-form", never, {}, {}, never, ["*"], true, never>;
935
+ }
936
+
937
+ declare class MetaFormButtonsComponent implements OnInit, OnDestroy {
938
+ private metaFormService;
939
+ isDisabled: i0.InputSignal<boolean | undefined>;
940
+ isCreateAnother: i0.InputSignal<boolean>;
941
+ isLoading: i0.InputSignal<boolean>;
942
+ handleSave: EventEmitter<any>;
943
+ handleCancel: EventEmitter<any>;
944
+ display: boolean;
945
+ formActive$: Observable<boolean>;
946
+ createAnother: boolean;
947
+ sub$: Subscription;
948
+ constructor(metaFormService: MetaFormService);
949
+ ngOnInit(): void;
950
+ ngOnDestroy(): void;
951
+ static ɵfac: i0.ɵɵFactoryDeclaration<MetaFormButtonsComponent, never>;
952
+ static ɵcmp: i0.ɵɵComponentDeclaration<MetaFormButtonsComponent, "phoenix-meta-form-buttons", never, { "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "isCreateAnother": { "alias": "isCreateAnother"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; }, { "handleSave": "handleSave"; "handleCancel": "handleCancel"; }, never, never, true, never>;
953
+ }
954
+
955
+ declare class GroupsFormComponent extends MetaFormAbstract implements OnChanges {
956
+ activePanelsIndex: number[];
957
+ ControlType: typeof ControlType;
958
+ optionLabel: string;
959
+ notiffication?: any;
960
+ private trans;
961
+ ngOnChanges(simpleChanges?: SimpleChanges): void;
962
+ static ɵfac: i0.ɵɵFactoryDeclaration<GroupsFormComponent, never>;
963
+ static ɵcmp: i0.ɵɵComponentDeclaration<GroupsFormComponent, "phoenix-groups-form", never, { "activePanelsIndex": { "alias": "activePanelsIndex"; "required": false; }; }, {}, never, never, true, never>;
964
+ }
965
+
966
+ declare enum SimpleButtonType {
967
+ REGULAR = "regular",
968
+ SPLIT = "split"
969
+ }
970
+ type Severity = 'success' | 'info' | 'warn' | 'danger' | 'help' | 'primary' | 'secondary' | 'contrast' | null | undefined;
971
+ interface ActionButton {
972
+ id?: number | string;
973
+ label: string;
974
+ icon?: string;
975
+ disabled?: boolean;
976
+ type?: SimpleButtonType;
977
+ severity?: Severity;
978
+ tooltip?: string;
979
+ action?: () => void;
980
+ splitItems?: {
981
+ label: string;
982
+ icon?: string;
983
+ command: () => void;
984
+ }[];
985
+ }
986
+
987
+ declare class ObjectItemDialogComponent implements OnInit {
988
+ ref: DynamicDialogRef;
989
+ config: DynamicDialogConfig;
990
+ table: TableComponent;
991
+ columns: any;
992
+ disableButton: boolean;
993
+ tableData: never[];
994
+ hasSelection: boolean;
995
+ constructor(ref: DynamicDialogRef, config: DynamicDialogConfig);
996
+ ngOnInit(): void;
997
+ actions: ActionButton[];
998
+ onSelectionChanged(selectedItem: any): void;
999
+ actionClick(key: any): void;
1000
+ tableConfiguration: {
1001
+ lazy: boolean;
1002
+ scrollHeight: string;
1003
+ hasSearch: boolean;
1004
+ hasFilter: boolean;
1005
+ key: string;
1006
+ rows: number;
1007
+ selectionType: tableSelectionType;
1008
+ };
1009
+ static ɵfac: i0.ɵɵFactoryDeclaration<ObjectItemDialogComponent, never>;
1010
+ static ɵcmp: i0.ɵɵComponentDeclaration<ObjectItemDialogComponent, "phoenix-object-item-dialog", never, {}, {}, never, never, true, never>;
1011
+ }
1012
+
1013
+ declare class QuickPickComponent {
1014
+ onBack: EventEmitter<void>;
1015
+ onQuickPick: EventEmitter<void>;
1016
+ onForward: EventEmitter<void>;
1017
+ static ɵfac: i0.ɵɵFactoryDeclaration<QuickPickComponent, never>;
1018
+ static ɵcmp: i0.ɵɵComponentDeclaration<QuickPickComponent, "phoenix-quick-pick", never, {}, { "onBack": "onBack"; "onQuickPick": "onQuickPick"; "onForward": "onForward"; }, never, never, true, never>;
1019
+ }
1020
+
1021
+ interface StatusBarConfig {
1022
+ type?: string;
1023
+ icon?: string;
1024
+ name: string;
1025
+ title: string;
1026
+ description?: {
1027
+ label: string;
1028
+ value: any;
1029
+ icon?: string;
1030
+ type?: StatusColType;
1031
+ dateFormat?: string;
1032
+ }[];
1033
+ attributes?: StatusAttribute[];
1034
+ }
1035
+
1036
+ declare class StatusBarComponent {
1037
+ statusBarConfig: StatusBarConfig;
1038
+ iconEnable: boolean;
1039
+ enableClosing: boolean;
1040
+ description: boolean;
1041
+ dateFormat: string;
1042
+ onListItemClick: EventEmitter<any>;
1043
+ isCollapsed: boolean;
1044
+ StatusColType: typeof StatusColType;
1045
+ iconStyle: {
1046
+ height: number;
1047
+ width: number;
1048
+ };
1049
+ static ɵfac: i0.ɵɵFactoryDeclaration<StatusBarComponent, never>;
1050
+ static ɵcmp: i0.ɵɵComponentDeclaration<StatusBarComponent, "phoenix-status-bar", never, { "statusBarConfig": { "alias": "statusBarConfig"; "required": false; }; "iconEnable": { "alias": "iconEnable"; "required": false; }; "enableClosing": { "alias": "enableClosing"; "required": false; }; "description": { "alias": "description"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; }, { "onListItemClick": "onListItemClick"; }, never, never, true, never>;
1051
+ }
1052
+
1053
+ declare class QuickPickSidePanelComponent {
1054
+ drawer: Drawer;
1055
+ title: string;
1056
+ data: any[];
1057
+ columns: any[];
1058
+ tableConfiguration: any;
1059
+ widthClass: string;
1060
+ isFullScreen: boolean;
1061
+ private _panelVisible;
1062
+ set panelState(value: boolean);
1063
+ panelStateChange: EventEmitter<boolean>;
1064
+ onRowClick: EventEmitter<any>;
1065
+ lazyLoadData: EventEmitter<void>;
1066
+ handlePanelFullScreen: EventEmitter<void>;
1067
+ drawerVisible: i0.Signal<boolean>;
1068
+ visibleChange(newVal: boolean): void;
1069
+ onDrawerShow(): void;
1070
+ onTableRowClick(row: any): void;
1071
+ static ɵfac: i0.ɵɵFactoryDeclaration<QuickPickSidePanelComponent, never>;
1072
+ static ɵcmp: i0.ɵɵComponentDeclaration<QuickPickSidePanelComponent, "phoenix-quick-pick-sidepanel", never, { "title": { "alias": "title"; "required": false; }; "data": { "alias": "data"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "tableConfiguration": { "alias": "tableConfiguration"; "required": false; }; "widthClass": { "alias": "widthClass"; "required": false; }; "isFullScreen": { "alias": "isFullScreen"; "required": false; }; "panelState": { "alias": "panelState"; "required": false; }; }, { "panelStateChange": "panelStateChange"; "onRowClick": "onRowClick"; "lazyLoadData": "lazyLoadData"; "handlePanelFullScreen": "handlePanelFullScreen"; }, never, never, true, never>;
1073
+ }
1074
+
1075
+ export { ActionTypes, ActionsComponent, CardComponent, ContexObjectComponent, ControlType, GroupsFormComponent, InnerHeaderComponent, MetaFormButtonsComponent, MetaFormComponent, MetaFormService, ObjectItemDialogComponent, PhoenixDataTableComponent, QuickPickComponent, QuickPickSidePanelComponent, SearchBarComponent, ShellComponent, SidebarComponent, SidebarItemComponent, SimpleButtonType, StatusBarComponent, StatusColType, StatusHeaderComponent, StatusTooltipType, TableComponent, TopbarComponent, UserComponent, tableActionType, tableButtonContext, tableButtonFormat, tableColumnType, tableFilterType, tableSelectionType };
1076
+ export type { Action, ActionButton, Actions, AllActionValues, ConfirmationMode, ContextObjectConfig, ContextObjectTag, RegisteredActionEnums, Severity, ShellConfig, ShellTheme, SidebarItem, StatusAttribute, StatusBarConfig, StatusTooltipItem, TabAction, TableAction, TableColumn, TableConfiguration, TopbarFooterConfig, TopbarItem, TopbarModuleGroup, TopbarModuleItem, TypingConfirmationConfig, UrlConfig, User, cardConfig };