@onecx/angular-accelerator 9.0.0-rc.4 → 9.0.0-rc.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/onecx-angular-accelerator-testing.mjs +10 -1
- package/fesm2022/onecx-angular-accelerator-testing.mjs.map +1 -1
- package/fesm2022/onecx-angular-accelerator.mjs +635 -368
- package/fesm2022/onecx-angular-accelerator.mjs.map +1 -1
- package/package.json +7 -7
- package/src/lib/directives/content.directive.scss +15 -0
- package/types/onecx-angular-accelerator-testing.d.ts +1 -1
- package/types/onecx-angular-accelerator.d.ts +561 -517
|
@@ -2,18 +2,18 @@ import * as _angular_core from '@angular/core';
|
|
|
2
2
|
import { OnInit, TemplateRef, EventEmitter, DoCheck, AfterViewInit, OnChanges, Renderer2, SimpleChanges, OnDestroy, OutputEmitterRef, Signal, ElementRef, Type, ViewContainerRef, ComponentRef, PipeTransform } from '@angular/core';
|
|
3
3
|
import * as i19 from 'primeng/tooltip';
|
|
4
4
|
import { Tooltip } from 'primeng/tooltip';
|
|
5
|
+
import * as _onecx_angular_accelerator from '@onecx/angular-accelerator';
|
|
5
6
|
import * as i22 from 'primeng/api';
|
|
6
|
-
import {
|
|
7
|
-
import { MfeInfo, EventsTopic } from '@onecx/integration-interface';
|
|
7
|
+
import { MenuItem, PrimeTemplate, SelectItem, PrimeIcons } from 'primeng/api';
|
|
8
8
|
import * as i11 from 'primeng/menu';
|
|
9
9
|
import { Menu } from 'primeng/menu';
|
|
10
|
+
import * as i13 from 'primeng/multiselect';
|
|
11
|
+
import { MultiSelectItem } from 'primeng/multiselect';
|
|
10
12
|
import * as rxjs from 'rxjs';
|
|
11
|
-
import { Observable,
|
|
13
|
+
import { Observable, BehaviorSubject, Subject, Subscription } from 'rxjs';
|
|
12
14
|
import * as i39 from '@ngx-translate/core';
|
|
13
15
|
import { TranslateService, TranslatePipe } from '@ngx-translate/core';
|
|
14
|
-
import
|
|
15
|
-
import * as i13 from 'primeng/multiselect';
|
|
16
|
-
import { MultiSelectItem } from 'primeng/multiselect';
|
|
16
|
+
import { MfeInfo, EventsTopic } from '@onecx/integration-interface';
|
|
17
17
|
import * as i4 from 'primeng/select';
|
|
18
18
|
import { SelectChangeEvent } from 'primeng/select';
|
|
19
19
|
import * as node_modules_chart_js_dist_types_utils from 'node_modules/chart.js/dist/types/utils';
|
|
@@ -273,162 +273,6 @@ interface DataTableColumn {
|
|
|
273
273
|
dateFormat?: string;
|
|
274
274
|
}
|
|
275
275
|
|
|
276
|
-
type GroupSelectionChangedEvent = {
|
|
277
|
-
activeColumns: DataTableColumn[];
|
|
278
|
-
groupKey: string;
|
|
279
|
-
};
|
|
280
|
-
interface ColumnGroupSelectionComponentState {
|
|
281
|
-
activeColumnGroupKey?: string;
|
|
282
|
-
displayedColumns?: DataTableColumn[];
|
|
283
|
-
}
|
|
284
|
-
declare class ColumnGroupSelectionComponent implements OnInit {
|
|
285
|
-
readonly selectedGroupKey: _angular_core.ModelSignal<string>;
|
|
286
|
-
readonly columns: _angular_core.InputSignal<DataTableColumn[]>;
|
|
287
|
-
readonly placeholderKey: _angular_core.InputSignal<string>;
|
|
288
|
-
readonly defaultGroupKey: _angular_core.InputSignal<string>;
|
|
289
|
-
readonly customGroupKey: _angular_core.InputSignal<string>;
|
|
290
|
-
readonly groupSelectionChanged: _angular_core.OutputEmitterRef<GroupSelectionChangedEvent>;
|
|
291
|
-
readonly componentStateChanged: _angular_core.OutputEmitterRef<ColumnGroupSelectionComponentState>;
|
|
292
|
-
readonly allGroupKeys: _angular_core.Signal<string[]>;
|
|
293
|
-
constructor();
|
|
294
|
-
ngOnInit(): void;
|
|
295
|
-
changeGroupSelection(event: {
|
|
296
|
-
value: string;
|
|
297
|
-
}): void;
|
|
298
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ColumnGroupSelectionComponent, never>;
|
|
299
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ColumnGroupSelectionComponent, "ocx-column-group-selection", never, { "selectedGroupKey": { "alias": "selectedGroupKey"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "placeholderKey": { "alias": "placeholderKey"; "required": false; "isSignal": true; }; "defaultGroupKey": { "alias": "defaultGroupKey"; "required": false; "isSignal": true; }; "customGroupKey": { "alias": "customGroupKey"; "required": false; "isSignal": true; }; }, { "selectedGroupKey": "selectedGroupKeyChange"; "groupSelectionChanged": "groupSelectionChanged"; "componentStateChanged": "componentStateChanged"; }, never, never, false, never>;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
declare class OcxContentComponent {
|
|
303
|
-
/**
|
|
304
|
-
* Optionally allows specifying a title for the content card
|
|
305
|
-
*/
|
|
306
|
-
title: _angular_core.InputSignal<string>;
|
|
307
|
-
/**
|
|
308
|
-
* Optionally allows specifying styles for the content card
|
|
309
|
-
*/
|
|
310
|
-
styleClass: _angular_core.InputSignal<string | undefined>;
|
|
311
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OcxContentComponent, never>;
|
|
312
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OcxContentComponent, "ocx-content", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "styleClass": { "alias": "styleClass"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
declare class OcxContentContainerComponent {
|
|
316
|
-
/**
|
|
317
|
-
* Allows specifying the layout direction of the container
|
|
318
|
-
*/
|
|
319
|
-
layout: _angular_core.InputSignal<"horizontal" | "vertical">;
|
|
320
|
-
/**
|
|
321
|
-
* Allows specifying the breakpoint below which a horizontal layout switches to a vertical layout.
|
|
322
|
-
* Only necessary if horizontal layout is used
|
|
323
|
-
* Default: md
|
|
324
|
-
*/
|
|
325
|
-
breakpoint: _angular_core.InputSignal<"sm" | "md" | "lg" | "xl">;
|
|
326
|
-
/**
|
|
327
|
-
* Optionally allows specifying styles for the container
|
|
328
|
-
*/
|
|
329
|
-
styleClass: _angular_core.InputSignal<string | undefined>;
|
|
330
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OcxContentContainerComponent, never>;
|
|
331
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OcxContentContainerComponent, "ocx-content-container", never, { "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "breakpoint": { "alias": "breakpoint"; "required": false; "isSignal": true; }; "styleClass": { "alias": "styleClass"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
type ColumnSelectionChangedEvent = {
|
|
335
|
-
activeColumns: DataTableColumn[];
|
|
336
|
-
};
|
|
337
|
-
type ActionColumnChangedEvent = {
|
|
338
|
-
frozenActionColumn: boolean;
|
|
339
|
-
actionColumnPosition: 'left' | 'right';
|
|
340
|
-
};
|
|
341
|
-
interface CustomGroupColumnSelectorComponentState {
|
|
342
|
-
actionColumnConfig?: {
|
|
343
|
-
frozen: boolean;
|
|
344
|
-
position: 'left' | 'right';
|
|
345
|
-
};
|
|
346
|
-
displayedColumns?: DataTableColumn[];
|
|
347
|
-
activeColumnGroupKey?: string;
|
|
348
|
-
}
|
|
349
|
-
declare class CustomGroupColumnSelectorComponent implements OnInit {
|
|
350
|
-
readonly columns: _angular_core.InputSignal<DataTableColumn[]>;
|
|
351
|
-
readonly displayedColumns: _angular_core.ModelSignal<DataTableColumn[]>;
|
|
352
|
-
readonly customGroupKey: _angular_core.InputSignal<string>;
|
|
353
|
-
readonly dialogTitle: _angular_core.InputSignal<string>;
|
|
354
|
-
readonly dialogTitleKey: _angular_core.InputSignal<string>;
|
|
355
|
-
readonly openButtonTitle: _angular_core.InputSignal<string>;
|
|
356
|
-
readonly openButtonTitleKey: _angular_core.InputSignal<string>;
|
|
357
|
-
readonly openButtonAriaLabel: _angular_core.InputSignal<string>;
|
|
358
|
-
readonly openButtonAriaLabelKey: _angular_core.InputSignal<string>;
|
|
359
|
-
readonly saveButtonLabel: _angular_core.InputSignal<string>;
|
|
360
|
-
readonly saveButtonLabelKey: _angular_core.InputSignal<string>;
|
|
361
|
-
readonly saveButtonAriaLabel: _angular_core.InputSignal<string>;
|
|
362
|
-
readonly saveButtonAriaLabelKey: _angular_core.InputSignal<string>;
|
|
363
|
-
readonly cancelButtonLabel: _angular_core.InputSignal<string>;
|
|
364
|
-
readonly cancelButtonLabelKey: _angular_core.InputSignal<string>;
|
|
365
|
-
readonly cancelButtonAriaLabel: _angular_core.InputSignal<string>;
|
|
366
|
-
readonly cancelButtonAriaLabelKey: _angular_core.InputSignal<string>;
|
|
367
|
-
readonly activeColumnsLabel: _angular_core.InputSignal<string>;
|
|
368
|
-
readonly activeColumnsLabelKey: _angular_core.InputSignal<string>;
|
|
369
|
-
readonly inactiveColumnsLabel: _angular_core.InputSignal<string>;
|
|
370
|
-
readonly inactiveColumnsLabelKey: _angular_core.InputSignal<string>;
|
|
371
|
-
readonly frozenActionColumn: _angular_core.InputSignal<boolean>;
|
|
372
|
-
readonly actionColumnPosition: _angular_core.InputSignal<"right" | "left">;
|
|
373
|
-
readonly columnSelectionChanged: _angular_core.OutputEmitterRef<ColumnSelectionChangedEvent>;
|
|
374
|
-
readonly actionColumnConfigChanged: _angular_core.OutputEmitterRef<ActionColumnChangedEvent>;
|
|
375
|
-
readonly componentStateChanged: _angular_core.OutputEmitterRef<CustomGroupColumnSelectorComponentState>;
|
|
376
|
-
readonly hiddenColumnsModel: _angular_core.WritableSignal<DataTableColumn[]>;
|
|
377
|
-
readonly displayedColumnsModel: _angular_core.WritableSignal<DataTableColumn[]>;
|
|
378
|
-
readonly frozenActionColumnModel: _angular_core.WritableSignal<boolean>;
|
|
379
|
-
readonly actionColumnPositionModel: _angular_core.WritableSignal<"right" | "left">;
|
|
380
|
-
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
381
|
-
readonly alignmentOptions: _angular_core.WritableSignal<{
|
|
382
|
-
label: string;
|
|
383
|
-
value: "left" | "right";
|
|
384
|
-
}[]>;
|
|
385
|
-
readonly frozenOptions: _angular_core.WritableSignal<{
|
|
386
|
-
label: string;
|
|
387
|
-
value: boolean;
|
|
388
|
-
}[]>;
|
|
389
|
-
private readonly _actionColumnState;
|
|
390
|
-
constructor();
|
|
391
|
-
ngOnInit(): void;
|
|
392
|
-
onOpenCustomGroupColumnSelectionDialogClick(): void;
|
|
393
|
-
onSaveClick(): void;
|
|
394
|
-
onCancelClick(): void;
|
|
395
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CustomGroupColumnSelectorComponent, never>;
|
|
396
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CustomGroupColumnSelectorComponent, "ocx-custom-group-column-selector", never, { "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "displayedColumns": { "alias": "displayedColumns"; "required": false; "isSignal": true; }; "customGroupKey": { "alias": "customGroupKey"; "required": false; "isSignal": true; }; "dialogTitle": { "alias": "dialogTitle"; "required": false; "isSignal": true; }; "dialogTitleKey": { "alias": "dialogTitleKey"; "required": false; "isSignal": true; }; "openButtonTitle": { "alias": "openButtonTitle"; "required": false; "isSignal": true; }; "openButtonTitleKey": { "alias": "openButtonTitleKey"; "required": false; "isSignal": true; }; "openButtonAriaLabel": { "alias": "openButtonAriaLabel"; "required": false; "isSignal": true; }; "openButtonAriaLabelKey": { "alias": "openButtonAriaLabelKey"; "required": false; "isSignal": true; }; "saveButtonLabel": { "alias": "saveButtonLabel"; "required": false; "isSignal": true; }; "saveButtonLabelKey": { "alias": "saveButtonLabelKey"; "required": false; "isSignal": true; }; "saveButtonAriaLabel": { "alias": "saveButtonAriaLabel"; "required": false; "isSignal": true; }; "saveButtonAriaLabelKey": { "alias": "saveButtonAriaLabelKey"; "required": false; "isSignal": true; }; "cancelButtonLabel": { "alias": "cancelButtonLabel"; "required": false; "isSignal": true; }; "cancelButtonLabelKey": { "alias": "cancelButtonLabelKey"; "required": false; "isSignal": true; }; "cancelButtonAriaLabel": { "alias": "cancelButtonAriaLabel"; "required": false; "isSignal": true; }; "cancelButtonAriaLabelKey": { "alias": "cancelButtonAriaLabelKey"; "required": false; "isSignal": true; }; "activeColumnsLabel": { "alias": "activeColumnsLabel"; "required": false; "isSignal": true; }; "activeColumnsLabelKey": { "alias": "activeColumnsLabelKey"; "required": false; "isSignal": true; }; "inactiveColumnsLabel": { "alias": "inactiveColumnsLabel"; "required": false; "isSignal": true; }; "inactiveColumnsLabelKey": { "alias": "inactiveColumnsLabelKey"; "required": false; "isSignal": true; }; "frozenActionColumn": { "alias": "frozenActionColumn"; "required": false; "isSignal": true; }; "actionColumnPosition": { "alias": "actionColumnPosition"; "required": false; "isSignal": true; }; }, { "displayedColumns": "displayedColumnsChange"; "columnSelectionChanged": "columnSelectionChanged"; "actionColumnConfigChanged": "actionColumnConfigChanged"; "componentStateChanged": "componentStateChanged"; }, never, never, false, never>;
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
/**
|
|
400
|
-
* @example let myIcon : PrimeIcon = PrimeIcons.myIcon
|
|
401
|
-
*/
|
|
402
|
-
type PrimeIcon = (typeof PrimeIcons)[keyof Omit<typeof PrimeIcons, 'prototype'>];
|
|
403
|
-
|
|
404
|
-
interface ViewingLayouts {
|
|
405
|
-
id: string;
|
|
406
|
-
icon: PrimeIcon;
|
|
407
|
-
layout: 'grid' | 'list' | 'table';
|
|
408
|
-
tooltip?: string;
|
|
409
|
-
tooltipKey: string;
|
|
410
|
-
label?: string;
|
|
411
|
-
labelKey: string;
|
|
412
|
-
}
|
|
413
|
-
interface DataLayoutSelectionComponentState {
|
|
414
|
-
layout?: 'grid' | 'list' | 'table';
|
|
415
|
-
}
|
|
416
|
-
declare class DataLayoutSelectionComponent implements OnInit {
|
|
417
|
-
supportedViewLayouts: _angular_core.InputSignal<string[]>;
|
|
418
|
-
layout: _angular_core.ModelSignal<"table" | "grid" | "list">;
|
|
419
|
-
dataViewLayoutChange: _angular_core.OutputEmitterRef<"table" | "grid" | "list">;
|
|
420
|
-
componentStateChanged: _angular_core.OutputEmitterRef<DataLayoutSelectionComponentState>;
|
|
421
|
-
viewingLayouts: _angular_core.Signal<ViewingLayouts[]>;
|
|
422
|
-
readonly selectedViewLayout: _angular_core.Signal<ViewingLayouts | undefined>;
|
|
423
|
-
ngOnInit(): void;
|
|
424
|
-
onDataViewLayoutChange(event: {
|
|
425
|
-
icon: PrimeIcon;
|
|
426
|
-
layout: 'grid' | 'list' | 'table';
|
|
427
|
-
}): void;
|
|
428
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DataLayoutSelectionComponent, never>;
|
|
429
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DataLayoutSelectionComponent, "ocx-data-layout-selection", never, { "supportedViewLayouts": { "alias": "supportedViewLayouts"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; }, { "layout": "layoutChange"; "dataViewLayoutChange": "dataViewLayoutChange"; "componentStateChanged": "componentStateChanged"; }, never, never, false, never>;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
276
|
type RouterLink = string | (() => string) | (() => Promise<string>) | Promise<string>;
|
|
433
277
|
interface DataAction {
|
|
434
278
|
id?: string;
|
|
@@ -450,70 +294,63 @@ declare const enum DataSortDirection {
|
|
|
450
294
|
NONE = "NONE"
|
|
451
295
|
}
|
|
452
296
|
|
|
453
|
-
|
|
454
|
-
|
|
297
|
+
declare class ObservableOutputEmitterRef<T> extends OutputEmitterRef<T> {
|
|
298
|
+
observed: Signal<boolean>;
|
|
299
|
+
constructor();
|
|
300
|
+
}
|
|
301
|
+
declare function observableOutput<T>(): ObservableOutputEmitterRef<T>;
|
|
302
|
+
|
|
303
|
+
type RowListGridData$1 = ListGridData & Row;
|
|
304
|
+
|
|
305
|
+
type ListGridData = {
|
|
455
306
|
id: string | number;
|
|
307
|
+
imagePath: string | number;
|
|
456
308
|
[columnId: string]: unknown;
|
|
457
309
|
};
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
FILTERCELL = "FILTERCELL"
|
|
310
|
+
interface ListGridDataMenuItem extends MenuItem {
|
|
311
|
+
permission: string;
|
|
461
312
|
}
|
|
462
|
-
|
|
463
|
-
sortColumn: string;
|
|
464
|
-
sortDirection: DataSortDirection;
|
|
465
|
-
};
|
|
466
|
-
interface DataTableComponentState {
|
|
467
|
-
filters?: Filter$1[];
|
|
468
|
-
sorting?: Sort;
|
|
469
|
-
selectedRows?: Row[];
|
|
470
|
-
expandedRows?: Row[];
|
|
313
|
+
interface DataListGridComponentState {
|
|
471
314
|
activePage?: number;
|
|
472
315
|
pageSize?: number;
|
|
473
316
|
}
|
|
474
|
-
declare class
|
|
317
|
+
declare class DataListGridComponent extends DataSortBase implements OnInit {
|
|
318
|
+
readonly stateService: DataViewStateService;
|
|
319
|
+
private readonly userService;
|
|
475
320
|
private readonly router;
|
|
476
321
|
private readonly injector;
|
|
477
|
-
private readonly
|
|
322
|
+
private readonly appStateService;
|
|
478
323
|
private readonly hasPermissionChecker;
|
|
479
324
|
private readonly liveAnnouncer;
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
rows: _angular_core.ModelSignal<Row[]>;
|
|
483
|
-
previousRows: _angular_core.Signal<Row[]>;
|
|
484
|
-
selectedRows: _angular_core.ModelSignal<Row[]>;
|
|
485
|
-
selectedIds: _angular_core.WritableSignal<(string | number)[]>;
|
|
486
|
-
filters: _angular_core.ModelSignal<Filter$1[]>;
|
|
487
|
-
previousFilters: _angular_core.Signal<Filter$1[]>;
|
|
488
|
-
sortDirection: _angular_core.ModelSignal<DataSortDirection>;
|
|
489
|
-
sortColumn: _angular_core.ModelSignal<string>;
|
|
490
|
-
columnTemplates$: Observable<Record<string, TemplateRef<any> | null>> | undefined;
|
|
491
|
-
columnFilterTemplates$: Observable<Record<string, TemplateRef<any> | null>> | undefined;
|
|
492
|
-
columns: _angular_core.ModelSignal<DataTableColumn[]>;
|
|
493
|
-
clientSideFiltering: _angular_core.InputSignal<boolean>;
|
|
325
|
+
titleLineId: _angular_core.InputSignal<string | undefined>;
|
|
326
|
+
subtitleLineIds: _angular_core.InputSignal<string[] | undefined>;
|
|
494
327
|
clientSideSorting: _angular_core.InputSignal<boolean>;
|
|
495
|
-
|
|
496
|
-
|
|
328
|
+
clientSideFiltering: _angular_core.InputSignal<boolean>;
|
|
329
|
+
sortStates: _angular_core.InputSignal<DataSortDirection[]>;
|
|
330
|
+
set page(value: number);
|
|
331
|
+
set pageSize(value: number);
|
|
332
|
+
pageSizes: _angular_core.InputSignal<number[]>;
|
|
497
333
|
displayedPageSize: _angular_core.Signal<number>;
|
|
498
|
-
pageSize: _angular_core.ModelSignal<number | undefined>;
|
|
499
334
|
emptyResultsMessage: _angular_core.InputSignal<string | undefined>;
|
|
500
|
-
|
|
501
|
-
|
|
335
|
+
fallbackImage: _angular_core.InputSignal<string>;
|
|
336
|
+
set layout(value: 'grid' | 'list');
|
|
502
337
|
viewPermission: _angular_core.InputSignal<PermissionInput>;
|
|
503
338
|
editPermission: _angular_core.InputSignal<PermissionInput>;
|
|
339
|
+
deletePermission: _angular_core.InputSignal<PermissionInput>;
|
|
504
340
|
deleteActionVisibleField: _angular_core.InputSignal<string | undefined>;
|
|
505
341
|
deleteActionEnabledField: _angular_core.InputSignal<string | undefined>;
|
|
506
342
|
viewActionVisibleField: _angular_core.InputSignal<string | undefined>;
|
|
507
343
|
viewActionEnabledField: _angular_core.InputSignal<string | undefined>;
|
|
508
344
|
editActionVisibleField: _angular_core.InputSignal<string | undefined>;
|
|
509
345
|
editActionEnabledField: _angular_core.InputSignal<string | undefined>;
|
|
510
|
-
|
|
511
|
-
|
|
346
|
+
viewMenuItemKey: _angular_core.InputSignal<string | undefined>;
|
|
347
|
+
editMenuItemKey: _angular_core.InputSignal<string | undefined>;
|
|
348
|
+
deleteMenuItemKey: _angular_core.InputSignal<string | undefined>;
|
|
512
349
|
paginator: _angular_core.InputSignal<boolean>;
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
350
|
+
columnTemplates$: Observable<Record<string, TemplateRef<any> | null>> | undefined;
|
|
351
|
+
set columns(value: DataTableColumn[]);
|
|
352
|
+
filteredColumns: _angular_core.Signal<DataTableColumn[]>;
|
|
353
|
+
name: _angular_core.ModelSignal<string | undefined>;
|
|
517
354
|
totalRecordsOnServer: _angular_core.InputSignal<number | undefined>;
|
|
518
355
|
currentPageShowingKey: _angular_core.InputSignal<string>;
|
|
519
356
|
currentPageShowingWithTotalOnServerKey: _angular_core.InputSignal<string>;
|
|
@@ -526,82 +363,49 @@ declare class DataTableComponent extends DataSortBase implements OnInit {
|
|
|
526
363
|
totalRecords: string;
|
|
527
364
|
totalRecordsOnServer: number | undefined;
|
|
528
365
|
}>;
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
additionalActions:
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
expandedRowIds: _angular_core.Signal<(string | number)[]>;
|
|
571
|
-
expandedRowKeys: _angular_core.Signal<Record<string, boolean>>;
|
|
572
|
-
expandable: _angular_core.InputSignal<boolean>;
|
|
573
|
-
frozenExpandColumn: _angular_core.InputSignal<boolean>;
|
|
574
|
-
filtered: _angular_core.OutputEmitterRef<Filter$1[]>;
|
|
575
|
-
sorted: _angular_core.OutputEmitterRef<Sort>;
|
|
576
|
-
viewTableRow: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row>;
|
|
577
|
-
editTableRow: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row>;
|
|
578
|
-
deleteTableRow: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row>;
|
|
579
|
-
selectionChanged: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row[]>;
|
|
580
|
-
pageChanged: _angular_core.OutputEmitterRef<number>;
|
|
581
|
-
pageSizeChanged: _angular_core.OutputEmitterRef<number>;
|
|
582
|
-
componentStateChanged: _angular_core.OutputEmitterRef<DataTableComponentState>;
|
|
583
|
-
rowExpanded: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row>;
|
|
584
|
-
rowCollapsed: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row>;
|
|
585
|
-
displayedRows$: Observable<Pick<{
|
|
586
|
-
[x: string]: unknown;
|
|
587
|
-
}, string>[]>;
|
|
588
|
-
selectedFilteredRows: _angular_core.Signal<Row[]>;
|
|
589
|
-
currentFilterColumn: _angular_core.WritableSignal<DataTableColumn | null>;
|
|
590
|
-
currentEqualFilterOptions$: Observable<{
|
|
591
|
-
options: never[];
|
|
592
|
-
column: undefined;
|
|
593
|
-
} | {
|
|
594
|
-
options: SelectItem<any>[];
|
|
595
|
-
column: DataTableColumn;
|
|
596
|
-
}>;
|
|
597
|
-
currentEqualSelectedFilters: _angular_core.Signal<unknown[]>;
|
|
598
|
-
currentTruthySelectedFilters: _angular_core.Signal<unknown[]>;
|
|
599
|
-
filterAmounts: _angular_core.Signal<Record<string, number>>;
|
|
600
|
-
overflowActions: _angular_core.Signal<DataAction[]>;
|
|
601
|
-
overflowActions$: Observable<DataAction[]>;
|
|
602
|
-
inlineActions: _angular_core.Signal<DataAction[]>;
|
|
366
|
+
set data(value: RowListGridData$1[]);
|
|
367
|
+
previousData: _angular_core.Signal<RowListGridData$1[]>;
|
|
368
|
+
set filters(value: Filter$1[]);
|
|
369
|
+
previousFilters: _angular_core.Signal<Filter$1[]>;
|
|
370
|
+
set sortDirection(value: DataSortDirection);
|
|
371
|
+
set sortField(value: string);
|
|
372
|
+
private readonly permissions$;
|
|
373
|
+
gridItemSubtitleLinesTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
374
|
+
gridItemSubtitleLinesChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
375
|
+
get gridItemSubtitleLines(): TemplateRef<any> | undefined;
|
|
376
|
+
listItemSubtitleLinesTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
377
|
+
listItemSubtitleLinesChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
378
|
+
get listItemSubtitleLines(): TemplateRef<any> | undefined;
|
|
379
|
+
listItemTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
380
|
+
listItemChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
381
|
+
get listItem(): TemplateRef<any> | undefined;
|
|
382
|
+
gridItemTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
383
|
+
gridItemChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
384
|
+
get gridItem(): TemplateRef<any> | undefined;
|
|
385
|
+
listValueTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
386
|
+
listValueChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
387
|
+
get listValue(): TemplateRef<any> | undefined;
|
|
388
|
+
translationKeyListValueTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
389
|
+
translationKeyListValueChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
390
|
+
get translationKeyListValue(): TemplateRef<any> | undefined;
|
|
391
|
+
numberListValueTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
392
|
+
numberListValueChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
393
|
+
get numberListValue(): TemplateRef<any> | undefined;
|
|
394
|
+
relativeDateListValueTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
395
|
+
relativeDateListValueChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
396
|
+
get relativeDateListValue(): TemplateRef<any> | undefined;
|
|
397
|
+
stringListValueTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
398
|
+
stringListValueChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
399
|
+
get stringListValue(): TemplateRef<any> | undefined;
|
|
400
|
+
dateListValueTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
401
|
+
dateListValueChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
402
|
+
get dateListValue(): TemplateRef<any> | undefined;
|
|
403
|
+
set additionalActions(value: DataAction[]);
|
|
404
|
+
inlineListActions: _angular_core.Signal<DataAction[]>;
|
|
405
|
+
overflowListActions: _angular_core.Signal<DataAction[]>;
|
|
406
|
+
overflowListActions$: Observable<DataAction[]>;
|
|
603
407
|
currentMenuRow: _angular_core.WritableSignal<Row | null>;
|
|
604
|
-
|
|
408
|
+
overflowListMenuItems$: Observable<{
|
|
605
409
|
label: any;
|
|
606
410
|
icon: string | undefined;
|
|
607
411
|
styleClass: string;
|
|
@@ -609,138 +413,162 @@ declare class DataTableComponent extends DataSortBase implements OnInit {
|
|
|
609
413
|
visible: boolean;
|
|
610
414
|
command: () => void;
|
|
611
415
|
}[]>;
|
|
416
|
+
viewItem: ObservableOutputEmitterRef<ListGridData | undefined>;
|
|
417
|
+
editItem: ObservableOutputEmitterRef<ListGridData | undefined>;
|
|
418
|
+
deleteItem: ObservableOutputEmitterRef<ListGridData | undefined>;
|
|
419
|
+
pageChanged: _angular_core.OutputEmitterRef<number>;
|
|
420
|
+
pageSizeChanged: _angular_core.OutputEmitterRef<number>;
|
|
421
|
+
componentStateChanged: _angular_core.OutputEmitterRef<DataListGridComponentState>;
|
|
422
|
+
get viewItemObserved(): boolean;
|
|
423
|
+
get editItemObserved(): boolean;
|
|
424
|
+
get deleteItemObserved(): boolean;
|
|
425
|
+
observedOutputs: _angular_core.Signal<number>;
|
|
426
|
+
get sortDirectionNumber(): number;
|
|
427
|
+
selectedItem: _angular_core.WritableSignal<ListGridData | undefined>;
|
|
428
|
+
permittedAdditionalActions$: Observable<DataAction[]>;
|
|
429
|
+
gridMenuState$: Observable<{
|
|
430
|
+
permissions: string[];
|
|
431
|
+
additionalActions: DataAction[];
|
|
432
|
+
selectedItem: ListGridData | undefined;
|
|
433
|
+
viewMenuItemKey: string;
|
|
434
|
+
editMenuItemKey: string;
|
|
435
|
+
deleteMenuItemKey: string;
|
|
436
|
+
viewPermission: PermissionInput;
|
|
437
|
+
editPermission: PermissionInput;
|
|
438
|
+
deletePermission: PermissionInput;
|
|
439
|
+
viewActionEnabledField: string | undefined;
|
|
440
|
+
editActionEnabledField: string | undefined;
|
|
441
|
+
deleteActionEnabledField: string | undefined;
|
|
442
|
+
viewActionVisibleField: string | undefined;
|
|
443
|
+
editActionVisibleField: string | undefined;
|
|
444
|
+
deleteActionVisibleField: string | undefined;
|
|
445
|
+
}>;
|
|
446
|
+
gridMenuItems$: Observable<MenuItem[]>;
|
|
447
|
+
displayedItems$: Observable<(ListGridData | Row)[]>;
|
|
448
|
+
fallbackImagePath$: Observable<string>;
|
|
612
449
|
templates: _angular_core.Signal<readonly PrimeTemplate[]>;
|
|
613
450
|
templates$: Observable<readonly PrimeTemplate[]>;
|
|
614
451
|
viewTemplates: _angular_core.Signal<readonly PrimeTemplate[]>;
|
|
615
452
|
viewTemplates$: Observable<readonly PrimeTemplate[]>;
|
|
616
453
|
parentTemplates: _angular_core.ModelSignal<PrimeTemplate[] | null | undefined>;
|
|
617
454
|
parentTemplates$: Observable<PrimeTemplate[] | null | undefined>;
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
get deleteTableRowObserved(): boolean;
|
|
622
|
-
get anyRowActionObserved(): boolean;
|
|
623
|
-
get actionColumnVisible(): boolean;
|
|
624
|
-
getRowColspan(hasExpansionTemplate: boolean): number;
|
|
625
|
-
get selectionChangedObserved(): boolean;
|
|
455
|
+
columnType: typeof ColumnType;
|
|
456
|
+
private templatesObservables;
|
|
457
|
+
hasViewPermission$: Observable<boolean>;
|
|
626
458
|
constructor();
|
|
627
459
|
ngOnInit(): void;
|
|
628
|
-
|
|
460
|
+
onDeleteRow(element: ListGridData): void;
|
|
461
|
+
onViewRow(element: ListGridData): void;
|
|
462
|
+
onEditRow(element: ListGridData): void;
|
|
463
|
+
imgError(item: ListGridData): void;
|
|
464
|
+
getFallbackImagePath(mfeInfo: MfeInfo): string;
|
|
465
|
+
setSelectedItem(item: ListGridData): void;
|
|
466
|
+
resolveFieldData(object: any, key: any): any;
|
|
629
467
|
emitComponentStateChanged(): void;
|
|
630
|
-
emitSelectionChanged(): void;
|
|
631
|
-
onRowExpand(event: any): void;
|
|
632
|
-
onRowCollapse(event: any): void;
|
|
633
|
-
isRowExpanded(row: Row): boolean;
|
|
634
|
-
toggleRowExpansion(row: Row): void;
|
|
635
|
-
onSortColumnClick(sortColumn: string): void;
|
|
636
|
-
columnNextSortDirection(sortColumn: string): DataSortDirection;
|
|
637
|
-
onDeleteRow(selectedTableRow: Row): void;
|
|
638
|
-
onViewRow(selectedTableRow: Row): void;
|
|
639
|
-
onEditRow(selectedTableRow: Row): void;
|
|
640
|
-
onFilterChosen(column: DataTableColumn): void;
|
|
641
|
-
onMultiselectFilterChange(column: DataTableColumn, event: any): void;
|
|
642
|
-
sortIconTitle(sortColumn: string): "OCX_DATA_TABLE.TOGGLE_BUTTON.ASCENDING_TITLE" | "OCX_DATA_TABLE.TOGGLE_BUTTON.DESCENDING_TITLE" | "OCX_DATA_TABLE.TOGGLE_BUTTON.DEFAULT_TITLE";
|
|
643
|
-
sortDirectionToTitle(sortDirection: DataSortDirection): "OCX_DATA_TABLE.TOGGLE_BUTTON.ASCENDING_TITLE" | "OCX_DATA_TABLE.TOGGLE_BUTTON.DESCENDING_TITLE" | "OCX_DATA_TABLE.TOGGLE_BUTTON.DEFAULT_TITLE";
|
|
644
|
-
isRowSelectionDisabled(rowObject: Row): boolean;
|
|
645
|
-
rowSelectable(event: any): boolean;
|
|
646
|
-
onSelectionChange(selection: Row[]): void;
|
|
647
|
-
mergeWithDisabledKeys(newSelectionIds: (string | number)[], disabledRowIds: (string | number)[]): (string | number)[];
|
|
648
|
-
isSelected(row: Row): boolean;
|
|
649
468
|
onPageChange(event: any): void;
|
|
650
469
|
fieldIsTruthy(object: any, key: any): boolean;
|
|
651
|
-
toggleOverflowMenu(event: MouseEvent, menu: Menu, row: Row): void;
|
|
652
470
|
hasVisibleOverflowMenuItems(row: any): Observable<boolean>;
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
private
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
resolveFieldData(object: any, key: any): any;
|
|
660
|
-
getRowObjectFromMultiselectItem(value: MultiSelectItem, column: DataTableColumn): Record<string, string | undefined>;
|
|
661
|
-
rowTrackByFunction: (index: number, item: any) => any;
|
|
471
|
+
toggleOverflowMenu(event: MouseEvent, menu: Menu, row: Row): void;
|
|
472
|
+
findTemplate(templates: PrimeTemplate[], names: string[]): PrimeTemplate | undefined;
|
|
473
|
+
getTemplate(column: DataTableColumn): Observable<TemplateRef<any> | null>;
|
|
474
|
+
private mapGridMenuItems;
|
|
475
|
+
private getGridActionsTranslations;
|
|
476
|
+
private shouldDisplayAction;
|
|
662
477
|
private filterActionsBasedOnPermissions;
|
|
663
|
-
|
|
478
|
+
private getPermissions;
|
|
479
|
+
onActionClick(action: DataAction, item: any): Promise<void>;
|
|
664
480
|
private createMenuItemCommand;
|
|
665
|
-
|
|
666
|
-
static
|
|
667
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DataTableComponent, "ocx-data-table", never, { "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "selectedRows": { "alias": "selectedRows"; "required": false; "isSignal": true; }; "filters": { "alias": "filters"; "required": false; "isSignal": true; }; "sortDirection": { "alias": "sortDirection"; "required": false; "isSignal": true; }; "sortColumn": { "alias": "sortColumn"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "clientSideFiltering": { "alias": "clientSideFiltering"; "required": false; "isSignal": true; }; "clientSideSorting": { "alias": "clientSideSorting"; "required": false; "isSignal": true; }; "sortStates": { "alias": "sortStates"; "required": false; "isSignal": true; }; "pageSizes": { "alias": "pageSizes"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "emptyResultsMessage": { "alias": "emptyResultsMessage"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "deletePermission": { "alias": "deletePermission"; "required": false; "isSignal": true; }; "viewPermission": { "alias": "viewPermission"; "required": false; "isSignal": true; }; "editPermission": { "alias": "editPermission"; "required": false; "isSignal": true; }; "deleteActionVisibleField": { "alias": "deleteActionVisibleField"; "required": false; "isSignal": true; }; "deleteActionEnabledField": { "alias": "deleteActionEnabledField"; "required": false; "isSignal": true; }; "viewActionVisibleField": { "alias": "viewActionVisibleField"; "required": false; "isSignal": true; }; "viewActionEnabledField": { "alias": "viewActionEnabledField"; "required": false; "isSignal": true; }; "editActionVisibleField": { "alias": "editActionVisibleField"; "required": false; "isSignal": true; }; "editActionEnabledField": { "alias": "editActionEnabledField"; "required": false; "isSignal": true; }; "selectionEnabledField": { "alias": "selectionEnabledField"; "required": false; "isSignal": true; }; "allowSelectAll": { "alias": "allowSelectAll"; "required": false; "isSignal": true; }; "paginator": { "alias": "paginator"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": false; "isSignal": true; }; "tableStyle": { "alias": "tableStyle"; "required": false; "isSignal": true; }; "totalRecordsOnServer": { "alias": "totalRecordsOnServer"; "required": false; "isSignal": true; }; "currentPageShowingKey": { "alias": "currentPageShowingKey"; "required": false; "isSignal": true; }; "currentPageShowingWithTotalOnServerKey": { "alias": "currentPageShowingWithTotalOnServerKey"; "required": false; "isSignal": true; }; "captionTemplate": { "alias": "captionTemplate"; "required": false; "isSignal": true; }; "stringCellTemplate": { "alias": "stringCellTemplate"; "required": false; "isSignal": true; }; "numberCellTemplate": { "alias": "numberCellTemplate"; "required": false; "isSignal": true; }; "dateCellTemplate": { "alias": "dateCellTemplate"; "required": false; "isSignal": true; }; "relativeDateCellTemplate": { "alias": "relativeDateCellTemplate"; "required": false; "isSignal": true; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; "isSignal": true; }; "translationKeyCellTemplate": { "alias": "translationKeyCellTemplate"; "required": false; "isSignal": true; }; "stringFilterCellTemplate": { "alias": "stringFilterCellTemplate"; "required": false; "isSignal": true; }; "numberFilterCellTemplate": { "alias": "numberFilterCellTemplate"; "required": false; "isSignal": true; }; "dateFilterCellTemplate": { "alias": "dateFilterCellTemplate"; "required": false; "isSignal": true; }; "relativeDateFilterCellTemplate": { "alias": "relativeDateFilterCellTemplate"; "required": false; "isSignal": true; }; "filterCellTemplate": { "alias": "filterCellTemplate"; "required": false; "isSignal": true; }; "translationKeyFilterCellTemplate": { "alias": "translationKeyFilterCellTemplate"; "required": false; "isSignal": true; }; "additionalActions": { "alias": "additionalActions"; "required": false; "isSignal": true; }; "frozenActionColumn": { "alias": "frozenActionColumn"; "required": false; "isSignal": true; }; "actionColumnPosition": { "alias": "actionColumnPosition"; "required": false; "isSignal": true; }; "expandedRows": { "alias": "expandedRows"; "required": false; "isSignal": true; }; "expandable": { "alias": "expandable"; "required": false; "isSignal": true; }; "frozenExpandColumn": { "alias": "frozenExpandColumn"; "required": false; "isSignal": true; }; "parentTemplates": { "alias": "parentTemplates"; "required": false; "isSignal": true; }; }, { "rows": "rowsChange"; "selectedRows": "selectedRowsChange"; "filters": "filtersChange"; "sortDirection": "sortDirectionChange"; "sortColumn": "sortColumnChange"; "columns": "columnsChange"; "sortStates": "sortStatesChange"; "pageSizes": "pageSizesChange"; "pageSize": "pageSizeChange"; "name": "nameChange"; "page": "pageChange"; "additionalActions": "additionalActionsChange"; "expandedRows": "expandedRowsChange"; "filtered": "filtered"; "sorted": "sorted"; "viewTableRow": "viewTableRow"; "editTableRow": "editTableRow"; "deleteTableRow": "deleteTableRow"; "selectionChanged": "selectionChanged"; "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "componentStateChanged": "componentStateChanged"; "rowExpanded": "rowExpanded"; "rowCollapsed": "rowCollapsed"; "parentTemplates": "parentTemplatesChange"; }, ["stringCellChildTemplate", "numberCellChildTemplate", "dateCellChildTemplate", "relativeDateCellChildTemplate", "cellChildTemplate", "translationKeyCellChildTemplate", "stringFilterCellChildTemplate", "numberFilterCellChildTemplate", "dateFilterCellChildTemplate", "relativeDateFilterCellChildTemplate", "filterCellChildTemplate", "translationKeyFilterCellChildTemplate", "templates"], never, false, never>;
|
|
481
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DataListGridComponent, never>;
|
|
482
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DataListGridComponent, "ocx-data-list-grid", never, { "titleLineId": { "alias": "titleLineId"; "required": false; "isSignal": true; }; "subtitleLineIds": { "alias": "subtitleLineIds"; "required": false; "isSignal": true; }; "clientSideSorting": { "alias": "clientSideSorting"; "required": false; "isSignal": true; }; "clientSideFiltering": { "alias": "clientSideFiltering"; "required": false; "isSignal": true; }; "sortStates": { "alias": "sortStates"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "pageSizes": { "alias": "pageSizes"; "required": false; "isSignal": true; }; "emptyResultsMessage": { "alias": "emptyResultsMessage"; "required": false; "isSignal": true; }; "fallbackImage": { "alias": "fallbackImage"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; }; "viewPermission": { "alias": "viewPermission"; "required": false; "isSignal": true; }; "editPermission": { "alias": "editPermission"; "required": false; "isSignal": true; }; "deletePermission": { "alias": "deletePermission"; "required": false; "isSignal": true; }; "deleteActionVisibleField": { "alias": "deleteActionVisibleField"; "required": false; "isSignal": true; }; "deleteActionEnabledField": { "alias": "deleteActionEnabledField"; "required": false; "isSignal": true; }; "viewActionVisibleField": { "alias": "viewActionVisibleField"; "required": false; "isSignal": true; }; "viewActionEnabledField": { "alias": "viewActionEnabledField"; "required": false; "isSignal": true; }; "editActionVisibleField": { "alias": "editActionVisibleField"; "required": false; "isSignal": true; }; "editActionEnabledField": { "alias": "editActionEnabledField"; "required": false; "isSignal": true; }; "viewMenuItemKey": { "alias": "viewMenuItemKey"; "required": false; "isSignal": true; }; "editMenuItemKey": { "alias": "editMenuItemKey"; "required": false; "isSignal": true; }; "deleteMenuItemKey": { "alias": "deleteMenuItemKey"; "required": false; "isSignal": true; }; "paginator": { "alias": "paginator"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "totalRecordsOnServer": { "alias": "totalRecordsOnServer"; "required": false; "isSignal": true; }; "currentPageShowingKey": { "alias": "currentPageShowingKey"; "required": false; "isSignal": true; }; "currentPageShowingWithTotalOnServerKey": { "alias": "currentPageShowingWithTotalOnServerKey"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "sortField": { "alias": "sortField"; "required": false; }; "gridItemSubtitleLinesTemplate": { "alias": "gridItemSubtitleLinesTemplate"; "required": false; "isSignal": true; }; "listItemSubtitleLinesTemplate": { "alias": "listItemSubtitleLinesTemplate"; "required": false; "isSignal": true; }; "listItemTemplate": { "alias": "listItemTemplate"; "required": false; "isSignal": true; }; "gridItemTemplate": { "alias": "gridItemTemplate"; "required": false; "isSignal": true; }; "listValueTemplate": { "alias": "listValueTemplate"; "required": false; "isSignal": true; }; "translationKeyListValueTemplate": { "alias": "translationKeyListValueTemplate"; "required": false; "isSignal": true; }; "numberListValueTemplate": { "alias": "numberListValueTemplate"; "required": false; "isSignal": true; }; "relativeDateListValueTemplate": { "alias": "relativeDateListValueTemplate"; "required": false; "isSignal": true; }; "stringListValueTemplate": { "alias": "stringListValueTemplate"; "required": false; "isSignal": true; }; "dateListValueTemplate": { "alias": "dateListValueTemplate"; "required": false; "isSignal": true; }; "additionalActions": { "alias": "additionalActions"; "required": false; }; "parentTemplates": { "alias": "parentTemplates"; "required": false; "isSignal": true; }; }, { "name": "nameChange"; "viewItem": "viewItem"; "editItem": "editItem"; "deleteItem": "deleteItem"; "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "componentStateChanged": "componentStateChanged"; "parentTemplates": "parentTemplatesChange"; }, ["gridItemSubtitleLinesChildTemplate", "listItemSubtitleLinesChildTemplate", "listItemChildTemplate", "gridItemChildTemplate", "listValueChildTemplate", "translationKeyListValueChildTemplate", "numberListValueChildTemplate", "relativeDateListValueChildTemplate", "stringListValueChildTemplate", "dateListValueChildTemplate", "templates"], never, false, never>;
|
|
668
483
|
}
|
|
669
484
|
|
|
670
|
-
type RowListGridData
|
|
485
|
+
type RowListGridData = ListGridData | Row;
|
|
671
486
|
declare class DataSortBase {
|
|
672
487
|
protected locale: string;
|
|
673
488
|
protected translateService: TranslateService;
|
|
674
489
|
constructor(locale: string, translateService: TranslateService);
|
|
675
|
-
translateItems(items: RowListGridData
|
|
676
|
-
filterItems([items, filters, translations]: [RowListGridData
|
|
490
|
+
translateItems(items: RowListGridData[], columns: DataTableColumn[], clientSideFiltering: boolean, clientSideSorting: boolean): Observable<Record<string, Record<string, string>>>;
|
|
491
|
+
filterItems([items, filters, translations]: [RowListGridData[], Filter$1[], Record<string, Record<string, string>>], clientSideFiltering: boolean): RowListGridData[];
|
|
677
492
|
sortItems([items, sortColumn, sortDirection, translations]: [
|
|
678
|
-
RowListGridData
|
|
493
|
+
RowListGridData[],
|
|
679
494
|
string,
|
|
680
495
|
DataSortDirection,
|
|
681
496
|
Record<string, Record<string, string>>
|
|
682
|
-
], columns: DataTableColumn[], clientSideSorting: boolean): RowListGridData
|
|
683
|
-
flattenItems(items: RowListGridData
|
|
497
|
+
], columns: DataTableColumn[], clientSideSorting: boolean): RowListGridData[];
|
|
498
|
+
flattenItems(items: RowListGridData[]): Pick<{
|
|
684
499
|
[x: string]: unknown;
|
|
685
500
|
}, string>[];
|
|
686
501
|
createCompareFunction(translatedColValues: Record<string, string>, sortColumn: string, sortDirection: DataSortDirection): (a: Record<string, any>, b: Record<string, any>) => number;
|
|
687
502
|
}
|
|
688
503
|
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
constructor();
|
|
692
|
-
}
|
|
693
|
-
declare function observableOutput<T>(): ObservableOutputEmitterRef<T>;
|
|
504
|
+
type ViewLayout = 'grid' | 'list' | 'table';
|
|
505
|
+
type InteractiveExpandedRows = Row[] | string[] | number[];
|
|
694
506
|
|
|
695
|
-
type
|
|
507
|
+
type Primitive = number | string | boolean | bigint | Date;
|
|
508
|
+
type Row = {
|
|
696
509
|
id: string | number;
|
|
697
|
-
imagePath: string | number;
|
|
698
510
|
[columnId: string]: unknown;
|
|
699
511
|
};
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
512
|
+
declare enum TemplateType {
|
|
513
|
+
CELL = "CELL",
|
|
514
|
+
FILTERCELL = "FILTERCELL"
|
|
703
515
|
}
|
|
704
|
-
|
|
516
|
+
type Sort = {
|
|
517
|
+
sortColumn: string;
|
|
518
|
+
sortDirection: DataSortDirection;
|
|
519
|
+
};
|
|
520
|
+
interface DataTableComponentState {
|
|
521
|
+
filters?: Filter$1[];
|
|
522
|
+
sorting?: Sort;
|
|
523
|
+
selectedRows?: Row[];
|
|
524
|
+
expandedRows?: Row[];
|
|
705
525
|
activePage?: number;
|
|
706
526
|
pageSize?: number;
|
|
707
527
|
}
|
|
708
|
-
declare class
|
|
709
|
-
private readonly userService;
|
|
528
|
+
declare class DataTableComponent extends DataSortBase implements OnInit {
|
|
710
529
|
private readonly router;
|
|
711
530
|
private readonly injector;
|
|
712
|
-
private readonly
|
|
531
|
+
private readonly userService;
|
|
713
532
|
private readonly hasPermissionChecker;
|
|
714
533
|
private readonly liveAnnouncer;
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
534
|
+
readonly stateService: DataViewStateService;
|
|
535
|
+
FilterType: typeof FilterType;
|
|
536
|
+
TemplateType: typeof TemplateType;
|
|
537
|
+
rows: _angular_core.ModelSignal<Row[]>;
|
|
538
|
+
previousRows: _angular_core.Signal<Row[]>;
|
|
539
|
+
set selectedRows(value: Row[]);
|
|
540
|
+
selectedIds: _angular_core.WritableSignal<(string | number)[]>;
|
|
541
|
+
set filters(value: Filter$1[]);
|
|
542
|
+
previousFilters: _angular_core.Signal<Filter$1[]>;
|
|
543
|
+
set sortDirection(value: DataSortDirection);
|
|
544
|
+
set sortColumn(value: string);
|
|
545
|
+
columnTemplates$: Observable<Record<string, TemplateRef<any> | null>> | undefined;
|
|
546
|
+
columnFilterTemplates$: Observable<Record<string, TemplateRef<any> | null>> | undefined;
|
|
547
|
+
set columns(value: DataTableColumn[]);
|
|
718
548
|
clientSideFiltering: _angular_core.InputSignal<boolean>;
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
pageSizes: _angular_core.
|
|
549
|
+
clientSideSorting: _angular_core.InputSignal<boolean>;
|
|
550
|
+
sortStates: _angular_core.ModelSignal<DataSortDirection[]>;
|
|
551
|
+
pageSizes: _angular_core.ModelSignal<number[]>;
|
|
722
552
|
displayedPageSize: _angular_core.Signal<number>;
|
|
553
|
+
set pageSize(value: number | undefined);
|
|
723
554
|
emptyResultsMessage: _angular_core.InputSignal<string | undefined>;
|
|
724
|
-
|
|
725
|
-
|
|
555
|
+
name: _angular_core.ModelSignal<string>;
|
|
556
|
+
deletePermission: _angular_core.InputSignal<PermissionInput>;
|
|
726
557
|
viewPermission: _angular_core.InputSignal<PermissionInput>;
|
|
727
558
|
editPermission: _angular_core.InputSignal<PermissionInput>;
|
|
728
|
-
deletePermission: _angular_core.InputSignal<PermissionInput>;
|
|
729
559
|
deleteActionVisibleField: _angular_core.InputSignal<string | undefined>;
|
|
730
560
|
deleteActionEnabledField: _angular_core.InputSignal<string | undefined>;
|
|
731
561
|
viewActionVisibleField: _angular_core.InputSignal<string | undefined>;
|
|
732
562
|
viewActionEnabledField: _angular_core.InputSignal<string | undefined>;
|
|
733
563
|
editActionVisibleField: _angular_core.InputSignal<string | undefined>;
|
|
734
564
|
editActionEnabledField: _angular_core.InputSignal<string | undefined>;
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
deleteMenuItemKey: _angular_core.InputSignal<string | undefined>;
|
|
565
|
+
selectionEnabledField: _angular_core.InputSignal<string | undefined>;
|
|
566
|
+
allowSelectAll: _angular_core.InputSignal<boolean>;
|
|
738
567
|
paginator: _angular_core.InputSignal<boolean>;
|
|
739
|
-
page:
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
name: _angular_core.ModelSignal<string | undefined>;
|
|
568
|
+
set page(value: number);
|
|
569
|
+
tableStyle: _angular_core.InputSignal<{
|
|
570
|
+
[klass: string]: any;
|
|
571
|
+
} | undefined>;
|
|
744
572
|
totalRecordsOnServer: _angular_core.InputSignal<number | undefined>;
|
|
745
573
|
currentPageShowingKey: _angular_core.InputSignal<string>;
|
|
746
574
|
currentPageShowingWithTotalOnServerKey: _angular_core.InputSignal<string>;
|
|
@@ -753,49 +581,82 @@ declare class DataListGridComponent extends DataSortBase implements OnInit {
|
|
|
753
581
|
totalRecords: string;
|
|
754
582
|
totalRecordsOnServer: number | undefined;
|
|
755
583
|
}>;
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
additionalActions:
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
584
|
+
captionTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
585
|
+
stringCellTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
586
|
+
stringCellChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
587
|
+
stringCell: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
588
|
+
numberCellTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
589
|
+
numberCellChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
590
|
+
numberCell: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
591
|
+
dateCellTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
592
|
+
dateCellChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
593
|
+
dateCell: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
594
|
+
relativeDateCellTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
595
|
+
relativeDateCellChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
596
|
+
relativeDateCell: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
597
|
+
cellTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
598
|
+
cellChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
599
|
+
cell: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
600
|
+
translationKeyCellTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
601
|
+
translationKeyCellChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
602
|
+
translationKeyCell: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
603
|
+
stringFilterCellTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
604
|
+
stringFilterCellChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
605
|
+
stringFilterCell: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
606
|
+
numberFilterCellTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
607
|
+
numberFilterCellChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
608
|
+
numberFilterCell: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
609
|
+
dateFilterCellTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
610
|
+
dateFilterCellChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
611
|
+
dateFilterCell: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
612
|
+
relativeDateFilterCellTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
613
|
+
relativeDateFilterCellChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
614
|
+
relativeDateFilterCell: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
615
|
+
filterCellTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
616
|
+
filterCellChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
617
|
+
filterCell: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
618
|
+
translationKeyFilterCellTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
619
|
+
translationKeyFilterCellChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
620
|
+
translationKeyFilterCell: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
621
|
+
set additionalActions(value: DataAction[]);
|
|
622
|
+
set frozenActionColumn(value: boolean);
|
|
623
|
+
set actionColumnPosition(value: 'left' | 'right');
|
|
624
|
+
set expandedRows(value: InteractiveExpandedRows);
|
|
625
|
+
expandedRowIds: _angular_core.Signal<(string | number)[]>;
|
|
626
|
+
expandedRowKeys: _angular_core.Signal<Record<string, boolean>>;
|
|
627
|
+
expandable: _angular_core.InputSignal<boolean>;
|
|
628
|
+
frozenExpandColumn: _angular_core.InputSignal<boolean>;
|
|
629
|
+
filtered: _angular_core.OutputEmitterRef<Filter$1[]>;
|
|
630
|
+
sorted: _angular_core.OutputEmitterRef<Sort>;
|
|
631
|
+
viewTableRow: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row>;
|
|
632
|
+
editTableRow: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row>;
|
|
633
|
+
deleteTableRow: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row>;
|
|
634
|
+
selectionChanged: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row[]>;
|
|
635
|
+
pageChanged: _angular_core.OutputEmitterRef<number>;
|
|
636
|
+
pageSizeChanged: _angular_core.OutputEmitterRef<number>;
|
|
637
|
+
componentStateChanged: _angular_core.OutputEmitterRef<DataTableComponentState>;
|
|
638
|
+
rowExpanded: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row>;
|
|
639
|
+
rowCollapsed: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row>;
|
|
640
|
+
displayedRows$: Observable<Pick<{
|
|
641
|
+
[x: string]: unknown;
|
|
642
|
+
}, string>[]>;
|
|
643
|
+
selectedFilteredRows: _angular_core.Signal<Row[]>;
|
|
644
|
+
currentFilterColumn: _angular_core.WritableSignal<DataTableColumn | null>;
|
|
645
|
+
currentEqualFilterOptions$: Observable<{
|
|
646
|
+
options: never[];
|
|
647
|
+
column: undefined;
|
|
648
|
+
} | {
|
|
649
|
+
options: SelectItem<any>[];
|
|
650
|
+
column: DataTableColumn;
|
|
651
|
+
}>;
|
|
652
|
+
currentEqualSelectedFilters: _angular_core.Signal<unknown[]>;
|
|
653
|
+
currentTruthySelectedFilters: _angular_core.Signal<unknown[]>;
|
|
654
|
+
filterAmounts: _angular_core.Signal<Record<string, number>>;
|
|
655
|
+
overflowActions: _angular_core.Signal<DataAction[]>;
|
|
656
|
+
overflowActions$: Observable<DataAction[]>;
|
|
657
|
+
inlineActions: _angular_core.Signal<DataAction[]>;
|
|
797
658
|
currentMenuRow: _angular_core.WritableSignal<Row | null>;
|
|
798
|
-
|
|
659
|
+
overflowMenuItems$: Observable<{
|
|
799
660
|
label: any;
|
|
800
661
|
icon: string | undefined;
|
|
801
662
|
styleClass: string;
|
|
@@ -803,73 +664,264 @@ declare class DataListGridComponent extends DataSortBase implements OnInit {
|
|
|
803
664
|
visible: boolean;
|
|
804
665
|
command: () => void;
|
|
805
666
|
}[]>;
|
|
806
|
-
viewItem: ObservableOutputEmitterRef<ListGridData | undefined>;
|
|
807
|
-
editItem: ObservableOutputEmitterRef<ListGridData | undefined>;
|
|
808
|
-
deleteItem: ObservableOutputEmitterRef<ListGridData | undefined>;
|
|
809
|
-
pageChanged: _angular_core.OutputEmitterRef<number>;
|
|
810
|
-
pageSizeChanged: _angular_core.OutputEmitterRef<number>;
|
|
811
|
-
componentStateChanged: _angular_core.OutputEmitterRef<DataListGridComponentState>;
|
|
812
|
-
get viewItemObserved(): boolean;
|
|
813
|
-
get editItemObserved(): boolean;
|
|
814
|
-
get deleteItemObserved(): boolean;
|
|
815
|
-
observedOutputs: _angular_core.Signal<number>;
|
|
816
|
-
get sortDirectionNumber(): number;
|
|
817
|
-
selectedItem: _angular_core.WritableSignal<ListGridData | undefined>;
|
|
818
|
-
permittedAdditionalActions$: Observable<DataAction[]>;
|
|
819
|
-
gridMenuState$: Observable<{
|
|
820
|
-
permissions: string[];
|
|
821
|
-
additionalActions: DataAction[];
|
|
822
|
-
selectedItem: ListGridData | undefined;
|
|
823
|
-
viewMenuItemKey: string;
|
|
824
|
-
editMenuItemKey: string;
|
|
825
|
-
deleteMenuItemKey: string;
|
|
826
|
-
viewPermission: PermissionInput;
|
|
827
|
-
editPermission: PermissionInput;
|
|
828
|
-
deletePermission: PermissionInput;
|
|
829
|
-
viewActionEnabledField: string | undefined;
|
|
830
|
-
editActionEnabledField: string | undefined;
|
|
831
|
-
deleteActionEnabledField: string | undefined;
|
|
832
|
-
viewActionVisibleField: string | undefined;
|
|
833
|
-
editActionVisibleField: string | undefined;
|
|
834
|
-
deleteActionVisibleField: string | undefined;
|
|
835
|
-
}>;
|
|
836
|
-
gridMenuItems$: Observable<MenuItem[]>;
|
|
837
|
-
displayedItems$: Observable<(Row | ListGridData)[]>;
|
|
838
|
-
fallbackImagePath$: Observable<string>;
|
|
839
667
|
templates: _angular_core.Signal<readonly PrimeTemplate[]>;
|
|
840
668
|
templates$: Observable<readonly PrimeTemplate[]>;
|
|
841
669
|
viewTemplates: _angular_core.Signal<readonly PrimeTemplate[]>;
|
|
842
670
|
viewTemplates$: Observable<readonly PrimeTemplate[]>;
|
|
843
671
|
parentTemplates: _angular_core.ModelSignal<PrimeTemplate[] | null | undefined>;
|
|
844
672
|
parentTemplates$: Observable<PrimeTemplate[] | null | undefined>;
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
673
|
+
expansionTemplate: _angular_core.Signal<PrimeTemplate | undefined>;
|
|
674
|
+
get viewTableRowObserved(): boolean;
|
|
675
|
+
get editTableRowObserved(): boolean;
|
|
676
|
+
get deleteTableRowObserved(): boolean;
|
|
677
|
+
get anyRowActionObserved(): boolean;
|
|
678
|
+
get actionColumnVisible(): boolean;
|
|
679
|
+
getRowColspan(hasExpansionTemplate: boolean): number;
|
|
680
|
+
get selectionChangedObserved(): boolean;
|
|
848
681
|
constructor();
|
|
849
682
|
ngOnInit(): void;
|
|
850
|
-
|
|
851
|
-
onViewRow(element: ListGridData): void;
|
|
852
|
-
onEditRow(element: ListGridData): void;
|
|
853
|
-
imgError(item: ListGridData): void;
|
|
854
|
-
getFallbackImagePath(mfeInfo: MfeInfo): string;
|
|
855
|
-
setSelectedItem(item: ListGridData): void;
|
|
856
|
-
resolveFieldData(object: any, key: any): any;
|
|
683
|
+
translateColumnValues(columnValues: string[]): Observable<any>;
|
|
857
684
|
emitComponentStateChanged(): void;
|
|
685
|
+
emitSelectionChanged(): void;
|
|
686
|
+
onRowExpand(event: any): void;
|
|
687
|
+
onRowCollapse(event: any): void;
|
|
688
|
+
isRowExpanded(row: Row): boolean;
|
|
689
|
+
toggleRowExpansion(row: Row): void;
|
|
690
|
+
onSortColumnClick(sortColumn: string): void;
|
|
691
|
+
columnNextSortDirection(sortColumn: string): DataSortDirection;
|
|
692
|
+
onDeleteRow(selectedTableRow: Row): void;
|
|
693
|
+
onViewRow(selectedTableRow: Row): void;
|
|
694
|
+
onEditRow(selectedTableRow: Row): void;
|
|
695
|
+
onFilterChosen(column: DataTableColumn): void;
|
|
696
|
+
onMultiselectFilterChange(column: DataTableColumn, event: any): void;
|
|
697
|
+
sortIconTitle(sortColumn: string): "OCX_DATA_TABLE.TOGGLE_BUTTON.ASCENDING_TITLE" | "OCX_DATA_TABLE.TOGGLE_BUTTON.DESCENDING_TITLE" | "OCX_DATA_TABLE.TOGGLE_BUTTON.DEFAULT_TITLE";
|
|
698
|
+
sortDirectionToTitle(sortDirection: DataSortDirection): "OCX_DATA_TABLE.TOGGLE_BUTTON.ASCENDING_TITLE" | "OCX_DATA_TABLE.TOGGLE_BUTTON.DESCENDING_TITLE" | "OCX_DATA_TABLE.TOGGLE_BUTTON.DEFAULT_TITLE";
|
|
699
|
+
isRowSelectionDisabled(rowObject: Row): boolean;
|
|
700
|
+
rowSelectable(event: any): boolean;
|
|
701
|
+
onSelectionChange(selection: Row[]): void;
|
|
702
|
+
mergeWithDisabledKeys(newSelectionIds: (string | number)[], disabledRowIds: (string | number)[]): (string | number)[];
|
|
703
|
+
isSelected(row: Row): boolean;
|
|
858
704
|
onPageChange(event: any): void;
|
|
859
705
|
fieldIsTruthy(object: any, key: any): boolean;
|
|
860
|
-
hasVisibleOverflowMenuItems(row: any): Observable<boolean>;
|
|
861
706
|
toggleOverflowMenu(event: MouseEvent, menu: Menu, row: Row): void;
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
private
|
|
865
|
-
private
|
|
866
|
-
private
|
|
707
|
+
hasVisibleOverflowMenuItems(row: any): Observable<boolean>;
|
|
708
|
+
isDate(value: Date | string | number): boolean;
|
|
709
|
+
private readonly cellTemplatesData;
|
|
710
|
+
private readonly filterTemplatesData;
|
|
711
|
+
private readonly templatesDataMap;
|
|
712
|
+
getColumnTypeTemplate(templates: PrimeTemplate[], columnType: ColumnType, templateType: TemplateType): TemplateRef<any> | null;
|
|
713
|
+
getTemplate(column: DataTableColumn, templateType: TemplateType): Observable<TemplateRef<any> | null>;
|
|
714
|
+
resolveFieldData(object: any, key: any): any;
|
|
715
|
+
getRowObjectFromMultiselectItem(value: MultiSelectItem, column: DataTableColumn): Record<string, string | undefined>;
|
|
716
|
+
rowTrackByFunction: (index: number, item: any) => any;
|
|
867
717
|
private filterActionsBasedOnPermissions;
|
|
868
|
-
|
|
869
|
-
onActionClick(action: DataAction, item: any): Promise<void>;
|
|
718
|
+
onActionClick(action: DataAction, rowObject: any): Promise<void>;
|
|
870
719
|
private createMenuItemCommand;
|
|
871
|
-
|
|
872
|
-
static
|
|
720
|
+
getRowSummary(rowObject: any): string;
|
|
721
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DataTableComponent, never>;
|
|
722
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DataTableComponent, "ocx-data-table", never, { "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "selectedRows": { "alias": "selectedRows"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "sortColumn": { "alias": "sortColumn"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "clientSideFiltering": { "alias": "clientSideFiltering"; "required": false; "isSignal": true; }; "clientSideSorting": { "alias": "clientSideSorting"; "required": false; "isSignal": true; }; "sortStates": { "alias": "sortStates"; "required": false; "isSignal": true; }; "pageSizes": { "alias": "pageSizes"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; }; "emptyResultsMessage": { "alias": "emptyResultsMessage"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "deletePermission": { "alias": "deletePermission"; "required": false; "isSignal": true; }; "viewPermission": { "alias": "viewPermission"; "required": false; "isSignal": true; }; "editPermission": { "alias": "editPermission"; "required": false; "isSignal": true; }; "deleteActionVisibleField": { "alias": "deleteActionVisibleField"; "required": false; "isSignal": true; }; "deleteActionEnabledField": { "alias": "deleteActionEnabledField"; "required": false; "isSignal": true; }; "viewActionVisibleField": { "alias": "viewActionVisibleField"; "required": false; "isSignal": true; }; "viewActionEnabledField": { "alias": "viewActionEnabledField"; "required": false; "isSignal": true; }; "editActionVisibleField": { "alias": "editActionVisibleField"; "required": false; "isSignal": true; }; "editActionEnabledField": { "alias": "editActionEnabledField"; "required": false; "isSignal": true; }; "selectionEnabledField": { "alias": "selectionEnabledField"; "required": false; "isSignal": true; }; "allowSelectAll": { "alias": "allowSelectAll"; "required": false; "isSignal": true; }; "paginator": { "alias": "paginator"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": false; }; "tableStyle": { "alias": "tableStyle"; "required": false; "isSignal": true; }; "totalRecordsOnServer": { "alias": "totalRecordsOnServer"; "required": false; "isSignal": true; }; "currentPageShowingKey": { "alias": "currentPageShowingKey"; "required": false; "isSignal": true; }; "currentPageShowingWithTotalOnServerKey": { "alias": "currentPageShowingWithTotalOnServerKey"; "required": false; "isSignal": true; }; "captionTemplate": { "alias": "captionTemplate"; "required": false; "isSignal": true; }; "stringCellTemplate": { "alias": "stringCellTemplate"; "required": false; "isSignal": true; }; "numberCellTemplate": { "alias": "numberCellTemplate"; "required": false; "isSignal": true; }; "dateCellTemplate": { "alias": "dateCellTemplate"; "required": false; "isSignal": true; }; "relativeDateCellTemplate": { "alias": "relativeDateCellTemplate"; "required": false; "isSignal": true; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; "isSignal": true; }; "translationKeyCellTemplate": { "alias": "translationKeyCellTemplate"; "required": false; "isSignal": true; }; "stringFilterCellTemplate": { "alias": "stringFilterCellTemplate"; "required": false; "isSignal": true; }; "numberFilterCellTemplate": { "alias": "numberFilterCellTemplate"; "required": false; "isSignal": true; }; "dateFilterCellTemplate": { "alias": "dateFilterCellTemplate"; "required": false; "isSignal": true; }; "relativeDateFilterCellTemplate": { "alias": "relativeDateFilterCellTemplate"; "required": false; "isSignal": true; }; "filterCellTemplate": { "alias": "filterCellTemplate"; "required": false; "isSignal": true; }; "translationKeyFilterCellTemplate": { "alias": "translationKeyFilterCellTemplate"; "required": false; "isSignal": true; }; "additionalActions": { "alias": "additionalActions"; "required": false; }; "frozenActionColumn": { "alias": "frozenActionColumn"; "required": false; }; "actionColumnPosition": { "alias": "actionColumnPosition"; "required": false; }; "expandedRows": { "alias": "expandedRows"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; "isSignal": true; }; "frozenExpandColumn": { "alias": "frozenExpandColumn"; "required": false; "isSignal": true; }; "parentTemplates": { "alias": "parentTemplates"; "required": false; "isSignal": true; }; }, { "rows": "rowsChange"; "sortStates": "sortStatesChange"; "pageSizes": "pageSizesChange"; "name": "nameChange"; "filtered": "filtered"; "sorted": "sorted"; "viewTableRow": "viewTableRow"; "editTableRow": "editTableRow"; "deleteTableRow": "deleteTableRow"; "selectionChanged": "selectionChanged"; "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "componentStateChanged": "componentStateChanged"; "rowExpanded": "rowExpanded"; "rowCollapsed": "rowCollapsed"; "parentTemplates": "parentTemplatesChange"; }, ["stringCellChildTemplate", "numberCellChildTemplate", "dateCellChildTemplate", "relativeDateCellChildTemplate", "cellChildTemplate", "translationKeyCellChildTemplate", "stringFilterCellChildTemplate", "numberFilterCellChildTemplate", "dateFilterCellChildTemplate", "relativeDateFilterCellChildTemplate", "filterCellChildTemplate", "translationKeyFilterCellChildTemplate", "templates"], never, false, never>;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
interface InteractiveDataView {
|
|
726
|
+
layout?: ViewLayout;
|
|
727
|
+
activeColumnGroupKey?: string;
|
|
728
|
+
columns?: DataTableColumn[];
|
|
729
|
+
actionColumnConfig?: {
|
|
730
|
+
frozen: boolean;
|
|
731
|
+
position: 'left' | 'right';
|
|
732
|
+
};
|
|
733
|
+
data?: Row[];
|
|
734
|
+
additionalActions?: DataAction[];
|
|
735
|
+
sorting?: {
|
|
736
|
+
sortColumn: string;
|
|
737
|
+
sortDirection: DataSortDirection;
|
|
738
|
+
};
|
|
739
|
+
filters?: Filter$1[];
|
|
740
|
+
selectedRows?: Row[];
|
|
741
|
+
expandedRows?: InteractiveExpandedRows;
|
|
742
|
+
activePage?: number;
|
|
743
|
+
pageSize?: number;
|
|
744
|
+
listGridPaginator?: boolean;
|
|
745
|
+
tablePaginator?: boolean;
|
|
746
|
+
}
|
|
747
|
+
declare class DataViewStateService {
|
|
748
|
+
layout: _angular_core.WritableSignal<ViewLayout>;
|
|
749
|
+
activeColumnGroupKey: _angular_core.WritableSignal<string | undefined>;
|
|
750
|
+
columns: _angular_core.WritableSignal<DataTableColumn[]>;
|
|
751
|
+
actionColumnConfigFrozen: _angular_core.WritableSignal<boolean>;
|
|
752
|
+
actionColumnConfigPosition: _angular_core.WritableSignal<"right" | "left">;
|
|
753
|
+
data: _angular_core.WritableSignal<RowListGridData$1[]>;
|
|
754
|
+
additionalActions: _angular_core.WritableSignal<DataAction[]>;
|
|
755
|
+
sortColumn: _angular_core.WritableSignal<string>;
|
|
756
|
+
sortDirection: _angular_core.WritableSignal<DataSortDirection>;
|
|
757
|
+
filters: _angular_core.WritableSignal<Filter$1[]>;
|
|
758
|
+
selectedRows: _angular_core.WritableSignal<Row[]>;
|
|
759
|
+
expandedRows: _angular_core.WritableSignal<InteractiveExpandedRows>;
|
|
760
|
+
activePage: _angular_core.WritableSignal<number>;
|
|
761
|
+
pageSize: _angular_core.WritableSignal<number | undefined>;
|
|
762
|
+
listGridPaginator: _angular_core.WritableSignal<boolean>;
|
|
763
|
+
tablePaginator: _angular_core.WritableSignal<boolean>;
|
|
764
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DataViewStateService, never>;
|
|
765
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DataViewStateService>;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
type GroupSelectionChangedEvent = {
|
|
769
|
+
activeColumns: DataTableColumn[];
|
|
770
|
+
groupKey: string;
|
|
771
|
+
};
|
|
772
|
+
interface ColumnGroupSelectionComponentState {
|
|
773
|
+
activeColumnGroupKey?: string;
|
|
774
|
+
displayedColumns?: DataTableColumn[];
|
|
775
|
+
}
|
|
776
|
+
declare class ColumnGroupSelectionComponent implements OnInit {
|
|
777
|
+
readonly stateService: DataViewStateService;
|
|
778
|
+
set selectedGroupKey(value: string);
|
|
779
|
+
set columns(value: DataTableColumn[]);
|
|
780
|
+
readonly placeholderKey: _angular_core.InputSignal<string>;
|
|
781
|
+
readonly defaultGroupKey: _angular_core.InputSignal<string>;
|
|
782
|
+
readonly customGroupKey: _angular_core.InputSignal<string>;
|
|
783
|
+
readonly groupSelectionChanged: _angular_core.OutputEmitterRef<GroupSelectionChangedEvent>;
|
|
784
|
+
readonly componentStateChanged: _angular_core.OutputEmitterRef<ColumnGroupSelectionComponentState>;
|
|
785
|
+
readonly allGroupKeys: _angular_core.Signal<string[]>;
|
|
786
|
+
constructor();
|
|
787
|
+
ngOnInit(): void;
|
|
788
|
+
changeGroupSelection(event: {
|
|
789
|
+
value: string;
|
|
790
|
+
}): void;
|
|
791
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ColumnGroupSelectionComponent, never>;
|
|
792
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ColumnGroupSelectionComponent, "ocx-column-group-selection", never, { "selectedGroupKey": { "alias": "selectedGroupKey"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "placeholderKey": { "alias": "placeholderKey"; "required": false; "isSignal": true; }; "defaultGroupKey": { "alias": "defaultGroupKey"; "required": false; "isSignal": true; }; "customGroupKey": { "alias": "customGroupKey"; "required": false; "isSignal": true; }; }, { "groupSelectionChanged": "groupSelectionChanged"; "componentStateChanged": "componentStateChanged"; }, never, never, false, never>;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
declare class OcxContentComponent {
|
|
796
|
+
/**
|
|
797
|
+
* Optionally allows specifying a title for the content card
|
|
798
|
+
*/
|
|
799
|
+
title: _angular_core.InputSignal<string>;
|
|
800
|
+
/**
|
|
801
|
+
* Optionally allows specifying styles for the content card
|
|
802
|
+
*/
|
|
803
|
+
styleClass: _angular_core.InputSignal<string | undefined>;
|
|
804
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OcxContentComponent, never>;
|
|
805
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OcxContentComponent, "ocx-content", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "styleClass": { "alias": "styleClass"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
declare class OcxContentContainerComponent {
|
|
809
|
+
/**
|
|
810
|
+
* Allows specifying the layout direction of the container
|
|
811
|
+
*/
|
|
812
|
+
layout: _angular_core.InputSignal<"horizontal" | "vertical">;
|
|
813
|
+
/**
|
|
814
|
+
* Allows specifying the breakpoint below which a horizontal layout switches to a vertical layout.
|
|
815
|
+
* Only necessary if horizontal layout is used
|
|
816
|
+
* Default: md
|
|
817
|
+
*/
|
|
818
|
+
breakpoint: _angular_core.InputSignal<"sm" | "md" | "lg" | "xl">;
|
|
819
|
+
/**
|
|
820
|
+
* Optionally allows specifying styles for the container
|
|
821
|
+
*/
|
|
822
|
+
styleClass: _angular_core.InputSignal<string | undefined>;
|
|
823
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OcxContentContainerComponent, never>;
|
|
824
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OcxContentContainerComponent, "ocx-content-container", never, { "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "breakpoint": { "alias": "breakpoint"; "required": false; "isSignal": true; }; "styleClass": { "alias": "styleClass"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
type ColumnSelectionChangedEvent = {
|
|
828
|
+
activeColumns: DataTableColumn[];
|
|
829
|
+
};
|
|
830
|
+
type ActionColumnChangedEvent = {
|
|
831
|
+
frozenActionColumn: boolean;
|
|
832
|
+
actionColumnPosition: 'left' | 'right';
|
|
833
|
+
};
|
|
834
|
+
interface CustomGroupColumnSelectorComponentState {
|
|
835
|
+
actionColumnConfig?: {
|
|
836
|
+
frozen: boolean;
|
|
837
|
+
position: 'left' | 'right';
|
|
838
|
+
};
|
|
839
|
+
displayedColumns?: DataTableColumn[];
|
|
840
|
+
activeColumnGroupKey?: string;
|
|
841
|
+
}
|
|
842
|
+
declare class CustomGroupColumnSelectorComponent implements OnInit {
|
|
843
|
+
readonly stateService: DataViewStateService;
|
|
844
|
+
set columns(value: DataTableColumn[]);
|
|
845
|
+
readonly displayedColumns: _angular_core.ModelSignal<DataTableColumn[]>;
|
|
846
|
+
readonly customGroupKey: _angular_core.InputSignal<string>;
|
|
847
|
+
readonly dialogTitle: _angular_core.InputSignal<string>;
|
|
848
|
+
readonly dialogTitleKey: _angular_core.InputSignal<string>;
|
|
849
|
+
readonly openButtonTitle: _angular_core.InputSignal<string>;
|
|
850
|
+
readonly openButtonTitleKey: _angular_core.InputSignal<string>;
|
|
851
|
+
readonly openButtonAriaLabel: _angular_core.InputSignal<string>;
|
|
852
|
+
readonly openButtonAriaLabelKey: _angular_core.InputSignal<string>;
|
|
853
|
+
readonly saveButtonLabel: _angular_core.InputSignal<string>;
|
|
854
|
+
readonly saveButtonLabelKey: _angular_core.InputSignal<string>;
|
|
855
|
+
readonly saveButtonAriaLabel: _angular_core.InputSignal<string>;
|
|
856
|
+
readonly saveButtonAriaLabelKey: _angular_core.InputSignal<string>;
|
|
857
|
+
readonly cancelButtonLabel: _angular_core.InputSignal<string>;
|
|
858
|
+
readonly cancelButtonLabelKey: _angular_core.InputSignal<string>;
|
|
859
|
+
readonly cancelButtonAriaLabel: _angular_core.InputSignal<string>;
|
|
860
|
+
readonly cancelButtonAriaLabelKey: _angular_core.InputSignal<string>;
|
|
861
|
+
readonly activeColumnsLabel: _angular_core.InputSignal<string>;
|
|
862
|
+
readonly activeColumnsLabelKey: _angular_core.InputSignal<string>;
|
|
863
|
+
readonly inactiveColumnsLabel: _angular_core.InputSignal<string>;
|
|
864
|
+
readonly inactiveColumnsLabelKey: _angular_core.InputSignal<string>;
|
|
865
|
+
set frozenActionColumn(value: boolean);
|
|
866
|
+
set actionColumnPosition(value: 'left' | 'right');
|
|
867
|
+
readonly columnSelectionChanged: _angular_core.OutputEmitterRef<ColumnSelectionChangedEvent>;
|
|
868
|
+
readonly actionColumnConfigChanged: _angular_core.OutputEmitterRef<ActionColumnChangedEvent>;
|
|
869
|
+
readonly componentStateChanged: _angular_core.OutputEmitterRef<CustomGroupColumnSelectorComponentState>;
|
|
870
|
+
readonly hiddenColumnsModel: _angular_core.WritableSignal<DataTableColumn[]>;
|
|
871
|
+
readonly displayedColumnsModel: _angular_core.WritableSignal<DataTableColumn[]>;
|
|
872
|
+
readonly frozenActionColumnModel: _angular_core.WritableSignal<boolean>;
|
|
873
|
+
readonly actionColumnPositionModel: _angular_core.WritableSignal<"right" | "left">;
|
|
874
|
+
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
875
|
+
readonly alignmentOptions: _angular_core.WritableSignal<{
|
|
876
|
+
label: string;
|
|
877
|
+
value: "left" | "right";
|
|
878
|
+
}[]>;
|
|
879
|
+
readonly frozenOptions: _angular_core.WritableSignal<{
|
|
880
|
+
label: string;
|
|
881
|
+
value: boolean;
|
|
882
|
+
}[]>;
|
|
883
|
+
private readonly _actionColumnState;
|
|
884
|
+
constructor();
|
|
885
|
+
ngOnInit(): void;
|
|
886
|
+
onOpenCustomGroupColumnSelectionDialogClick(): void;
|
|
887
|
+
onSaveClick(): void;
|
|
888
|
+
onCancelClick(): void;
|
|
889
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CustomGroupColumnSelectorComponent, never>;
|
|
890
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CustomGroupColumnSelectorComponent, "ocx-custom-group-column-selector", never, { "columns": { "alias": "columns"; "required": false; }; "displayedColumns": { "alias": "displayedColumns"; "required": false; "isSignal": true; }; "customGroupKey": { "alias": "customGroupKey"; "required": false; "isSignal": true; }; "dialogTitle": { "alias": "dialogTitle"; "required": false; "isSignal": true; }; "dialogTitleKey": { "alias": "dialogTitleKey"; "required": false; "isSignal": true; }; "openButtonTitle": { "alias": "openButtonTitle"; "required": false; "isSignal": true; }; "openButtonTitleKey": { "alias": "openButtonTitleKey"; "required": false; "isSignal": true; }; "openButtonAriaLabel": { "alias": "openButtonAriaLabel"; "required": false; "isSignal": true; }; "openButtonAriaLabelKey": { "alias": "openButtonAriaLabelKey"; "required": false; "isSignal": true; }; "saveButtonLabel": { "alias": "saveButtonLabel"; "required": false; "isSignal": true; }; "saveButtonLabelKey": { "alias": "saveButtonLabelKey"; "required": false; "isSignal": true; }; "saveButtonAriaLabel": { "alias": "saveButtonAriaLabel"; "required": false; "isSignal": true; }; "saveButtonAriaLabelKey": { "alias": "saveButtonAriaLabelKey"; "required": false; "isSignal": true; }; "cancelButtonLabel": { "alias": "cancelButtonLabel"; "required": false; "isSignal": true; }; "cancelButtonLabelKey": { "alias": "cancelButtonLabelKey"; "required": false; "isSignal": true; }; "cancelButtonAriaLabel": { "alias": "cancelButtonAriaLabel"; "required": false; "isSignal": true; }; "cancelButtonAriaLabelKey": { "alias": "cancelButtonAriaLabelKey"; "required": false; "isSignal": true; }; "activeColumnsLabel": { "alias": "activeColumnsLabel"; "required": false; "isSignal": true; }; "activeColumnsLabelKey": { "alias": "activeColumnsLabelKey"; "required": false; "isSignal": true; }; "inactiveColumnsLabel": { "alias": "inactiveColumnsLabel"; "required": false; "isSignal": true; }; "inactiveColumnsLabelKey": { "alias": "inactiveColumnsLabelKey"; "required": false; "isSignal": true; }; "frozenActionColumn": { "alias": "frozenActionColumn"; "required": false; }; "actionColumnPosition": { "alias": "actionColumnPosition"; "required": false; }; }, { "displayedColumns": "displayedColumnsChange"; "columnSelectionChanged": "columnSelectionChanged"; "actionColumnConfigChanged": "actionColumnConfigChanged"; "componentStateChanged": "componentStateChanged"; }, never, never, false, never>;
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
/**
|
|
894
|
+
* @example let myIcon : PrimeIcon = PrimeIcons.myIcon
|
|
895
|
+
*/
|
|
896
|
+
type PrimeIcon = (typeof PrimeIcons)[keyof Omit<typeof PrimeIcons, 'prototype'>];
|
|
897
|
+
|
|
898
|
+
interface ViewingLayouts {
|
|
899
|
+
id: string;
|
|
900
|
+
icon: PrimeIcon;
|
|
901
|
+
layout: ViewLayout;
|
|
902
|
+
tooltip?: string;
|
|
903
|
+
tooltipKey: string;
|
|
904
|
+
label?: string;
|
|
905
|
+
labelKey: string;
|
|
906
|
+
}
|
|
907
|
+
interface DataLayoutSelectionComponentState {
|
|
908
|
+
layout?: ViewLayout;
|
|
909
|
+
}
|
|
910
|
+
declare class DataLayoutSelectionComponent implements OnInit {
|
|
911
|
+
readonly stateService: DataViewStateService;
|
|
912
|
+
supportedViewLayouts: _angular_core.InputSignal<string[]>;
|
|
913
|
+
set layout(value: ViewLayout);
|
|
914
|
+
readonly dataViewLayoutChange: _angular_core.OutputEmitterRef<ViewLayout>;
|
|
915
|
+
readonly componentStateChanged: _angular_core.OutputEmitterRef<DataLayoutSelectionComponentState>;
|
|
916
|
+
viewingLayouts: _angular_core.Signal<ViewingLayouts[]>;
|
|
917
|
+
readonly selectedViewLayout: _angular_core.Signal<ViewingLayouts | undefined>;
|
|
918
|
+
ngOnInit(): void;
|
|
919
|
+
onDataViewLayoutChange(event: {
|
|
920
|
+
icon: PrimeIcon;
|
|
921
|
+
layout: ViewLayout;
|
|
922
|
+
}): void;
|
|
923
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DataLayoutSelectionComponent, never>;
|
|
924
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DataLayoutSelectionComponent, "ocx-data-layout-selection", never, { "supportedViewLayouts": { "alias": "supportedViewLayouts"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; }; }, { "dataViewLayoutChange": "dataViewLayoutChange"; "componentStateChanged": "componentStateChanged"; }, never, never, false, never>;
|
|
873
925
|
}
|
|
874
926
|
|
|
875
927
|
interface DataColumnNameId {
|
|
@@ -885,10 +937,11 @@ interface DataListGridSortingComponentState {
|
|
|
885
937
|
sorting?: ListGridSort;
|
|
886
938
|
}
|
|
887
939
|
declare class DataListGridSortingComponent {
|
|
888
|
-
readonly
|
|
940
|
+
readonly stateService: DataViewStateService;
|
|
941
|
+
set columns(value: DataTableColumn[]);
|
|
889
942
|
readonly sortStates: _angular_core.InputSignal<DataSortDirection[]>;
|
|
890
|
-
|
|
891
|
-
|
|
943
|
+
set sortDirection(value: DataSortDirection);
|
|
944
|
+
set sortField(value: string);
|
|
892
945
|
readonly sortChange: _angular_core.OutputEmitterRef<string>;
|
|
893
946
|
readonly sortDirectionChange: _angular_core.OutputEmitterRef<DataSortDirection>;
|
|
894
947
|
readonly componentStateChanged: _angular_core.OutputEmitterRef<DataListGridSortingComponentState>;
|
|
@@ -903,17 +956,15 @@ declare class DataListGridSortingComponent {
|
|
|
903
956
|
sortIconTitle(): string;
|
|
904
957
|
sortDirectionToTitle(sortDirection: DataSortDirection): string;
|
|
905
958
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DataListGridSortingComponent, never>;
|
|
906
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DataListGridSortingComponent, "ocx-data-list-grid-sorting", never, { "columns": { "alias": "columns"; "required": false;
|
|
959
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DataListGridSortingComponent, "ocx-data-list-grid-sorting", never, { "columns": { "alias": "columns"; "required": false; }; "sortStates": { "alias": "sortStates"; "required": false; "isSignal": true; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "sortField": { "alias": "sortField"; "required": false; }; }, { "sortChange": "sortChange"; "sortDirectionChange": "sortDirectionChange"; "componentStateChanged": "componentStateChanged"; "columnsChange": "columnsChange"; }, never, never, false, never>;
|
|
907
960
|
}
|
|
908
961
|
|
|
909
|
-
type RowListGridData = ListGridData & Row;
|
|
910
962
|
type DataViewComponentState = DataListGridComponentState & DataTableComponentState;
|
|
911
963
|
declare class DataViewComponent implements OnInit {
|
|
912
964
|
private readonly injector;
|
|
965
|
+
readonly stateService: DataViewStateService;
|
|
913
966
|
dataListGridComponent: _angular_core.Signal<DataListGridComponent | undefined>;
|
|
914
967
|
dataTableComponent: _angular_core.Signal<DataTableComponent | undefined>;
|
|
915
|
-
dataTableComponentState$: ReplaySubject<DataTableComponentState>;
|
|
916
|
-
dataListGridComponentState$: ReplaySubject<DataListGridComponentState>;
|
|
917
968
|
deletePermission: _angular_core.InputSignal<string | string[] | undefined>;
|
|
918
969
|
editPermission: _angular_core.InputSignal<string | string[] | undefined>;
|
|
919
970
|
viewPermission: _angular_core.InputSignal<string | string[] | undefined>;
|
|
@@ -925,36 +976,35 @@ declare class DataViewComponent implements OnInit {
|
|
|
925
976
|
editActionEnabledField: _angular_core.InputSignal<string | undefined>;
|
|
926
977
|
tableSelectionEnabledField: _angular_core.InputSignal<string | undefined>;
|
|
927
978
|
tableAllowSelectAll: _angular_core.InputSignal<boolean>;
|
|
928
|
-
data:
|
|
979
|
+
set data(value: RowListGridData$1[]);
|
|
929
980
|
name: _angular_core.InputSignal<string>;
|
|
930
981
|
titleLineId: _angular_core.InputSignal<string | undefined>;
|
|
931
982
|
subtitleLineIds: _angular_core.InputSignal<string[] | undefined>;
|
|
932
|
-
|
|
933
|
-
|
|
983
|
+
set page(value: number);
|
|
984
|
+
set pageSize(value: number | undefined);
|
|
985
|
+
set selectedRow(value: Row[]);
|
|
986
|
+
set expandedRows(value: InteractiveExpandedRows);
|
|
987
|
+
set frozenActionColumn(value: boolean);
|
|
988
|
+
set actionColumnPosition(value: 'left' | 'right');
|
|
989
|
+
set layout(value: ViewLayout);
|
|
990
|
+
set columns(value: DataTableColumn[]);
|
|
934
991
|
emptyResultsMessage: _angular_core.InputSignal<string | undefined>;
|
|
935
992
|
clientSideSorting: _angular_core.InputSignal<boolean>;
|
|
936
993
|
clientSideFiltering: _angular_core.InputSignal<boolean>;
|
|
937
994
|
fallbackImage: _angular_core.InputSignal<string | undefined>;
|
|
938
|
-
filters:
|
|
939
|
-
sortField:
|
|
940
|
-
sortDirection:
|
|
941
|
-
listGridPaginator: _angular_core.ModelSignal<boolean>;
|
|
942
|
-
tablePaginator: _angular_core.ModelSignal<boolean>;
|
|
943
|
-
get paginator(): boolean;
|
|
995
|
+
set filters(value: Filter$1[]);
|
|
996
|
+
set sortField(value: string);
|
|
997
|
+
set sortDirection(value: DataSortDirection);
|
|
944
998
|
set paginator(value: boolean);
|
|
945
|
-
|
|
999
|
+
set listGridPaginator(value: boolean);
|
|
1000
|
+
set tablePaginator(value: boolean);
|
|
946
1001
|
totalRecordsOnServer: _angular_core.InputSignal<number | undefined>;
|
|
947
1002
|
currentPageShowingKey: _angular_core.InputSignal<string>;
|
|
948
1003
|
currentPageShowingWithTotalOnServerKey: _angular_core.InputSignal<string>;
|
|
949
|
-
selectedRows: _angular_core.InputSignal<Row[]>;
|
|
950
|
-
frozenActionColumn: _angular_core.InputSignal<boolean>;
|
|
951
|
-
actionColumnPosition: _angular_core.InputSignal<"right" | "left">;
|
|
952
1004
|
expandable: _angular_core.InputSignal<boolean>;
|
|
953
1005
|
frozenExpandColumn: _angular_core.InputSignal<boolean>;
|
|
954
|
-
expandedRows: _angular_core.ModelSignal<string[] | Row[] | number[]>;
|
|
955
1006
|
sortStates: _angular_core.InputSignal<DataSortDirection[]>;
|
|
956
1007
|
pageSizes: _angular_core.InputSignal<number[]>;
|
|
957
|
-
pageSize: _angular_core.ModelSignal<number | undefined>;
|
|
958
1008
|
stringTableCellTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
959
1009
|
stringTableCellChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
960
1010
|
get stringTableCell(): TemplateRef<any> | undefined;
|
|
@@ -1021,12 +1071,12 @@ declare class DataViewComponent implements OnInit {
|
|
|
1021
1071
|
numberTableFilterCellTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
1022
1072
|
numberTableFilterCellChildTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
1023
1073
|
get numberTableFilterCell(): TemplateRef<any> | undefined;
|
|
1024
|
-
additionalActions:
|
|
1074
|
+
set additionalActions(value: DataAction[]);
|
|
1025
1075
|
filtered: _angular_core.OutputEmitterRef<Filter$1[]>;
|
|
1026
1076
|
sorted: _angular_core.OutputEmitterRef<Sort>;
|
|
1027
|
-
deleteItem: _onecx_angular_accelerator.ObservableOutputEmitterRef<RowListGridData>;
|
|
1028
|
-
viewItem: _onecx_angular_accelerator.ObservableOutputEmitterRef<RowListGridData>;
|
|
1029
|
-
editItem: _onecx_angular_accelerator.ObservableOutputEmitterRef<RowListGridData>;
|
|
1077
|
+
deleteItem: _onecx_angular_accelerator.ObservableOutputEmitterRef<RowListGridData$1>;
|
|
1078
|
+
viewItem: _onecx_angular_accelerator.ObservableOutputEmitterRef<RowListGridData$1>;
|
|
1079
|
+
editItem: _onecx_angular_accelerator.ObservableOutputEmitterRef<RowListGridData$1>;
|
|
1030
1080
|
selectionChanged: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row[]>;
|
|
1031
1081
|
pageChanged: _angular_core.OutputEmitterRef<number>;
|
|
1032
1082
|
pageSizeChanged: _angular_core.OutputEmitterRef<number>;
|
|
@@ -1054,7 +1104,7 @@ declare class DataViewComponent implements OnInit {
|
|
|
1054
1104
|
onPageChange(event: number): void;
|
|
1055
1105
|
onPageSizeChange(event: number): void;
|
|
1056
1106
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DataViewComponent, never>;
|
|
1057
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DataViewComponent, "ocx-data-view", never, { "deletePermission": { "alias": "deletePermission"; "required": false; "isSignal": true; }; "editPermission": { "alias": "editPermission"; "required": false; "isSignal": true; }; "viewPermission": { "alias": "viewPermission"; "required": false; "isSignal": true; }; "deleteActionVisibleField": { "alias": "deleteActionVisibleField"; "required": false; "isSignal": true; }; "deleteActionEnabledField": { "alias": "deleteActionEnabledField"; "required": false; "isSignal": true; }; "viewActionVisibleField": { "alias": "viewActionVisibleField"; "required": false; "isSignal": true; }; "viewActionEnabledField": { "alias": "viewActionEnabledField"; "required": false; "isSignal": true; }; "editActionVisibleField": { "alias": "editActionVisibleField"; "required": false; "isSignal": true; }; "editActionEnabledField": { "alias": "editActionEnabledField"; "required": false; "isSignal": true; }; "tableSelectionEnabledField": { "alias": "tableSelectionEnabledField"; "required": false; "isSignal": true; }; "tableAllowSelectAll": { "alias": "tableAllowSelectAll"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false;
|
|
1107
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DataViewComponent, "ocx-data-view", never, { "deletePermission": { "alias": "deletePermission"; "required": false; "isSignal": true; }; "editPermission": { "alias": "editPermission"; "required": false; "isSignal": true; }; "viewPermission": { "alias": "viewPermission"; "required": false; "isSignal": true; }; "deleteActionVisibleField": { "alias": "deleteActionVisibleField"; "required": false; "isSignal": true; }; "deleteActionEnabledField": { "alias": "deleteActionEnabledField"; "required": false; "isSignal": true; }; "viewActionVisibleField": { "alias": "viewActionVisibleField"; "required": false; "isSignal": true; }; "viewActionEnabledField": { "alias": "viewActionEnabledField"; "required": false; "isSignal": true; }; "editActionVisibleField": { "alias": "editActionVisibleField"; "required": false; "isSignal": true; }; "editActionEnabledField": { "alias": "editActionEnabledField"; "required": false; "isSignal": true; }; "tableSelectionEnabledField": { "alias": "tableSelectionEnabledField"; "required": false; "isSignal": true; }; "tableAllowSelectAll": { "alias": "tableAllowSelectAll"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "titleLineId": { "alias": "titleLineId"; "required": false; "isSignal": true; }; "subtitleLineIds": { "alias": "subtitleLineIds"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "selectedRow": { "alias": "selectedRow"; "required": false; }; "expandedRows": { "alias": "expandedRows"; "required": false; }; "frozenActionColumn": { "alias": "frozenActionColumn"; "required": false; }; "actionColumnPosition": { "alias": "actionColumnPosition"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "emptyResultsMessage": { "alias": "emptyResultsMessage"; "required": false; "isSignal": true; }; "clientSideSorting": { "alias": "clientSideSorting"; "required": false; "isSignal": true; }; "clientSideFiltering": { "alias": "clientSideFiltering"; "required": false; "isSignal": true; }; "fallbackImage": { "alias": "fallbackImage"; "required": false; "isSignal": true; }; "filters": { "alias": "filters"; "required": false; }; "sortField": { "alias": "sortField"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "paginator": { "alias": "paginator"; "required": false; }; "listGridPaginator": { "alias": "listGridPaginator"; "required": false; }; "tablePaginator": { "alias": "tablePaginator"; "required": false; }; "totalRecordsOnServer": { "alias": "totalRecordsOnServer"; "required": false; "isSignal": true; }; "currentPageShowingKey": { "alias": "currentPageShowingKey"; "required": false; "isSignal": true; }; "currentPageShowingWithTotalOnServerKey": { "alias": "currentPageShowingWithTotalOnServerKey"; "required": false; "isSignal": true; }; "expandable": { "alias": "expandable"; "required": false; "isSignal": true; }; "frozenExpandColumn": { "alias": "frozenExpandColumn"; "required": false; "isSignal": true; }; "sortStates": { "alias": "sortStates"; "required": false; "isSignal": true; }; "pageSizes": { "alias": "pageSizes"; "required": false; "isSignal": true; }; "stringTableCellTemplate": { "alias": "stringTableCellTemplate"; "required": false; "isSignal": true; }; "numberTableCellTemplate": { "alias": "numberTableCellTemplate"; "required": false; "isSignal": true; }; "dateTableCellTemplate": { "alias": "dateTableCellTemplate"; "required": false; "isSignal": true; }; "tableCellTemplate": { "alias": "tableCellTemplate"; "required": false; "isSignal": true; }; "translationKeyTableCellTemplate": { "alias": "translationKeyTableCellTemplate"; "required": false; "isSignal": true; }; "gridItemSubtitleLinesTemplate": { "alias": "gridItemSubtitleLinesTemplate"; "required": false; "isSignal": true; }; "listItemSubtitleLinesTemplate": { "alias": "listItemSubtitleLinesTemplate"; "required": false; "isSignal": true; }; "gridItemTemplate": { "alias": "gridItemTemplate"; "required": false; "isSignal": true; }; "listItemTemplate": { "alias": "listItemTemplate"; "required": false; "isSignal": true; }; "relativeDateTableCellTemplate": { "alias": "relativeDateTableCellTemplate"; "required": false; "isSignal": true; }; "listValueTemplate": { "alias": "listValueTemplate"; "required": false; "isSignal": true; }; "translationKeyListValueTemplate": { "alias": "translationKeyListValueTemplate"; "required": false; "isSignal": true; }; "numberListValueTemplate": { "alias": "numberListValueTemplate"; "required": false; "isSignal": true; }; "relativeDateListValueTemplate": { "alias": "relativeDateListValueTemplate"; "required": false; "isSignal": true; }; "stringListValueTemplate": { "alias": "stringListValueTemplate"; "required": false; "isSignal": true; }; "dateListValueTemplate": { "alias": "dateListValueTemplate"; "required": false; "isSignal": true; }; "tableFilterCellTemplate": { "alias": "tableFilterCellTemplate"; "required": false; "isSignal": true; }; "dateTableFilterCellTemplate": { "alias": "dateTableFilterCellTemplate"; "required": false; "isSignal": true; }; "relativeDateTableFilterCellTemplate": { "alias": "relativeDateTableFilterCellTemplate"; "required": false; "isSignal": true; }; "translationKeyTableFilterCellTemplate": { "alias": "translationKeyTableFilterCellTemplate"; "required": false; "isSignal": true; }; "stringTableFilterCellTemplate": { "alias": "stringTableFilterCellTemplate"; "required": false; "isSignal": true; }; "numberTableFilterCellTemplate": { "alias": "numberTableFilterCellTemplate"; "required": false; "isSignal": true; }; "additionalActions": { "alias": "additionalActions"; "required": false; }; "parentTemplates": { "alias": "parentTemplates"; "required": false; "isSignal": true; }; }, { "filtered": "filtered"; "sorted": "sorted"; "deleteItem": "deleteItem"; "viewItem": "viewItem"; "editItem": "editItem"; "selectionChanged": "selectionChanged"; "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "componentStateChanged": "componentStateChanged"; "rowExpanded": "rowExpanded"; "rowCollapsed": "rowCollapsed"; }, ["stringTableCellChildTemplate", "numberTableCellChildTemplate", "dateTableCellChildTemplate", "tableCellChildTemplate", "translationKeyTableCellChildTemplate", "gridItemSubtitleLinesChildTemplate", "listItemSubtitleLinesChildTemplate", "gridItemChildTemplate", "listItemChildTemplate", "relativeDateTableCellChildTemplate", "listValueChildTemplate", "translationKeyListValueChildTemplate", "numberListValueChildTemplate", "relativeDateListValueChildTemplate", "stringListValueChildTemplate", "dateListValueChildTemplate", "tableFilterCellChildTemplate", "dateTableFilterCellChildTemplate", "relativeDateTableFilterCellChildTemplate", "translationKeyTableFilterCellChildTemplate", "stringTableFilterCellChildTemplate", "numberTableFilterCellChildTemplate", "templates"], never, false, never>;
|
|
1058
1108
|
}
|
|
1059
1109
|
|
|
1060
1110
|
type DiagramData = {
|
|
@@ -1137,8 +1187,9 @@ interface FilterViewComponentState {
|
|
|
1137
1187
|
declare class FilterViewComponent {
|
|
1138
1188
|
ColumnType: typeof ColumnType;
|
|
1139
1189
|
FilterType: typeof FilterType;
|
|
1140
|
-
readonly
|
|
1141
|
-
|
|
1190
|
+
readonly stateService: DataViewStateService;
|
|
1191
|
+
set filters(value: Filter$1[]);
|
|
1192
|
+
set columns(value: DataTableColumn[]);
|
|
1142
1193
|
readonly displayMode: _angular_core.InputSignal<FilterViewDisplayMode>;
|
|
1143
1194
|
readonly selectDisplayedChips: _angular_core.InputSignal<(filters: Filter$1[], columns: DataTableColumn[]) => Filter$1[]>;
|
|
1144
1195
|
readonly chipStyleClass: _angular_core.InputSignal<string>;
|
|
@@ -1183,7 +1234,7 @@ declare class FilterViewComponent {
|
|
|
1183
1234
|
getRowObjectFromFiterData(filter: Filter$1): Record<string, unknown>;
|
|
1184
1235
|
getRowForValueColumn(row: Row): Row;
|
|
1185
1236
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilterViewComponent, never>;
|
|
1186
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FilterViewComponent, "ocx-filter-view", never, { "filters": { "alias": "filters"; "required": false;
|
|
1237
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FilterViewComponent, "ocx-filter-view", never, { "filters": { "alias": "filters"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "displayMode": { "alias": "displayMode"; "required": false; "isSignal": true; }; "selectDisplayedChips": { "alias": "selectDisplayedChips"; "required": false; "isSignal": true; }; "chipStyleClass": { "alias": "chipStyleClass"; "required": false; "isSignal": true; }; "tableStyle": { "alias": "tableStyle"; "required": false; "isSignal": true; }; "panelStyle": { "alias": "panelStyle"; "required": false; "isSignal": true; }; "templates": { "alias": "templates"; "required": false; "isSignal": true; }; }, { "filtered": "filtered"; "componentStateChanged": "componentStateChanged"; }, never, never, false, never>;
|
|
1187
1238
|
}
|
|
1188
1239
|
|
|
1189
1240
|
type DiagramColumn = {
|
|
@@ -1231,7 +1282,6 @@ declare class GroupByCountDiagramComponent {
|
|
|
1231
1282
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GroupByCountDiagramComponent, "ocx-group-by-count-diagram", never, { "sumKey": { "alias": "sumKey"; "required": false; "isSignal": true; }; "diagramType": { "alias": "diagramType"; "required": false; "isSignal": true; }; "chartTitleKey": { "alias": "chartTitleKey"; "required": false; "isSignal": true; }; "chartDescriptionKey": { "alias": "chartDescriptionKey"; "required": false; "isSignal": true; }; "fillMissingColors": { "alias": "fillMissingColors"; "required": false; "isSignal": true; }; "supportedDiagramTypes": { "alias": "supportedDiagramTypes"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "allLabelKeys": { "alias": "allLabelKeys"; "required": false; "isSignal": true; }; "showAllLabels": { "alias": "showAllLabels"; "required": false; "isSignal": true; }; "columnType": { "alias": "columnType"; "required": false; "isSignal": true; }; "columnField": { "alias": "columnField"; "required": false; "isSignal": true; }; "column": { "alias": "column"; "required": false; "isSignal": true; }; "fullHeight": { "alias": "fullHeight"; "required": false; "isSignal": true; }; "colors": { "alias": "colors"; "required": false; "isSignal": true; }; }, { "diagramType": "diagramTypeChange"; "data": "dataChange"; "columnType": "columnTypeChange"; "columnField": "columnFieldChange"; "colors": "colorsChange"; "dataSelected": "dataSelected"; "diagramTypeChanged": "diagramTypeChanged"; "componentStateChanged": "componentStateChanged"; }, never, never, false, never>;
|
|
1232
1283
|
}
|
|
1233
1284
|
|
|
1234
|
-
type ViewLayout = 'grid' | 'list' | 'table';
|
|
1235
1285
|
type InteractiveDataViewComponentState = ColumnGroupSelectionComponentState & CustomGroupColumnSelectorComponentState & DataLayoutSelectionComponentState & DataListGridSortingComponentState & DataViewComponentState & FilterViewComponentState;
|
|
1236
1286
|
interface ColumnGroupData {
|
|
1237
1287
|
activeColumns: DataTableColumn[];
|
|
@@ -1240,13 +1290,8 @@ interface ColumnGroupData {
|
|
|
1240
1290
|
declare class InteractiveDataViewComponent implements OnInit {
|
|
1241
1291
|
private readonly slotService;
|
|
1242
1292
|
private readonly destroyRef;
|
|
1293
|
+
readonly stateService: DataViewStateService;
|
|
1243
1294
|
dataViewComponent: Signal<DataViewComponent | undefined>;
|
|
1244
|
-
columnGroupSelectionComponentState$: ReplaySubject<ColumnGroupSelectionComponentState>;
|
|
1245
|
-
customGroupColumnSelectorComponentState$: ReplaySubject<CustomGroupColumnSelectorComponentState>;
|
|
1246
|
-
dataLayoutComponentState$: ReplaySubject<DataLayoutSelectionComponentState>;
|
|
1247
|
-
dataListGridSortingComponentState$: ReplaySubject<DataListGridSortingComponentState>;
|
|
1248
|
-
dataViewComponentState$: ReplaySubject<DataViewComponentState>;
|
|
1249
|
-
filterViewComponentState$: ReplaySubject<FilterViewComponentState>;
|
|
1250
1295
|
searchConfigPermission: _angular_core.InputSignal<PermissionInput>;
|
|
1251
1296
|
deletePermission: _angular_core.InputSignal<PermissionInput>;
|
|
1252
1297
|
editPermission: _angular_core.InputSignal<PermissionInput>;
|
|
@@ -1263,28 +1308,28 @@ declare class InteractiveDataViewComponent implements OnInit {
|
|
|
1263
1308
|
titleLineId: _angular_core.InputSignal<string | undefined>;
|
|
1264
1309
|
subtitleLineIds: _angular_core.InputSignal<string[] | undefined>;
|
|
1265
1310
|
supportedViewLayouts: _angular_core.InputSignal<ViewLayout[]>;
|
|
1266
|
-
columns:
|
|
1311
|
+
set columns(value: DataTableColumn[]);
|
|
1267
1312
|
emptyResultsMessage: _angular_core.InputSignal<string | undefined>;
|
|
1268
1313
|
clientSideSorting: _angular_core.InputSignal<boolean>;
|
|
1269
1314
|
clientSideFiltering: _angular_core.InputSignal<boolean>;
|
|
1270
1315
|
fallbackImage: _angular_core.InputSignal<string>;
|
|
1271
|
-
filters:
|
|
1272
|
-
|
|
1273
|
-
|
|
1316
|
+
set filters(value: Filter$1[]);
|
|
1317
|
+
set sortField(value: string);
|
|
1318
|
+
set sortDirection(value: DataSortDirection);
|
|
1274
1319
|
sortStates: _angular_core.InputSignal<DataSortDirection[]>;
|
|
1275
1320
|
pageSizes: _angular_core.InputSignal<number[]>;
|
|
1276
|
-
|
|
1321
|
+
set page(value: number);
|
|
1322
|
+
set pageSize(value: number);
|
|
1277
1323
|
totalRecordsOnServer: _angular_core.InputSignal<number | undefined>;
|
|
1278
|
-
layout:
|
|
1324
|
+
set layout(value: ViewLayout);
|
|
1279
1325
|
defaultGroupKey: _angular_core.InputSignal<string>;
|
|
1280
1326
|
customGroupKey: _angular_core.InputSignal<string>;
|
|
1281
1327
|
groupSelectionNoGroupSelectedKey: _angular_core.InputSignal<string>;
|
|
1282
1328
|
currentPageShowingKey: _angular_core.InputSignal<string>;
|
|
1283
1329
|
currentPageShowingWithTotalOnServerKey: _angular_core.InputSignal<string>;
|
|
1284
|
-
additionalActions:
|
|
1285
|
-
listGridPaginator:
|
|
1286
|
-
tablePaginator:
|
|
1287
|
-
get paginator(): boolean;
|
|
1330
|
+
set additionalActions(value: DataAction[]);
|
|
1331
|
+
set listGridPaginator(value: boolean);
|
|
1332
|
+
set tablePaginator(value: boolean);
|
|
1288
1333
|
set paginator(value: boolean);
|
|
1289
1334
|
disableFilterView: _angular_core.InputSignal<boolean>;
|
|
1290
1335
|
filterViewDisplayMode: _angular_core.InputSignal<FilterViewDisplayMode>;
|
|
@@ -1296,17 +1341,16 @@ declare class InteractiveDataViewComponent implements OnInit {
|
|
|
1296
1341
|
[klass: string]: any;
|
|
1297
1342
|
}>;
|
|
1298
1343
|
selectDisplayedChips: _angular_core.InputSignal<(filters: Filter$1[], columns: DataTableColumn[]) => Filter$1[]>;
|
|
1299
|
-
|
|
1300
|
-
selectedRows: _angular_core.InputSignal<Row[]>;
|
|
1344
|
+
set selectedRows(value: Row[]);
|
|
1301
1345
|
displayedColumnKeys: _angular_core.ModelSignal<string[]>;
|
|
1302
1346
|
displayedColumns: Signal<DataTableColumn[]>;
|
|
1303
|
-
frozenActionColumn:
|
|
1304
|
-
actionColumnPosition:
|
|
1347
|
+
set frozenActionColumn(value: boolean);
|
|
1348
|
+
set actionColumnPosition(value: 'left' | 'right');
|
|
1305
1349
|
headerStyleClass: _angular_core.InputSignal<string | undefined>;
|
|
1306
1350
|
contentStyleClass: _angular_core.InputSignal<string | undefined>;
|
|
1307
1351
|
expandable: _angular_core.InputSignal<boolean>;
|
|
1308
1352
|
frozenExpandColumn: _angular_core.InputSignal<boolean>;
|
|
1309
|
-
expandedRows:
|
|
1353
|
+
set expandedRows(value: InteractiveExpandedRows);
|
|
1310
1354
|
childTableCell: Signal<TemplateRef<any> | undefined>;
|
|
1311
1355
|
primeNgTableCell: Signal<TemplateRef<any> | undefined>;
|
|
1312
1356
|
_tableCell: Signal<TemplateRef<any> | undefined>;
|
|
@@ -1379,9 +1423,9 @@ declare class InteractiveDataViewComponent implements OnInit {
|
|
|
1379
1423
|
templates: Signal<readonly PrimeTemplate[]>;
|
|
1380
1424
|
filtered: _angular_core.OutputEmitterRef<Filter$1[]>;
|
|
1381
1425
|
sorted: _angular_core.OutputEmitterRef<Sort>;
|
|
1382
|
-
deleteItem: _onecx_angular_accelerator.ObservableOutputEmitterRef<RowListGridData>;
|
|
1383
|
-
viewItem: _onecx_angular_accelerator.ObservableOutputEmitterRef<RowListGridData>;
|
|
1384
|
-
editItem: _onecx_angular_accelerator.ObservableOutputEmitterRef<RowListGridData>;
|
|
1426
|
+
deleteItem: _onecx_angular_accelerator.ObservableOutputEmitterRef<RowListGridData$1>;
|
|
1427
|
+
viewItem: _onecx_angular_accelerator.ObservableOutputEmitterRef<RowListGridData$1>;
|
|
1428
|
+
editItem: _onecx_angular_accelerator.ObservableOutputEmitterRef<RowListGridData$1>;
|
|
1385
1429
|
selectionChanged: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row[]>;
|
|
1386
1430
|
dataViewLayoutChange: _angular_core.OutputEmitterRef<"table" | "grid" | "list">;
|
|
1387
1431
|
displayedColumnKeysChange: _angular_core.OutputEmitterRef<string[]>;
|
|
@@ -1390,8 +1434,8 @@ declare class InteractiveDataViewComponent implements OnInit {
|
|
|
1390
1434
|
rowExpanded: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row>;
|
|
1391
1435
|
rowCollapsed: _onecx_angular_accelerator.ObservableOutputEmitterRef<Row>;
|
|
1392
1436
|
componentStateChanged: _angular_core.OutputEmitterRef<InteractiveDataViewComponentState>;
|
|
1393
|
-
selectedGroupKey:
|
|
1394
|
-
data:
|
|
1437
|
+
set selectedGroupKey(value: string | undefined);
|
|
1438
|
+
set data(value: RowListGridData$1[]);
|
|
1395
1439
|
readonly columnGroupSlotName = "onecx-column-group-selection";
|
|
1396
1440
|
isColumnGroupSelectionComponentDefined$: Observable<boolean>;
|
|
1397
1441
|
isColumnGroupSelectionComponentDefined: Signal<boolean | undefined>;
|
|
@@ -1409,9 +1453,9 @@ declare class InteractiveDataViewComponent implements OnInit {
|
|
|
1409
1453
|
ngOnInit(): void;
|
|
1410
1454
|
filtering(event: any): void;
|
|
1411
1455
|
sorting(event: any): void;
|
|
1412
|
-
onDeleteElement(element: RowListGridData): void;
|
|
1413
|
-
onViewElement(element: RowListGridData): void;
|
|
1414
|
-
onEditElement(element: RowListGridData): void;
|
|
1456
|
+
onDeleteElement(element: RowListGridData$1): void;
|
|
1457
|
+
onViewElement(element: RowListGridData$1): void;
|
|
1458
|
+
onEditElement(element: RowListGridData$1): void;
|
|
1415
1459
|
onDataViewLayoutChange(layout: ViewLayout): void;
|
|
1416
1460
|
onSortChange($event: any): void;
|
|
1417
1461
|
onSortDirectionChange($event: any): void;
|
|
@@ -1423,7 +1467,7 @@ declare class InteractiveDataViewComponent implements OnInit {
|
|
|
1423
1467
|
onPageChange(event: number): void;
|
|
1424
1468
|
onPageSizeChange(event: number): void;
|
|
1425
1469
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InteractiveDataViewComponent, never>;
|
|
1426
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InteractiveDataViewComponent, "ocx-interactive-data-view", never, { "searchConfigPermission": { "alias": "searchConfigPermission"; "required": false; "isSignal": true; }; "deletePermission": { "alias": "deletePermission"; "required": false; "isSignal": true; }; "editPermission": { "alias": "editPermission"; "required": false; "isSignal": true; }; "viewPermission": { "alias": "viewPermission"; "required": false; "isSignal": true; }; "deleteActionVisibleField": { "alias": "deleteActionVisibleField"; "required": false; "isSignal": true; }; "deleteActionEnabledField": { "alias": "deleteActionEnabledField"; "required": false; "isSignal": true; }; "viewActionVisibleField": { "alias": "viewActionVisibleField"; "required": false; "isSignal": true; }; "viewActionEnabledField": { "alias": "viewActionEnabledField"; "required": false; "isSignal": true; }; "editActionVisibleField": { "alias": "editActionVisibleField"; "required": false; "isSignal": true; }; "editActionEnabledField": { "alias": "editActionEnabledField"; "required": false; "isSignal": true; }; "tableSelectionEnabledField": { "alias": "tableSelectionEnabledField"; "required": false; "isSignal": true; }; "tableAllowSelectAll": { "alias": "tableAllowSelectAll"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "titleLineId": { "alias": "titleLineId"; "required": false; "isSignal": true; }; "subtitleLineIds": { "alias": "subtitleLineIds"; "required": false; "isSignal": true; }; "supportedViewLayouts": { "alias": "supportedViewLayouts"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false;
|
|
1470
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InteractiveDataViewComponent, "ocx-interactive-data-view", never, { "searchConfigPermission": { "alias": "searchConfigPermission"; "required": false; "isSignal": true; }; "deletePermission": { "alias": "deletePermission"; "required": false; "isSignal": true; }; "editPermission": { "alias": "editPermission"; "required": false; "isSignal": true; }; "viewPermission": { "alias": "viewPermission"; "required": false; "isSignal": true; }; "deleteActionVisibleField": { "alias": "deleteActionVisibleField"; "required": false; "isSignal": true; }; "deleteActionEnabledField": { "alias": "deleteActionEnabledField"; "required": false; "isSignal": true; }; "viewActionVisibleField": { "alias": "viewActionVisibleField"; "required": false; "isSignal": true; }; "viewActionEnabledField": { "alias": "viewActionEnabledField"; "required": false; "isSignal": true; }; "editActionVisibleField": { "alias": "editActionVisibleField"; "required": false; "isSignal": true; }; "editActionEnabledField": { "alias": "editActionEnabledField"; "required": false; "isSignal": true; }; "tableSelectionEnabledField": { "alias": "tableSelectionEnabledField"; "required": false; "isSignal": true; }; "tableAllowSelectAll": { "alias": "tableAllowSelectAll"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "titleLineId": { "alias": "titleLineId"; "required": false; "isSignal": true; }; "subtitleLineIds": { "alias": "subtitleLineIds"; "required": false; "isSignal": true; }; "supportedViewLayouts": { "alias": "supportedViewLayouts"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; }; "emptyResultsMessage": { "alias": "emptyResultsMessage"; "required": false; "isSignal": true; }; "clientSideSorting": { "alias": "clientSideSorting"; "required": false; "isSignal": true; }; "clientSideFiltering": { "alias": "clientSideFiltering"; "required": false; "isSignal": true; }; "fallbackImage": { "alias": "fallbackImage"; "required": false; "isSignal": true; }; "filters": { "alias": "filters"; "required": false; }; "sortField": { "alias": "sortField"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "sortStates": { "alias": "sortStates"; "required": false; "isSignal": true; }; "pageSizes": { "alias": "pageSizes"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "totalRecordsOnServer": { "alias": "totalRecordsOnServer"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; }; "defaultGroupKey": { "alias": "defaultGroupKey"; "required": false; "isSignal": true; }; "customGroupKey": { "alias": "customGroupKey"; "required": false; "isSignal": true; }; "groupSelectionNoGroupSelectedKey": { "alias": "groupSelectionNoGroupSelectedKey"; "required": false; "isSignal": true; }; "currentPageShowingKey": { "alias": "currentPageShowingKey"; "required": false; "isSignal": true; }; "currentPageShowingWithTotalOnServerKey": { "alias": "currentPageShowingWithTotalOnServerKey"; "required": false; "isSignal": true; }; "additionalActions": { "alias": "additionalActions"; "required": false; }; "listGridPaginator": { "alias": "listGridPaginator"; "required": false; }; "tablePaginator": { "alias": "tablePaginator"; "required": false; }; "paginator": { "alias": "paginator"; "required": false; }; "disableFilterView": { "alias": "disableFilterView"; "required": false; "isSignal": true; }; "filterViewDisplayMode": { "alias": "filterViewDisplayMode"; "required": false; "isSignal": true; }; "filterViewChipStyleClass": { "alias": "filterViewChipStyleClass"; "required": false; "isSignal": true; }; "filterViewTableStyle": { "alias": "filterViewTableStyle"; "required": false; "isSignal": true; }; "filterViewPanelStyle": { "alias": "filterViewPanelStyle"; "required": false; "isSignal": true; }; "selectDisplayedChips": { "alias": "selectDisplayedChips"; "required": false; "isSignal": true; }; "selectedRows": { "alias": "selectedRows"; "required": false; }; "displayedColumnKeys": { "alias": "displayedColumnKeys"; "required": false; "isSignal": true; }; "frozenActionColumn": { "alias": "frozenActionColumn"; "required": false; }; "actionColumnPosition": { "alias": "actionColumnPosition"; "required": false; }; "headerStyleClass": { "alias": "headerStyleClass"; "required": false; "isSignal": true; }; "contentStyleClass": { "alias": "contentStyleClass"; "required": false; "isSignal": true; }; "expandable": { "alias": "expandable"; "required": false; "isSignal": true; }; "frozenExpandColumn": { "alias": "frozenExpandColumn"; "required": false; "isSignal": true; }; "expandedRows": { "alias": "expandedRows"; "required": false; }; "selectedGroupKey": { "alias": "selectedGroupKey"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "displayedColumnKeys": "displayedColumnKeysChange"; "filtered": "filtered"; "sorted": "sorted"; "deleteItem": "deleteItem"; "viewItem": "viewItem"; "editItem": "editItem"; "selectionChanged": "selectionChanged"; "dataViewLayoutChange": "dataViewLayoutChange"; "displayedColumnKeysChange": "displayedColumnKeysChange"; "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "rowExpanded": "rowExpanded"; "rowCollapsed": "rowCollapsed"; "componentStateChanged": "componentStateChanged"; "groupSelectionChangedSlotEmitter": "groupSelectionChangedSlotEmitter"; }, ["childTableCell", "childDateTableCell", "childRelativeDateTableCell", "childTranslationKeyTableCell", "childGridItemSubtitleLines", "childListItemSubtitleLines", "childStringTableCell", "childNumberTableCell", "childGridItem", "childListItem", "childTopCenter", "childListValue", "childTranslationKeyListValue", "childNumberListValue", "childRelativeDateListValue", "childStringListValue", "childDateListValue", "childTableFilterCell", "childDateTableFilterCell", "childRelativeDateTableFilterCell", "childTranslationKeyTableFilterCell", "childStringTableFilterCell", "childNumberTableFilterCell", "templates"], never, false, never>;
|
|
1427
1471
|
}
|
|
1428
1472
|
|
|
1429
1473
|
interface LifecycleStep {
|
|
@@ -1756,7 +1800,7 @@ declare class SearchHeaderComponent {
|
|
|
1756
1800
|
visibleFormControls: Signal<readonly FormControlName[]>;
|
|
1757
1801
|
searchParameterFields: Signal<ElementRef<any> | undefined>;
|
|
1758
1802
|
hasAdvanced: _angular_core.WritableSignal<boolean>;
|
|
1759
|
-
simpleAdvancedAction:
|
|
1803
|
+
simpleAdvancedAction: Action;
|
|
1760
1804
|
headerActions: _angular_core.WritableSignal<Action[]>;
|
|
1761
1805
|
searchButtonsReversed$: Observable<boolean | null>;
|
|
1762
1806
|
fieldValues$: Observable<{
|
|
@@ -2393,7 +2437,7 @@ declare class RelativeDatePipe implements PipeTransform {
|
|
|
2393
2437
|
|
|
2394
2438
|
declare class AngularAcceleratorPrimeNgModule {
|
|
2395
2439
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AngularAcceleratorPrimeNgModule, never>;
|
|
2396
|
-
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<AngularAcceleratorPrimeNgModule, never, [typeof i1.BreadcrumbModule, typeof i2.ChipModule, typeof i3.CheckboxModule, typeof i4.SelectModule, typeof i5.ButtonModule, typeof i6.DialogModule, typeof i7.PickListModule, typeof i8.SelectButtonModule, typeof i9.DataViewModule, typeof i10.TableModule, typeof i11.MenuModule, typeof i12.ChartModule, typeof i13.MultiSelectModule, typeof i14.SkeletonModule, typeof i15.MessageModule, typeof i16.FloatLabelModule, typeof i17.PopoverModule, typeof i18.FocusTrapModule, typeof i19.TooltipModule, typeof i20.TimelineModule, typeof i21.RippleModule, typeof
|
|
2440
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<AngularAcceleratorPrimeNgModule, never, [typeof i1.BreadcrumbModule, typeof i2.ChipModule, typeof i3.CheckboxModule, typeof i4.SelectModule, typeof i5.ButtonModule, typeof i6.DialogModule, typeof i7.PickListModule, typeof i8.SelectButtonModule, typeof i9.DataViewModule, typeof i10.TableModule, typeof i11.MenuModule, typeof i12.ChartModule, typeof i13.MultiSelectModule, typeof i14.SkeletonModule, typeof i15.MessageModule, typeof i16.FloatLabelModule, typeof i17.PopoverModule, typeof i18.FocusTrapModule, typeof i19.TooltipModule, typeof i20.TimelineModule, typeof i21.RippleModule, typeof i22.SharedModule], [typeof i1.BreadcrumbModule, typeof i2.ChipModule, typeof i3.CheckboxModule, typeof i4.SelectModule, typeof i5.ButtonModule, typeof i6.DialogModule, typeof i7.PickListModule, typeof i8.SelectButtonModule, typeof i9.DataViewModule, typeof i10.TableModule, typeof i11.MenuModule, typeof i12.ChartModule, typeof i13.MultiSelectModule, typeof i14.SkeletonModule, typeof i15.MessageModule, typeof i16.FloatLabelModule, typeof i17.PopoverModule, typeof i18.FocusTrapModule, typeof i19.TooltipModule, typeof i20.TimelineModule, typeof i21.RippleModule, typeof i22.SharedModule]>;
|
|
2397
2441
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<AngularAcceleratorPrimeNgModule>;
|
|
2398
2442
|
}
|
|
2399
2443
|
|
|
@@ -2512,5 +2556,5 @@ declare function handleAction(router: Router, action: Action | DataAction, data?
|
|
|
2512
2556
|
*/
|
|
2513
2557
|
declare function handleActionSync(router: Router, action: Action | DataAction, data?: any): void;
|
|
2514
2558
|
|
|
2515
|
-
export { AdvancedDirective, AngularAcceleratorMissingTranslationHandler, AngularAcceleratorModule, AngularAcceleratorPrimeNgModule, BasicDirective, BreadcrumbService, ColorUtils, ColumnGroupSelectionComponent, ColumnType, ConsentComponent, CustomGroupColumnSelectorComponent, DataLayoutSelectionComponent, DataListGridComponent, DataListGridSortingComponent, DataOperationStrategy, DataSortDirection, DataTableComponent, DataViewComponent, DateUtils, DiagramComponent, DiagramType, DialogContentComponent, DialogFooterComponent, DialogInlineComponent, DialogMessageContentComponent, DynamicPipe, ExportDataService, FilterType, FilterViewComponent, GlobalErrorComponent, GroupByCountDiagramComponent, IfBreakpointDirective, IfPermissionDirective, ImageLogoUrlUtils, InteractiveDataViewComponent, LifecycleComponent, LoadingIndicatorComponent, LoadingIndicatorDirective, ObjectUtils, ObservableOutputEmitterRef, OcxContentComponent, OcxContentContainerComponent, OcxContentContainerDirective, OcxContentDirective, OcxTimeAgoPipe, OcxTooltipDirective, PageHeaderComponent, PortalDialogService, RelativeDatePipe, SearchHeaderComponent, SrcDirective, TemplateDirective, TemplateType, TooltipOnOverflowDirective, atLeastOneFieldFilledValidator, buildSearchCriteria, defaultDialogData, defaultPrimaryButtonDetails, defaultSecondaryButtonDetails, enumToDropdownOptions, findEntryWithKeyword, findTemplate, flattenObject, handleAction, handleActionSync, limit, observableOutput, providePortalDialogService, removeKeyword, resolveRouterLink, searchPrefixWithSpecialChars };
|
|
2516
|
-
export type { Action, ActionColumnChangedEvent, BreadCrumbMenuItem, BuildSearchCriteriaParameters, ButtonDialogButtonDetails, ButtonDialogConfig, ButtonDialogCustomButtonDetails, ButtonDialogData, ChartType, ColumnFilterDataSelectOptions, ColumnGroupData, ColumnGroupSelectionComponentState, ColumnSelectionChangedEvent, ConsentChangedEvent, CustomGroupColumnSelectorComponentState, DataAction, DataLayoutSelectionComponentState, DataListGridComponentState, DataListGridSortingComponentState, DataTableColumn, DataTableComponentState, DataViewComponentState, DiagramColumn, DiagramComponentState, DiagramLayouts, DialogButton, DialogButtonClicked, DialogCustomButtonsDisabled, DialogPrimaryButtonDisabled, DialogResult, DialogSecondaryButtonDisabled, DialogState, DialogStateButtonClicked, Filter$1 as Filter, FilterObject, FilterViewComponentState, FilterViewDisplayMode, FilterViewRowDetailData, FilterViewRowDisplayData, GridColumnOptions, GroupByCountDiagramComponentState, GroupSelectionChangedEvent, HomeItem, InteractiveDataViewComponentState, LifecycleStep, ListGridData, ListGridDataMenuItem, ListGridSort, ObjectDetailItem, OnMissingPermission, PermissionInput, PortalDialogConfig, PortalDialogServiceData, PrimeIcon, Primitive, Result, RouterLink, Row,
|
|
2559
|
+
export { AdvancedDirective, AngularAcceleratorMissingTranslationHandler, AngularAcceleratorModule, AngularAcceleratorPrimeNgModule, BasicDirective, BreadcrumbService, ColorUtils, ColumnGroupSelectionComponent, ColumnType, ConsentComponent, CustomGroupColumnSelectorComponent, DataLayoutSelectionComponent, DataListGridComponent, DataListGridSortingComponent, DataOperationStrategy, DataSortDirection, DataTableComponent, DataViewComponent, DataViewStateService, DateUtils, DiagramComponent, DiagramType, DialogContentComponent, DialogFooterComponent, DialogInlineComponent, DialogMessageContentComponent, DynamicPipe, ExportDataService, FilterType, FilterViewComponent, GlobalErrorComponent, GroupByCountDiagramComponent, IfBreakpointDirective, IfPermissionDirective, ImageLogoUrlUtils, InteractiveDataViewComponent, LifecycleComponent, LoadingIndicatorComponent, LoadingIndicatorDirective, ObjectUtils, ObservableOutputEmitterRef, OcxContentComponent, OcxContentContainerComponent, OcxContentContainerDirective, OcxContentDirective, OcxTimeAgoPipe, OcxTooltipDirective, PageHeaderComponent, PortalDialogService, RelativeDatePipe, SearchHeaderComponent, SrcDirective, TemplateDirective, TemplateType, TooltipOnOverflowDirective, atLeastOneFieldFilledValidator, buildSearchCriteria, defaultDialogData, defaultPrimaryButtonDetails, defaultSecondaryButtonDetails, enumToDropdownOptions, findEntryWithKeyword, findTemplate, flattenObject, handleAction, handleActionSync, limit, observableOutput, providePortalDialogService, removeKeyword, resolveRouterLink, searchPrefixWithSpecialChars };
|
|
2560
|
+
export type { Action, ActionColumnChangedEvent, BreadCrumbMenuItem, BuildSearchCriteriaParameters, ButtonDialogButtonDetails, ButtonDialogConfig, ButtonDialogCustomButtonDetails, ButtonDialogData, ChartType, ColumnFilterDataSelectOptions, ColumnGroupData, ColumnGroupSelectionComponentState, ColumnSelectionChangedEvent, ConsentChangedEvent, CustomGroupColumnSelectorComponentState, DataAction, DataLayoutSelectionComponentState, DataListGridComponentState, DataListGridSortingComponentState, DataTableColumn, DataTableComponentState, DataViewComponentState, DiagramColumn, DiagramComponentState, DiagramLayouts, DialogButton, DialogButtonClicked, DialogCustomButtonsDisabled, DialogPrimaryButtonDisabled, DialogResult, DialogSecondaryButtonDisabled, DialogState, DialogStateButtonClicked, Filter$1 as Filter, FilterObject, FilterViewComponentState, FilterViewDisplayMode, FilterViewRowDetailData, FilterViewRowDisplayData, GridColumnOptions, GroupByCountDiagramComponentState, GroupSelectionChangedEvent, HomeItem, InteractiveDataView, InteractiveDataViewComponentState, InteractiveExpandedRows, LifecycleStep, ListGridData, ListGridDataMenuItem, ListGridSort, ObjectDetailItem, OnMissingPermission, PermissionInput, PortalDialogConfig, PortalDialogServiceData, PrimeIcon, Primitive, Result, RouterLink, Row, SearchConfigData, SearchHeaderComponentState, Sort, TranslationKey, TranslationKeyWithParameters, ViewLayout, hasShowTimeFunction };
|