@mediusinc/mng-commons 7.0.0-rc.0 → 7.0.0-rc.2
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/core/index.d.ts +31 -11
- package/fesm2022/mediusinc-mng-commons-core.mjs +109 -77
- package/fesm2022/mediusinc-mng-commons-core.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-filter.mjs +36 -0
- package/fesm2022/mediusinc-mng-commons-filter.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-form-api.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-form.mjs +475 -35
- package/fesm2022/mediusinc-mng-commons-form.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-model-class.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-model.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-table-api-class.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-table-api.mjs +0 -2
- package/fesm2022/mediusinc-mng-commons-table-api.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-table-column-toggle.component-BQ99oqWO.mjs +30 -0
- package/fesm2022/mediusinc-mng-commons-table-column-toggle.component-BQ99oqWO.mjs.map +1 -0
- package/fesm2022/mediusinc-mng-commons-table-mediusinc-mng-commons-table-BLuM5Kpu.mjs +2700 -0
- package/fesm2022/mediusinc-mng-commons-table-mediusinc-mng-commons-table-BLuM5Kpu.mjs.map +1 -0
- package/fesm2022/mediusinc-mng-commons-table.mjs +1 -1
- package/fesm2022/mediusinc-mng-commons-tableview-api-class.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-tableview-api.mjs +47 -6
- package/fesm2022/mediusinc-mng-commons-tableview-api.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-tableview.mjs +189 -161
- package/fesm2022/mediusinc-mng-commons-tableview.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons.mjs.map +1 -1
- package/filter/index.d.ts +29 -3
- package/form/index.d.ts +143 -14
- package/i18n/en.json +17 -3
- package/i18n/sl.json +17 -3
- package/package.json +24 -24
- package/table/api/index.d.ts +4 -4
- package/table/index.d.ts +248 -145
- package/tableview/api/index.d.ts +18 -5
- package/tableview/index.d.ts +31 -34
- package/version-info.json +6 -6
- package/fesm2022/mediusinc-mng-commons-table-column-toggle.component-Dvenjj9n.mjs +0 -30
- package/fesm2022/mediusinc-mng-commons-table-column-toggle.component-Dvenjj9n.mjs.map +0 -1
- package/fesm2022/mediusinc-mng-commons-table-mediusinc-mng-commons-table-DFcdSUCN.mjs +0 -2142
- package/fesm2022/mediusinc-mng-commons-table-mediusinc-mng-commons-table-DFcdSUCN.mjs.map +0 -1
package/tableview/api/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { InputSignal, OutputEmitterRef, Type, InputSignalWithTransform, WritableSignal, Injector, InjectionToken } from '@angular/core';
|
|
3
3
|
import * as _mediusinc_mng_commons_core from '@mediusinc/mng-commons/core';
|
|
4
|
-
import { IdType, ActionData, ActionParameters, GetterFn, StyleLevelEnum, ServiceClassType, ILookupDataProvider, ILookupDescriptor, LookupDataProviderLookupFnType, EnumValue, EnumConstantType, ItemOrObservable, ArrayItemType, ITableviewDescriptor, ITableDescriptor, CommonPropsObjType3, IEditorDescriptor, IDataProvider, Nullable, IActionDescriptor, APermissions, ClassType, ServiceClassOptType, Undefined, DataProviderInst, StyleSizeEnum, DataListResult, CommonsErrorBaseOptions, ACommonsErrorBase, ICommonsActionError, ClassFunctionKeysWithParamAndReturnType, ClassFunctionKeyParam1ObjKeyExtendsOfTargetType, CommonsRouteData } from '@mediusinc/mng-commons/core';
|
|
4
|
+
import { IdType, ActionData, ActionParameters, GetterFn, PrimeMessageSeverityType, StyleLevelEnum, ServiceClassType, ILookupDataProvider, ILookupDescriptor, LookupDataProviderLookupFnType, EnumValue, EnumConstantType, ItemOrObservable, ArrayItemType, ITableviewDescriptor, ITableDescriptor, CommonPropsObjType3, IEditorDescriptor, IDataProvider, Nullable, IActionDescriptor, APermissions, ClassType, ServiceClassOptType, Undefined, DataProviderInst, StyleSizeEnum, DataListResult, CommonsErrorBaseOptions, ACommonsErrorBase, ICommonsActionError, ClassFunctionKeysWithParamAndReturnType, ClassFunctionKeyParam1ObjKeyExtendsOfTargetType, CommonsRouteData } from '@mediusinc/mng-commons/core';
|
|
5
5
|
import { IActionButtonDescriptor, InputTrimType, EmptyValueType } from '@mediusinc/mng-commons/form/api';
|
|
6
6
|
import { EnumDescriptor, TypeDescriptor, ModelDescriptor, ModelDescriptorCreateOpts } from '@mediusinc/mng-commons/model';
|
|
7
7
|
import { ToastMessageOptions, Confirmation } from 'primeng/api';
|
|
@@ -169,7 +169,7 @@ declare enum FieldGroupTypeEnum {
|
|
|
169
169
|
type FieldConfig = object;
|
|
170
170
|
interface FieldLookupConfig extends FieldConfig {
|
|
171
171
|
table?: {
|
|
172
|
-
|
|
172
|
+
headerTitleComponent?: Type<any>;
|
|
173
173
|
columnActionComponent?: Type<any>;
|
|
174
174
|
};
|
|
175
175
|
}
|
|
@@ -450,7 +450,7 @@ interface FieldActionResult {
|
|
|
450
450
|
}
|
|
451
451
|
interface FieldActionResultMessage {
|
|
452
452
|
content: string;
|
|
453
|
-
severity?:
|
|
453
|
+
severity?: PrimeMessageSeverityType;
|
|
454
454
|
}
|
|
455
455
|
|
|
456
456
|
type FieldActionRunFnType<EditorModel, ParentEditorModel = undefined> = (ctx: FieldActionContext<EditorModel, ParentEditorModel>) => void | FieldActionResult | Observable<FieldActionResult>;
|
|
@@ -659,6 +659,10 @@ type FieldInputDatePickerDisplayOptsType = {
|
|
|
659
659
|
format?: string;
|
|
660
660
|
showTime?: boolean;
|
|
661
661
|
showSeconds?: boolean;
|
|
662
|
+
showMilliseconds?: boolean;
|
|
663
|
+
primeTimePicker?: boolean;
|
|
664
|
+
timeSelectInterval?: number;
|
|
665
|
+
timeSelect?: boolean;
|
|
662
666
|
};
|
|
663
667
|
type FieldInputDateValidationOptsType<FieldValue, EditorModel, ParentEditorModel> = {
|
|
664
668
|
min?: Date | FieldInputDatePickerDynamicMinMaxFnType<FieldValue, EditorModel, ParentEditorModel>;
|
|
@@ -742,6 +746,10 @@ declare class FieldInputDescriptor<EditorModel, FieldModel = FieldInputDescripto
|
|
|
742
746
|
private _datePickerMax?;
|
|
743
747
|
private _datePickerShowTime?;
|
|
744
748
|
private _datePickerShowSeconds?;
|
|
749
|
+
private _datePickerShowMilliseconds?;
|
|
750
|
+
private _datePickerPrimeTimePicker?;
|
|
751
|
+
private _datePickerTimeSelectInterval?;
|
|
752
|
+
private _datePickerTimeSelect?;
|
|
745
753
|
private _datePickerValueUtc?;
|
|
746
754
|
private _datePickerValueNoTimezone?;
|
|
747
755
|
private _datePickerValueNoTime?;
|
|
@@ -790,6 +798,10 @@ declare class FieldInputDescriptor<EditorModel, FieldModel = FieldInputDescripto
|
|
|
790
798
|
get datePickerMax(): Date | FieldInputDatePickerDynamicMinMaxFnType<FieldValue, EditorModel, ParentEditorModel> | undefined;
|
|
791
799
|
get datePickerShowTime(): boolean | undefined;
|
|
792
800
|
get datePickerShowSeconds(): boolean | undefined;
|
|
801
|
+
get datePickerShowMilliseconds(): boolean | undefined;
|
|
802
|
+
get datePickerPrimeTimePicker(): boolean | undefined;
|
|
803
|
+
get datePickerTimeSelect(): boolean | undefined;
|
|
804
|
+
get datePickerTimeSelectInterval(): number | undefined;
|
|
793
805
|
get datePickerValueUtc(): boolean | undefined;
|
|
794
806
|
get datePickerValueNoTimezone(): boolean | undefined;
|
|
795
807
|
get datePickerValueNoTime(): boolean | undefined;
|
|
@@ -1380,8 +1392,6 @@ declare class FormFieldEventComponentSubtype {
|
|
|
1380
1392
|
}
|
|
1381
1393
|
declare class FormFieldEventDialogSubtype {
|
|
1382
1394
|
static readonly VISIBILITY = "Dialog.Visibility";
|
|
1383
|
-
static readonly TABLE_CAPTION_COMPONENT_INSTANCE = "Dialog.MngTable.CaptionComponentInstance";
|
|
1384
|
-
static readonly TABLE_COLUMN_ACTIONS_COMPONENT_INSTANCE = "Dialog.MngTable.ColumnActionsComponentInstance";
|
|
1385
1395
|
}
|
|
1386
1396
|
interface FormFieldEventData<FieldModel, EditorModel> {
|
|
1387
1397
|
eventSubtype?: string;
|
|
@@ -1782,6 +1792,7 @@ declare class ActionEditorDescriptorInst<Item, Service = any, EditorItem = Item,
|
|
|
1782
1792
|
protected _fetchNotificationOnError?: ActionNotificationType | boolean;
|
|
1783
1793
|
protected _dialogSize: StyleSizeEnum;
|
|
1784
1794
|
protected _dialogClassName?: string;
|
|
1795
|
+
protected _dialogIsMaximizable?: boolean;
|
|
1785
1796
|
protected _fetchFunction?: ActionEditorRunFnType<Item, ParentEditorItem, Service, FetchInputItem, EditorItem>;
|
|
1786
1797
|
protected _submitFunction?: ActionEditorRunFnType<Item, ParentEditorItem, Service, EditorItem, SubmitReturnItem>;
|
|
1787
1798
|
protected _editorComponent?: Type<any>;
|
|
@@ -1794,6 +1805,7 @@ declare class ActionEditorDescriptorInst<Item, Service = any, EditorItem = Item,
|
|
|
1794
1805
|
get editorDescriptor(): EditorDescriptorInst<EditorItem, ParentEditorItem>;
|
|
1795
1806
|
get dialogSize(): StyleSizeEnum;
|
|
1796
1807
|
get dialogClassName(): string | undefined;
|
|
1808
|
+
get dialogIsMaximizable(): boolean | undefined;
|
|
1797
1809
|
get fetchNotificationOnSuccess(): boolean | ActionNotificationType | undefined;
|
|
1798
1810
|
get fetchNotificationOnError(): boolean | ActionNotificationType | undefined;
|
|
1799
1811
|
get dataProvider(): IEditorDataProvider<Item, any> | undefined;
|
|
@@ -1811,6 +1823,7 @@ declare class ActionEditorDescriptorInst<Item, Service = any, EditorItem = Item,
|
|
|
1811
1823
|
withEditorTitle(title: string | null, params?: any): this;
|
|
1812
1824
|
withDialogSize(size?: StyleSizeEnum): this;
|
|
1813
1825
|
withDialogClassName(className: string): this;
|
|
1826
|
+
withDialogMaximizable(isMaximizable?: boolean): this;
|
|
1814
1827
|
withRunFunction(fn: ActionEditorRunFnType<Item, ParentEditorItem, Service, EditorItem, SubmitReturnItem>): this;
|
|
1815
1828
|
withFetchFunction(fn: ActionEditorRunFnType<Item, ParentEditorItem, Service, FetchInputItem, EditorItem>): this;
|
|
1816
1829
|
withSubmitFunction(fn: ActionEditorRunFnType<Item, ParentEditorItem, Service, EditorItem, SubmitReturnItem>): this;
|
package/tableview/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as _angular_router from '@angular/router';
|
|
2
2
|
import { ActivatedRoute, CanDeactivateFn, Router, DefaultExport, Route } from '@angular/router';
|
|
3
3
|
import * as _angular_core from '@angular/core';
|
|
4
|
-
import { Injector, OnDestroy, InputSignal, InputSignalWithTransform, WritableSignal, Provider, OnInit, AfterViewInit, ElementRef, Type,
|
|
4
|
+
import { Injector, OnDestroy, InputSignal, InputSignalWithTransform, WritableSignal, Provider, OnInit, AfterViewInit, ElementRef, Type, InjectionToken, DestroyRef, ChangeDetectorRef } from '@angular/core';
|
|
5
5
|
import { Confirmation, ToastMessageOptions, MenuItem, MessageService, ConfirmationService } from 'primeng/api';
|
|
6
6
|
import { Menu } from 'primeng/menu';
|
|
7
7
|
import * as _mediusinc_mng_commons_core from '@mediusinc/mng-commons/core';
|
|
8
|
-
import { IDataProvider, ActionParameters, ICommonsError, IdType, ActionData, DataListParams, CommonsService, DataListResult,
|
|
8
|
+
import { IDataProvider, ActionParameters, ICommonsError, IdType, ActionData, DataListParams, CommonsService, DataListResult, I18nMissingTranslationStrategy, ParametrizePipe, LoggerService, Nullable, KeyofAndOfType, RouteBuilder, APermissions, CommonsFeature } from '@mediusinc/mng-commons/core';
|
|
9
9
|
import * as _mediusinc_mng_commons_tableview_api from '@mediusinc/mng-commons/tableview/api';
|
|
10
10
|
import { IViewContainer, ActionDescriptorInst, EditorResetEvent, ViewContainerEditorCloseEvent, IActionContext, IActionInstance, IActionEditorComponent, ActionInstanceStateEnum, ActionExecutionError, ActionLinkDescriptorInst, IActionComponent, IFormEditorComponent, EditorDescriptorInst, CommonsFormlyFormOptions, FormEditorGetFormValueOpts, FormEditorResetFormModelOpts, FormEditorSubmitEvent, FormEditorSetFieldValueOpts, FormEditorPatchFieldValueOpts, FormEditorResetFieldValueOpts, ActionEditorDescriptorInst, ActionActivationTriggerEnum, ActionEditorSubmitTypeEnum, IActionEditorContext, ActionNotificationType, DataProviderExecutor, ActionContextValidation, RunFetchFromDataProviderReasonType, AGenericFieldDescriptor, CommonsFormlyFieldConfig, CommonsFormlyFormState, AFieldDescriptor, FieldActionDescriptor, FieldActionResultMessage, FieldLookupDescriptor, FieldInputDescriptor, AFieldGroupDescriptor, FieldGroupDescriptor, FieldGroupTypeEnum, FieldInputTypeEnum, FieldLookupConfig, FieldManyEditorDescriptor, FieldManyToManyEditorDescriptor, FieldTabGroupDescriptor, FieldValidationDescriptor, CommonsFormlyValidation, FieldInputDatePickerDynamicMinMaxFnType, FieldValidator, TableviewDescriptorType, TableviewDescriptorInst, EditorDescriptorNestedObjectWrapper, FieldLookupProviderType, TableviewInput, ITableviewDataProvider, TableviewRouteData } from '@mediusinc/mng-commons/tableview/api';
|
|
11
11
|
import { DynamicDialogRef, DynamicDialogConfig, DialogService } from 'primeng/dynamicdialog';
|
|
@@ -18,7 +18,7 @@ import { FormlyFormOptions, FormlyFieldConfig, FieldType, FieldWrapper, FormlyCo
|
|
|
18
18
|
import { FormGroup, AbstractControl, UntypedFormGroup, FormControl, FormArray, ValidationErrors } from '@angular/forms';
|
|
19
19
|
import { LookupDataProviderInst } from '@mediusinc/mng-commons/form/api';
|
|
20
20
|
import { TableRowReorderEvent } from 'primeng/table';
|
|
21
|
-
import { TableComponent } from '@mediusinc/mng-commons/table';
|
|
21
|
+
import { TableTemplateDirective, TableComponent } from '@mediusinc/mng-commons/table';
|
|
22
22
|
import { TranslateService } from '@ngx-translate/core';
|
|
23
23
|
import { ModelDescriptor, TypeDescriptor } from '@mediusinc/mng-commons/model';
|
|
24
24
|
import { DatePipe } from '@angular/common';
|
|
@@ -268,7 +268,12 @@ declare class FormEditorComponent<Item = any, ParentItem = any> implements IForm
|
|
|
268
268
|
private _formlyInitialItem;
|
|
269
269
|
private initialItemInput;
|
|
270
270
|
private setterFields;
|
|
271
|
-
formMessages: _angular_core.WritableSignal<ToastMessageOptions[]>;
|
|
271
|
+
readonly formMessages: _angular_core.WritableSignal<ToastMessageOptions[]>;
|
|
272
|
+
protected readonly formMessagesTypeNarrowed: _angular_core.Signal<{
|
|
273
|
+
severity: _mediusinc_mng_commons_core.PrimeMessageSeverityType | undefined;
|
|
274
|
+
text: string | undefined;
|
|
275
|
+
icon: string | undefined;
|
|
276
|
+
}[]>;
|
|
272
277
|
readonly restoreLocalStateButtonStyle: string;
|
|
273
278
|
readonly previewLocalStateButtonStyle: string;
|
|
274
279
|
readonly clearLocalStateButtonStyle: string;
|
|
@@ -471,29 +476,23 @@ declare class ActionTableComponent<Item = any, Service = undefined, Sorts = keyo
|
|
|
471
476
|
loading: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
472
477
|
dataProvider: _angular_core.InputSignal<ITableDataProvider<Item, Service, Sorts, Filters> | undefined>;
|
|
473
478
|
useQueryParams: _angular_core.InputSignal<boolean>;
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
+
readonly tableTemplates: _angular_core.InputSignal<TableTemplateDirective<"columnCustomLast" | "rowExpandContent" | "footer" | "columnHeader" | "headerTitleRowRight" | "headerTitle" | "header">[]>;
|
|
480
|
+
readonly tableClassName: _angular_core.InputSignal<string | undefined>;
|
|
481
|
+
readonly selectionMode: _angular_core.InputSignal<"single" | "multiple">;
|
|
482
|
+
readonly selectionEnabled: _angular_core.InputSignal<boolean>;
|
|
483
|
+
readonly globalFilterFields: _angular_core.InputSignal<string[] | undefined>;
|
|
484
|
+
readonly rowReorderEnabled: _angular_core.InputSignal<boolean>;
|
|
479
485
|
actions: _angular_core.InputSignal<ActionDescriptorInst<any, any, any, any, any>[]>;
|
|
480
|
-
captionComponent: _angular_core.InputSignal<Type<any> | undefined>;
|
|
481
|
-
columnActionComponent: _angular_core.InputSignal<Type<any> | undefined>;
|
|
482
486
|
columnActionMinWidthInput: _angular_core.InputSignal<number | undefined>;
|
|
483
|
-
columnActionMinWidth: Signal<number | undefined>;
|
|
487
|
+
columnActionMinWidth: _angular_core.Signal<number | undefined>;
|
|
484
488
|
tableLoad: _angular_core.OutputEmitterRef<TableLoadEvent>;
|
|
485
489
|
selectionChange: _angular_core.OutputEmitterRef<Item[]>;
|
|
486
|
-
captionComponentInstance: _angular_core.OutputEmitterRef<any>;
|
|
487
|
-
columnActionComponentInstance: _angular_core.OutputEmitterRef<any>;
|
|
488
490
|
rowReorder: _angular_core.OutputEmitterRef<TableRowReorderEvent>;
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
rowExpandTemplate: Signal<TemplateRef<any> | null>;
|
|
495
|
-
rowClickActions: Signal<ActionDescriptorInst<any, any, any, any, any>[]>;
|
|
496
|
-
rowInlineActions: Signal<ActionDescriptorInst<any, any, any, any, any>[]>;
|
|
491
|
+
readonly contentTemplates: _angular_core.Signal<readonly TableTemplateDirective<"columnCustomLast" | "rowExpandContent" | "footer" | "columnHeader" | "headerTitleRowRight" | "headerTitle" | "header">[]>;
|
|
492
|
+
readonly table: _angular_core.Signal<TableComponent<any, any, any, any>>;
|
|
493
|
+
protected readonly tableTemplatesMerged: _angular_core.Signal<TableTemplateDirective<"columnCustomLast" | "rowExpandContent" | "footer" | "columnHeader" | "headerTitleRowRight" | "headerTitle" | "header">[]>;
|
|
494
|
+
rowClickActions: _angular_core.Signal<ActionDescriptorInst<any, any, any, any, any>[]>;
|
|
495
|
+
rowInlineActions: _angular_core.Signal<ActionDescriptorInst<any, any, any, any, any>[]>;
|
|
497
496
|
constructor();
|
|
498
497
|
reload(e?: TableReloadEvent<Sorts, Filters>): void;
|
|
499
498
|
onCellClick(event: TableCellClickEvent<Item>): void;
|
|
@@ -501,7 +500,7 @@ declare class ActionTableComponent<Item = any, Service = undefined, Sorts = keyo
|
|
|
501
500
|
onRowReorder(event: TableRowReorderEvent): void;
|
|
502
501
|
onActionFinish(runResult: ActionInstance<Item, Service>): void;
|
|
503
502
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ActionTableComponent<any, any, any, any>, never>;
|
|
504
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ActionTableComponent<any, any, any, any>, "mng-action-table", never, { "descriptor": { "alias": "descriptor"; "required": true; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "result": { "alias": "result"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "dataProvider": { "alias": "dataProvider"; "required": false; "isSignal": true; }; "useQueryParams": { "alias": "useQueryParams"; "required": false; "isSignal": true; }; "
|
|
503
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ActionTableComponent<any, any, any, any>, "mng-action-table", never, { "descriptor": { "alias": "descriptor"; "required": true; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "result": { "alias": "result"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "dataProvider": { "alias": "dataProvider"; "required": false; "isSignal": true; }; "useQueryParams": { "alias": "useQueryParams"; "required": false; "isSignal": true; }; "tableTemplates": { "alias": "tableTemplates"; "required": false; "isSignal": true; }; "tableClassName": { "alias": "tableClassName"; "required": false; "isSignal": true; }; "selectionMode": { "alias": "selectionMode"; "required": false; "isSignal": true; }; "selectionEnabled": { "alias": "selectionEnabled"; "required": false; "isSignal": true; }; "globalFilterFields": { "alias": "globalFilterFields"; "required": false; "isSignal": true; }; "rowReorderEnabled": { "alias": "rowReorderEnabled"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "columnActionMinWidthInput": { "alias": "columnActionMinWidth"; "required": false; "isSignal": true; }; }, { "tableLoad": "tableLoad"; "selectionChange": "selectionChange"; "rowReorder": "rowReorder"; }, ["contentTemplates"], never, true, never>;
|
|
505
504
|
}
|
|
506
505
|
|
|
507
506
|
declare const unsavedChangesGuard: CanDeactivateFn<CanComponentDeactivate>;
|
|
@@ -1004,8 +1003,6 @@ declare class FormlyFieldLookupDialogComponent<T, ET> extends ACommonsFormlyFiel
|
|
|
1004
1003
|
ngOnDestroy(): void;
|
|
1005
1004
|
openSelectDialog(): void;
|
|
1006
1005
|
onSelectionChange(item: any): void;
|
|
1007
|
-
onCaptionCmpInst(instance: any): void;
|
|
1008
|
-
onColumnActionCmpInst(instance: any): void;
|
|
1009
1006
|
clear(): void;
|
|
1010
1007
|
hideDialog(): void;
|
|
1011
1008
|
onAddItem(): void;
|
|
@@ -1066,6 +1063,7 @@ declare class FormlyFieldTableDialogMultiselectComponent extends ACommonsFormlyF
|
|
|
1066
1063
|
declare class FormlyFieldTabsComponent extends ACommonsFormlyGroupType<any, any, FieldTabGroupDescriptor<any>> implements OnInit {
|
|
1067
1064
|
fieldGroup: _angular_core.WritableSignal<CommonsFormlyFieldConfig<any, any, any, _mediusinc_mng_commons_tableview_api.CommonsFormlyFieldProps<any, any, any>>[]>;
|
|
1068
1065
|
ngOnInit(): void;
|
|
1066
|
+
protected onEscape(): void;
|
|
1069
1067
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormlyFieldTabsComponent, never>;
|
|
1070
1068
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormlyFieldTabsComponent, "mng-formly-field-tabs", never, {}, {}, never, never, true, never>;
|
|
1071
1069
|
}
|
|
@@ -1192,25 +1190,24 @@ declare class TableviewRouteComponent<Item, Service = undefined, Sorts = keyof I
|
|
|
1192
1190
|
|
|
1193
1191
|
declare class TableviewComponent<Item = any, Service = undefined, Sorts = keyof Item, Filters extends keyof any = keyof Item> implements OnInit {
|
|
1194
1192
|
readonly viewContainer: ViewContainer<any, any> | null;
|
|
1195
|
-
actionTable: Signal<ActionTableComponent<Item, Service, Sorts, Filters>>;
|
|
1193
|
+
actionTable: _angular_core.Signal<ActionTableComponent<Item, Service, Sorts, Filters>>;
|
|
1196
1194
|
descriptor: _angular_core.InputSignal<TableviewDescriptorInst<Item, Sorts, Filters, any, any, any, any, any>>;
|
|
1197
1195
|
dataProvider: _angular_core.InputSignal<ITableviewDataProvider<Item, Service, Sorts, Filters, any, any, any, any> | undefined>;
|
|
1198
1196
|
actions: _angular_core.InputSignal<ActionDescriptorInst<any, any, any, any, any>[]>;
|
|
1199
|
-
toolbarLeftActions: Signal<ActionDescriptorInst<any, any, any, any, any>[]>;
|
|
1200
|
-
toolbarRightActions: Signal<ActionDescriptorInst<any, any, any, any, any>[]>;
|
|
1201
|
-
tableActions: Signal<ActionDescriptorInst<any, any, any, any, any>[]>;
|
|
1197
|
+
toolbarLeftActions: _angular_core.Signal<ActionDescriptorInst<any, any, any, any, any>[]>;
|
|
1198
|
+
toolbarRightActions: _angular_core.Signal<ActionDescriptorInst<any, any, any, any, any>[]>;
|
|
1199
|
+
tableActions: _angular_core.Signal<ActionDescriptorInst<any, any, any, any, any>[]>;
|
|
1202
1200
|
tableParams: _angular_core.WritableSignal<DataListParams<string, string> | undefined>;
|
|
1203
|
-
hasItemSelectionAction: Signal<boolean>;
|
|
1201
|
+
hasItemSelectionAction: _angular_core.Signal<boolean>;
|
|
1204
1202
|
selectedItems: _angular_core.WritableSignal<Item[]>;
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
rowExpandTemplate: Signal<TemplateRef<any> | null>;
|
|
1203
|
+
protected readonly contentTableTemplates: _angular_core.Signal<readonly TableTemplateDirective<"columnCustomLast" | "rowExpandContent" | "footer" | "columnHeader" | "headerTitleRowRight" | "headerTitle" | "header">[]>;
|
|
1204
|
+
protected readonly tableTemplates: _angular_core.Signal<TableTemplateDirective<"columnCustomLast" | "rowExpandContent" | "footer" | "columnHeader" | "headerTitleRowRight" | "headerTitle" | "header">[]>;
|
|
1208
1205
|
ngOnInit(): void;
|
|
1209
1206
|
onTableLoad(event: TableLoadEvent): void;
|
|
1210
1207
|
selectionChange(selectedItems: Array<Item>): void;
|
|
1211
1208
|
private filterActionsByPositions;
|
|
1212
1209
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TableviewComponent<any, any, any, any>, never>;
|
|
1213
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TableviewComponent<any, any, any, any>, "mng-tableview", never, { "descriptor": { "alias": "descriptor"; "required": true; "isSignal": true; }; "dataProvider": { "alias": "dataProvider"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; }, {}, ["
|
|
1210
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TableviewComponent<any, any, any, any>, "mng-tableview", never, { "descriptor": { "alias": "descriptor"; "required": true; "isSignal": true; }; "dataProvider": { "alias": "dataProvider"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; }, {}, ["contentTableTemplates"], never, true, never>;
|
|
1214
1211
|
}
|
|
1215
1212
|
|
|
1216
1213
|
type TableviewRoutePermissionObjType = {
|
package/version-info.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mediusinc/mng-commons",
|
|
3
|
-
"version": "7.0.0-rc.
|
|
4
|
-
"tag":
|
|
5
|
-
"distance":
|
|
6
|
-
"hash": "
|
|
3
|
+
"version": "7.0.0-rc.2",
|
|
4
|
+
"tag": null,
|
|
5
|
+
"distance": null,
|
|
6
|
+
"hash": "66a002f",
|
|
7
7
|
"dirty": true,
|
|
8
|
-
"semver":
|
|
8
|
+
"semver": null,
|
|
9
9
|
"buildTimestamp": null,
|
|
10
|
-
"raw": "
|
|
10
|
+
"raw": "7.0.0-rc.2-66a002f-dirty"
|
|
11
11
|
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { NgClass } from '@angular/common';
|
|
2
|
-
import * as i0 from '@angular/core';
|
|
3
|
-
import { inject, input, computed, ChangeDetectionStrategy, Component } from '@angular/core';
|
|
4
|
-
import * as i1 from '@angular/forms';
|
|
5
|
-
import { FormsModule } from '@angular/forms';
|
|
6
|
-
import { TranslatePipe } from '@ngx-translate/core';
|
|
7
|
-
import { Button } from 'primeng/button';
|
|
8
|
-
import { MultiSelect } from 'primeng/multiselect';
|
|
9
|
-
import { Tooltip } from 'primeng/tooltip';
|
|
10
|
-
import { I18nPropertyPipe } from '@mediusinc/mng-commons/core';
|
|
11
|
-
import { T as TableMetadataService, a as TablePreferencesService } from './mediusinc-mng-commons-table-mediusinc-mng-commons-table-DFcdSUCN.mjs';
|
|
12
|
-
|
|
13
|
-
class TableColumnToggleComponent {
|
|
14
|
-
constructor() {
|
|
15
|
-
this.metadata = inject(TableMetadataService);
|
|
16
|
-
this.prefs = inject(TablePreferencesService);
|
|
17
|
-
// data source inputs
|
|
18
|
-
this.columns = input.required(...(ngDevMode ? [{ debugName: "columns" }] : []));
|
|
19
|
-
this.anyColumnVisible = computed(() => this.columns().length > 0, ...(ngDevMode ? [{ debugName: "anyColumnVisible" }] : []));
|
|
20
|
-
}
|
|
21
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: TableColumnToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
22
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.1.7", type: TableColumnToggleComponent, isStandalone: true, selector: "mng-table-column-toggle", inputs: { columns: { classPropertyName: "columns", publicName: "columns", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: "<p-multiSelect\n #columnToggleMultiselect\n styleClass=\"p-button-primary mng-table-columns-multiselect\"\n appendTo=\"body\"\n dataKey=\"id\"\n tooltipPosition=\"left\"\n placeholder=\"\"\n dropdownIcon=\"pi pi-sliders-h\"\n [filter]=\"false\"\n [options]=\"prefs.columnsWithPrefs()\"\n [ngModel]=\"columns()\"\n [pTooltip]=\"'mngTable.adjustTable' | translate\"\n [displaySelectedLabel]=\"false\"\n (onChange)=\"prefs.onColumnToggle($event)\">\n <ng-template #filter>\n <div class=\"flex w-full justify-between items-center\">\n <div class=\"p-checkbox\">\n <div class=\"p-hidden-accessible\">\n <input type=\"checkbox\" readonly=\"readonly\" [checked]=\"columnToggleMultiselect.allSelected\" (keydown.space)=\"columnToggleMultiselect.onToggleAll($event)\" />\n </div>\n <div\n class=\"p-checkbox-box cursor-pointer\"\n role=\"checkbox\"\n [attr.aria-checked]=\"columnToggleMultiselect.allSelected\"\n [class.p-select-option-selected]=\"anyColumnVisible()\"\n (click)=\"prefs.onColumnToggleAll()\">\n <span class=\"p-checkbox-icon\" [ngClass]=\"{'pi pi-check': anyColumnVisible()}\"></span>\n </div>\n </div>\n <p-button\n icon=\"pi pi-replay\"\n severity=\"secondary\"\n text=\"true\"\n tooltipPosition=\"left\"\n [pTooltip]=\"'mngTable.resetLayout' | translate\"\n (click)=\"prefs.clearLayoutPreferences()\"></p-button>\n </div>\n </ng-template>\n <ng-template #item let-item>\n {{\n (item.descriptor.title && !item.descriptor.titleUseModelBase\n ? item.descriptor.title\n : (item.descriptor.title ?? item.descriptor.property | mngI18nProperty: metadata.descriptor().model)\n ) | translate\n }}\n </ng-template>\n</p-multiSelect>\n", dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: MultiSelect, selector: "p-multiSelect, p-multiselect, p-multi-select", inputs: ["id", "ariaLabel", "styleClass", "panelStyle", "panelStyleClass", "inputId", "readonly", "group", "filter", "filterPlaceHolder", "filterLocale", "overlayVisible", "tabindex", "dataKey", "ariaLabelledBy", "displaySelectedLabel", "maxSelectedLabels", "selectionLimit", "selectedItemsLabel", "showToggleAll", "emptyFilterMessage", "emptyMessage", "resetFilterOnHide", "dropdownIcon", "chipIcon", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "showHeader", "filterBy", "scrollHeight", "lazy", "virtualScroll", "loading", "virtualScrollItemSize", "loadingIcon", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "filterMatchMode", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "autofocusFilter", "display", "autocomplete", "showClear", "autofocus", "placeholder", "options", "filterValue", "selectAll", "focusOnHover", "filterFields", "selectOnFocus", "autoOptionFocus", "highlightOnSelect", "size", "variant", "fluid", "appendTo"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onClear", "onPanelShow", "onPanelHide", "onLazyLoad", "onRemove", "onSelectAllChange"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: Tooltip, selector: "[pTooltip]", inputs: ["tooltipPosition", "tooltipEvent", "positionStyle", "tooltipStyleClass", "tooltipZIndex", "escape", "showDelay", "hideDelay", "life", "positionTop", "positionLeft", "autoHide", "fitContent", "hideOnEscape", "pTooltip", "tooltipDisabled", "tooltipOptions", "appendTo"] }, { kind: "component", type: Button, selector: "p-button", inputs: ["type", "iconPos", "icon", "badge", "label", "disabled", "loading", "loadingIcon", "raised", "rounded", "text", "plain", "severity", "outlined", "link", "tabindex", "size", "variant", "style", "styleClass", "badgeClass", "badgeSeverity", "ariaLabel", "buttonProps", "autofocus", "fluid"], outputs: ["onClick", "onFocus", "onBlur"] }, { kind: "pipe", type: I18nPropertyPipe, name: "mngI18nProperty" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
23
|
-
}
|
|
24
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: TableColumnToggleComponent, decorators: [{
|
|
25
|
-
type: Component,
|
|
26
|
-
args: [{ selector: 'mng-table-column-toggle', imports: [I18nPropertyPipe, NgClass, MultiSelect, FormsModule, TranslatePipe, Tooltip, Button], changeDetection: ChangeDetectionStrategy.OnPush, template: "<p-multiSelect\n #columnToggleMultiselect\n styleClass=\"p-button-primary mng-table-columns-multiselect\"\n appendTo=\"body\"\n dataKey=\"id\"\n tooltipPosition=\"left\"\n placeholder=\"\"\n dropdownIcon=\"pi pi-sliders-h\"\n [filter]=\"false\"\n [options]=\"prefs.columnsWithPrefs()\"\n [ngModel]=\"columns()\"\n [pTooltip]=\"'mngTable.adjustTable' | translate\"\n [displaySelectedLabel]=\"false\"\n (onChange)=\"prefs.onColumnToggle($event)\">\n <ng-template #filter>\n <div class=\"flex w-full justify-between items-center\">\n <div class=\"p-checkbox\">\n <div class=\"p-hidden-accessible\">\n <input type=\"checkbox\" readonly=\"readonly\" [checked]=\"columnToggleMultiselect.allSelected\" (keydown.space)=\"columnToggleMultiselect.onToggleAll($event)\" />\n </div>\n <div\n class=\"p-checkbox-box cursor-pointer\"\n role=\"checkbox\"\n [attr.aria-checked]=\"columnToggleMultiselect.allSelected\"\n [class.p-select-option-selected]=\"anyColumnVisible()\"\n (click)=\"prefs.onColumnToggleAll()\">\n <span class=\"p-checkbox-icon\" [ngClass]=\"{'pi pi-check': anyColumnVisible()}\"></span>\n </div>\n </div>\n <p-button\n icon=\"pi pi-replay\"\n severity=\"secondary\"\n text=\"true\"\n tooltipPosition=\"left\"\n [pTooltip]=\"'mngTable.resetLayout' | translate\"\n (click)=\"prefs.clearLayoutPreferences()\"></p-button>\n </div>\n </ng-template>\n <ng-template #item let-item>\n {{\n (item.descriptor.title && !item.descriptor.titleUseModelBase\n ? item.descriptor.title\n : (item.descriptor.title ?? item.descriptor.property | mngI18nProperty: metadata.descriptor().model)\n ) | translate\n }}\n </ng-template>\n</p-multiSelect>\n" }]
|
|
27
|
-
}] });
|
|
28
|
-
|
|
29
|
-
export { TableColumnToggleComponent };
|
|
30
|
-
//# sourceMappingURL=mediusinc-mng-commons-table-column-toggle.component-Dvenjj9n.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mediusinc-mng-commons-table-column-toggle.component-Dvenjj9n.mjs","sources":["../tmp-esm2022/table/components/column-toggle/column-toggle.component.js"],"sourcesContent":["import { NgClass } from '@angular/common';\nimport { ChangeDetectionStrategy, Component, computed, inject, input } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { TranslatePipe } from '@ngx-translate/core';\nimport { Button } from 'primeng/button';\nimport { MultiSelect } from 'primeng/multiselect';\nimport { Tooltip } from 'primeng/tooltip';\nimport { I18nPropertyPipe } from '@mediusinc/mng-commons/core';\nimport { TableMetadataService } from '../../services/table-metadata.service';\nimport { TablePreferencesService } from '../../services/table-preferences.service';\nimport * as i0 from \"@angular/core\";\nimport * as i1 from \"@angular/forms\";\nexport class TableColumnToggleComponent {\n constructor() {\n this.metadata = inject(TableMetadataService);\n this.prefs = inject(TablePreferencesService);\n // data source inputs\n this.columns = input.required(...(ngDevMode ? [{ debugName: \"columns\" }] : []));\n this.anyColumnVisible = computed(() => this.columns().length > 0, ...(ngDevMode ? [{ debugName: \"anyColumnVisible\" }] : []));\n }\n static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"20.1.7\", ngImport: i0, type: TableColumnToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }\n static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"17.1.0\", version: \"20.1.7\", type: TableColumnToggleComponent, isStandalone: true, selector: \"mng-table-column-toggle\", inputs: { columns: { classPropertyName: \"columns\", publicName: \"columns\", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: \"<p-multiSelect\\n #columnToggleMultiselect\\n styleClass=\\\"p-button-primary mng-table-columns-multiselect\\\"\\n appendTo=\\\"body\\\"\\n dataKey=\\\"id\\\"\\n tooltipPosition=\\\"left\\\"\\n placeholder=\\\"\\\"\\n dropdownIcon=\\\"pi pi-sliders-h\\\"\\n [filter]=\\\"false\\\"\\n [options]=\\\"prefs.columnsWithPrefs()\\\"\\n [ngModel]=\\\"columns()\\\"\\n [pTooltip]=\\\"'mngTable.adjustTable' | translate\\\"\\n [displaySelectedLabel]=\\\"false\\\"\\n (onChange)=\\\"prefs.onColumnToggle($event)\\\">\\n <ng-template #filter>\\n <div class=\\\"flex w-full justify-between items-center\\\">\\n <div class=\\\"p-checkbox\\\">\\n <div class=\\\"p-hidden-accessible\\\">\\n <input type=\\\"checkbox\\\" readonly=\\\"readonly\\\" [checked]=\\\"columnToggleMultiselect.allSelected\\\" (keydown.space)=\\\"columnToggleMultiselect.onToggleAll($event)\\\" />\\n </div>\\n <div\\n class=\\\"p-checkbox-box cursor-pointer\\\"\\n role=\\\"checkbox\\\"\\n [attr.aria-checked]=\\\"columnToggleMultiselect.allSelected\\\"\\n [class.p-select-option-selected]=\\\"anyColumnVisible()\\\"\\n (click)=\\\"prefs.onColumnToggleAll()\\\">\\n <span class=\\\"p-checkbox-icon\\\" [ngClass]=\\\"{'pi pi-check': anyColumnVisible()}\\\"></span>\\n </div>\\n </div>\\n <p-button\\n icon=\\\"pi pi-replay\\\"\\n severity=\\\"secondary\\\"\\n text=\\\"true\\\"\\n tooltipPosition=\\\"left\\\"\\n [pTooltip]=\\\"'mngTable.resetLayout' | translate\\\"\\n (click)=\\\"prefs.clearLayoutPreferences()\\\"></p-button>\\n </div>\\n </ng-template>\\n <ng-template #item let-item>\\n {{\\n (item.descriptor.title && !item.descriptor.titleUseModelBase\\n ? item.descriptor.title\\n : (item.descriptor.title ?? item.descriptor.property | mngI18nProperty: metadata.descriptor().model)\\n ) | translate\\n }}\\n </ng-template>\\n</p-multiSelect>\\n\", dependencies: [{ kind: \"directive\", type: NgClass, selector: \"[ngClass]\", inputs: [\"class\", \"ngClass\"] }, { kind: \"component\", type: MultiSelect, selector: \"p-multiSelect, p-multiselect, p-multi-select\", inputs: [\"id\", \"ariaLabel\", \"styleClass\", \"panelStyle\", \"panelStyleClass\", \"inputId\", \"readonly\", \"group\", \"filter\", \"filterPlaceHolder\", \"filterLocale\", \"overlayVisible\", \"tabindex\", \"dataKey\", \"ariaLabelledBy\", \"displaySelectedLabel\", \"maxSelectedLabels\", \"selectionLimit\", \"selectedItemsLabel\", \"showToggleAll\", \"emptyFilterMessage\", \"emptyMessage\", \"resetFilterOnHide\", \"dropdownIcon\", \"chipIcon\", \"optionLabel\", \"optionValue\", \"optionDisabled\", \"optionGroupLabel\", \"optionGroupChildren\", \"showHeader\", \"filterBy\", \"scrollHeight\", \"lazy\", \"virtualScroll\", \"loading\", \"virtualScrollItemSize\", \"loadingIcon\", \"virtualScrollOptions\", \"overlayOptions\", \"ariaFilterLabel\", \"filterMatchMode\", \"tooltip\", \"tooltipPosition\", \"tooltipPositionStyle\", \"tooltipStyleClass\", \"autofocusFilter\", \"display\", \"autocomplete\", \"showClear\", \"autofocus\", \"placeholder\", \"options\", \"filterValue\", \"selectAll\", \"focusOnHover\", \"filterFields\", \"selectOnFocus\", \"autoOptionFocus\", \"highlightOnSelect\", \"size\", \"variant\", \"fluid\", \"appendTo\"], outputs: [\"onChange\", \"onFilter\", \"onFocus\", \"onBlur\", \"onClick\", \"onClear\", \"onPanelShow\", \"onPanelHide\", \"onLazyLoad\", \"onRemove\", \"onSelectAllChange\"] }, { kind: \"ngmodule\", type: FormsModule }, { kind: \"directive\", type: i1.NgControlStatus, selector: \"[formControlName],[ngModel],[formControl]\" }, { kind: \"directive\", type: i1.NgModel, selector: \"[ngModel]:not([formControlName]):not([formControl])\", inputs: [\"name\", \"disabled\", \"ngModel\", \"ngModelOptions\"], outputs: [\"ngModelChange\"], exportAs: [\"ngModel\"] }, { kind: \"directive\", type: Tooltip, selector: \"[pTooltip]\", inputs: [\"tooltipPosition\", \"tooltipEvent\", \"positionStyle\", \"tooltipStyleClass\", \"tooltipZIndex\", \"escape\", \"showDelay\", \"hideDelay\", \"life\", \"positionTop\", \"positionLeft\", \"autoHide\", \"fitContent\", \"hideOnEscape\", \"pTooltip\", \"tooltipDisabled\", \"tooltipOptions\", \"appendTo\"] }, { kind: \"component\", type: Button, selector: \"p-button\", inputs: [\"type\", \"iconPos\", \"icon\", \"badge\", \"label\", \"disabled\", \"loading\", \"loadingIcon\", \"raised\", \"rounded\", \"text\", \"plain\", \"severity\", \"outlined\", \"link\", \"tabindex\", \"size\", \"variant\", \"style\", \"styleClass\", \"badgeClass\", \"badgeSeverity\", \"ariaLabel\", \"buttonProps\", \"autofocus\", \"fluid\"], outputs: [\"onClick\", \"onFocus\", \"onBlur\"] }, { kind: \"pipe\", type: I18nPropertyPipe, name: \"mngI18nProperty\" }, { kind: \"pipe\", type: TranslatePipe, name: \"translate\" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"20.1.7\", ngImport: i0, type: TableColumnToggleComponent, decorators: [{\n type: Component,\n args: [{ selector: 'mng-table-column-toggle', imports: [I18nPropertyPipe, NgClass, MultiSelect, FormsModule, TranslatePipe, Tooltip, Button], changeDetection: ChangeDetectionStrategy.OnPush, template: \"<p-multiSelect\\n #columnToggleMultiselect\\n styleClass=\\\"p-button-primary mng-table-columns-multiselect\\\"\\n appendTo=\\\"body\\\"\\n dataKey=\\\"id\\\"\\n tooltipPosition=\\\"left\\\"\\n placeholder=\\\"\\\"\\n dropdownIcon=\\\"pi pi-sliders-h\\\"\\n [filter]=\\\"false\\\"\\n [options]=\\\"prefs.columnsWithPrefs()\\\"\\n [ngModel]=\\\"columns()\\\"\\n [pTooltip]=\\\"'mngTable.adjustTable' | translate\\\"\\n [displaySelectedLabel]=\\\"false\\\"\\n (onChange)=\\\"prefs.onColumnToggle($event)\\\">\\n <ng-template #filter>\\n <div class=\\\"flex w-full justify-between items-center\\\">\\n <div class=\\\"p-checkbox\\\">\\n <div class=\\\"p-hidden-accessible\\\">\\n <input type=\\\"checkbox\\\" readonly=\\\"readonly\\\" [checked]=\\\"columnToggleMultiselect.allSelected\\\" (keydown.space)=\\\"columnToggleMultiselect.onToggleAll($event)\\\" />\\n </div>\\n <div\\n class=\\\"p-checkbox-box cursor-pointer\\\"\\n role=\\\"checkbox\\\"\\n [attr.aria-checked]=\\\"columnToggleMultiselect.allSelected\\\"\\n [class.p-select-option-selected]=\\\"anyColumnVisible()\\\"\\n (click)=\\\"prefs.onColumnToggleAll()\\\">\\n <span class=\\\"p-checkbox-icon\\\" [ngClass]=\\\"{'pi pi-check': anyColumnVisible()}\\\"></span>\\n </div>\\n </div>\\n <p-button\\n icon=\\\"pi pi-replay\\\"\\n severity=\\\"secondary\\\"\\n text=\\\"true\\\"\\n tooltipPosition=\\\"left\\\"\\n [pTooltip]=\\\"'mngTable.resetLayout' | translate\\\"\\n (click)=\\\"prefs.clearLayoutPreferences()\\\"></p-button>\\n </div>\\n </ng-template>\\n <ng-template #item let-item>\\n {{\\n (item.descriptor.title && !item.descriptor.titleUseModelBase\\n ? item.descriptor.title\\n : (item.descriptor.title ?? item.descriptor.property | mngI18nProperty: metadata.descriptor().model)\\n ) | translate\\n }}\\n </ng-template>\\n</p-multiSelect>\\n\" }]\n }] });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1uLXRvZ2dsZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi90YWJsZS9zcmMvY29tcG9uZW50cy9jb2x1bW4tdG9nZ2xlL2NvbHVtbi10b2dnbGUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vdGFibGUvc3JjL2NvbXBvbmVudHMvY29sdW1uLXRvZ2dsZS9jb2x1bW4tdG9nZ2xlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxPQUFPLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUN4QyxPQUFPLEVBQUMsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLFFBQVEsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQzFGLE9BQU8sRUFBQyxXQUFXLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUUzQyxPQUFPLEVBQUMsYUFBYSxFQUFDLE1BQU0scUJBQXFCLENBQUM7QUFDbEQsT0FBTyxFQUFDLE1BQU0sRUFBQyxNQUFNLGdCQUFnQixDQUFDO0FBQ3RDLE9BQU8sRUFBQyxXQUFXLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUNoRCxPQUFPLEVBQUMsT0FBTyxFQUFDLE1BQU0saUJBQWlCLENBQUM7QUFFeEMsT0FBTyxFQUFDLGdCQUFnQixFQUFDLE1BQU0sNkJBQTZCLENBQUM7QUFHN0QsT0FBTyxFQUFDLG9CQUFvQixFQUFDLE1BQU0sdUNBQXVDLENBQUM7QUFDM0UsT0FBTyxFQUFDLHVCQUF1QixFQUFDLE1BQU0sMENBQTBDLENBQUM7OztBQVFqRixNQUFNLE9BQU8sMEJBQTBCO0lBTnZDO1FBT3VCLGFBQVEsR0FBRyxNQUFNLENBQUMsb0JBQW9CLENBQUMsQ0FBQztRQUN4QyxVQUFLLEdBQUcsTUFBTSxDQUFDLHVCQUF1QixDQUFDLENBQUM7UUFFM0QscUJBQXFCO1FBQ0wsWUFBTyxHQUFHLEtBQUssQ0FBQyxRQUFRLGtEQUEyQixDQUFDO1FBRTFELHFCQUFnQixHQUFHLFFBQVEsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUMsTUFBTSxHQUFHLENBQUMsNERBQUMsQ0FBQztLQUMxRTs4R0FSWSwwQkFBMEI7a0dBQTFCLDBCQUEwQiw0TkNyQnZDLG9pRUErQ0EsNENEN0JnQyxPQUFPLG9GQUFFLFdBQVcsaXZDQUFFLFdBQVcsK1ZBQWlCLE9BQU8sNlVBQUUsTUFBTSxxWUFBbkYsZ0JBQWdCLG1EQUFxQyxhQUFhOzsyRkFHbkUsMEJBQTBCO2tCQU50QyxTQUFTOytCQUNJLHlCQUF5QixXQUUxQixDQUFDLGdCQUFnQixFQUFFLE9BQU8sRUFBRSxXQUFXLEVBQUUsV0FBVyxFQUFFLGFBQWEsRUFBRSxPQUFPLEVBQUUsTUFBTSxDQUFDLG1CQUM3RSx1QkFBdUIsQ0FBQyxNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ0NsYXNzfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHtDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBjb21wdXRlZCwgaW5qZWN0LCBpbnB1dH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0Zvcm1zTW9kdWxlfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbmltcG9ydCB7VHJhbnNsYXRlUGlwZX0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XG5pbXBvcnQge0J1dHRvbn0gZnJvbSAncHJpbWVuZy9idXR0b24nO1xuaW1wb3J0IHtNdWx0aVNlbGVjdH0gZnJvbSAncHJpbWVuZy9tdWx0aXNlbGVjdCc7XG5pbXBvcnQge1Rvb2x0aXB9IGZyb20gJ3ByaW1lbmcvdG9vbHRpcCc7XG5cbmltcG9ydCB7STE4blByb3BlcnR5UGlwZX0gZnJvbSAnQG1lZGl1c2luYy9tbmctY29tbW9ucy9jb3JlJztcblxuaW1wb3J0IHtDb2x1bW5XaXRoUHJlZmVyZW5jZXN9IGZyb20gJy4uLy4uL21vZGVscy9jb2x1bW4tcHJlZmVyZW5jZXMubW9kZWwnO1xuaW1wb3J0IHtUYWJsZU1ldGFkYXRhU2VydmljZX0gZnJvbSAnLi4vLi4vc2VydmljZXMvdGFibGUtbWV0YWRhdGEuc2VydmljZSc7XG5pbXBvcnQge1RhYmxlUHJlZmVyZW5jZXNTZXJ2aWNlfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy90YWJsZS1wcmVmZXJlbmNlcy5zZXJ2aWNlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdtbmctdGFibGUtY29sdW1uLXRvZ2dsZScsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2NvbHVtbi10b2dnbGUuY29tcG9uZW50Lmh0bWwnLFxuICAgIGltcG9ydHM6IFtJMThuUHJvcGVydHlQaXBlLCBOZ0NsYXNzLCBNdWx0aVNlbGVjdCwgRm9ybXNNb2R1bGUsIFRyYW5zbGF0ZVBpcGUsIFRvb2x0aXAsIEJ1dHRvbl0sXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2hcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVDb2x1bW5Ub2dnbGVDb21wb25lbnQge1xuICAgIHByb3RlY3RlZCByZWFkb25seSBtZXRhZGF0YSA9IGluamVjdChUYWJsZU1ldGFkYXRhU2VydmljZSk7XG4gICAgcHJvdGVjdGVkIHJlYWRvbmx5IHByZWZzID0gaW5qZWN0KFRhYmxlUHJlZmVyZW5jZXNTZXJ2aWNlKTtcblxuICAgIC8vIGRhdGEgc291cmNlIGlucHV0c1xuICAgIHB1YmxpYyByZWFkb25seSBjb2x1bW5zID0gaW5wdXQucmVxdWlyZWQ8Q29sdW1uV2l0aFByZWZlcmVuY2VzW10+KCk7XG5cbiAgICBwcm90ZWN0ZWQgYW55Q29sdW1uVmlzaWJsZSA9IGNvbXB1dGVkKCgpID0+IHRoaXMuY29sdW1ucygpLmxlbmd0aCA+IDApO1xufVxuIiwiPHAtbXVsdGlTZWxlY3RcbiAgICAjY29sdW1uVG9nZ2xlTXVsdGlzZWxlY3RcbiAgICBzdHlsZUNsYXNzPVwicC1idXR0b24tcHJpbWFyeSBtbmctdGFibGUtY29sdW1ucy1tdWx0aXNlbGVjdFwiXG4gICAgYXBwZW5kVG89XCJib2R5XCJcbiAgICBkYXRhS2V5PVwiaWRcIlxuICAgIHRvb2x0aXBQb3NpdGlvbj1cImxlZnRcIlxuICAgIHBsYWNlaG9sZGVyPVwiXCJcbiAgICBkcm9wZG93bkljb249XCJwaSBwaS1zbGlkZXJzLWhcIlxuICAgIFtmaWx0ZXJdPVwiZmFsc2VcIlxuICAgIFtvcHRpb25zXT1cInByZWZzLmNvbHVtbnNXaXRoUHJlZnMoKVwiXG4gICAgW25nTW9kZWxdPVwiY29sdW1ucygpXCJcbiAgICBbcFRvb2x0aXBdPVwiJ21uZ1RhYmxlLmFkanVzdFRhYmxlJyB8IHRyYW5zbGF0ZVwiXG4gICAgW2Rpc3BsYXlTZWxlY3RlZExhYmVsXT1cImZhbHNlXCJcbiAgICAob25DaGFuZ2UpPVwicHJlZnMub25Db2x1bW5Ub2dnbGUoJGV2ZW50KVwiPlxuICAgIDxuZy10ZW1wbGF0ZSAjZmlsdGVyPlxuICAgICAgICA8ZGl2IGNsYXNzPVwiZmxleCB3LWZ1bGwganVzdGlmeS1iZXR3ZWVuIGl0ZW1zLWNlbnRlclwiPlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cInAtY2hlY2tib3hcIj5cbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwicC1oaWRkZW4tYWNjZXNzaWJsZVwiPlxuICAgICAgICAgICAgICAgICAgICA8aW5wdXQgdHlwZT1cImNoZWNrYm94XCIgcmVhZG9ubHk9XCJyZWFkb25seVwiIFtjaGVja2VkXT1cImNvbHVtblRvZ2dsZU11bHRpc2VsZWN0LmFsbFNlbGVjdGVkXCIgKGtleWRvd24uc3BhY2UpPVwiY29sdW1uVG9nZ2xlTXVsdGlzZWxlY3Qub25Ub2dnbGVBbGwoJGV2ZW50KVwiIC8+XG4gICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInAtY2hlY2tib3gtYm94IGN1cnNvci1wb2ludGVyXCJcbiAgICAgICAgICAgICAgICAgICAgcm9sZT1cImNoZWNrYm94XCJcbiAgICAgICAgICAgICAgICAgICAgW2F0dHIuYXJpYS1jaGVja2VkXT1cImNvbHVtblRvZ2dsZU11bHRpc2VsZWN0LmFsbFNlbGVjdGVkXCJcbiAgICAgICAgICAgICAgICAgICAgW2NsYXNzLnAtc2VsZWN0LW9wdGlvbi1zZWxlY3RlZF09XCJhbnlDb2x1bW5WaXNpYmxlKClcIlxuICAgICAgICAgICAgICAgICAgICAoY2xpY2spPVwicHJlZnMub25Db2x1bW5Ub2dnbGVBbGwoKVwiPlxuICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInAtY2hlY2tib3gtaWNvblwiIFtuZ0NsYXNzXT1cInsncGkgcGktY2hlY2snOiBhbnlDb2x1bW5WaXNpYmxlKCl9XCI+PC9zcGFuPlxuICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8cC1idXR0b25cbiAgICAgICAgICAgICAgICBpY29uPVwicGkgcGktcmVwbGF5XCJcbiAgICAgICAgICAgICAgICBzZXZlcml0eT1cInNlY29uZGFyeVwiXG4gICAgICAgICAgICAgICAgdGV4dD1cInRydWVcIlxuICAgICAgICAgICAgICAgIHRvb2x0aXBQb3NpdGlvbj1cImxlZnRcIlxuICAgICAgICAgICAgICAgIFtwVG9vbHRpcF09XCInbW5nVGFibGUucmVzZXRMYXlvdXQnIHwgdHJhbnNsYXRlXCJcbiAgICAgICAgICAgICAgICAoY2xpY2spPVwicHJlZnMuY2xlYXJMYXlvdXRQcmVmZXJlbmNlcygpXCI+PC9wLWJ1dHRvbj5cbiAgICAgICAgPC9kaXY+XG4gICAgPC9uZy10ZW1wbGF0ZT5cbiAgICA8bmctdGVtcGxhdGUgI2l0ZW0gbGV0LWl0ZW0+XG4gICAgICAgIHt7XG4gICAgICAgICAgICAoaXRlbS5kZXNjcmlwdG9yLnRpdGxlICYmICFpdGVtLmRlc2NyaXB0b3IudGl0bGVVc2VNb2RlbEJhc2VcbiAgICAgICAgICAgICAgICA/IGl0ZW0uZGVzY3JpcHRvci50aXRsZVxuICAgICAgICAgICAgICAgIDogKGl0ZW0uZGVzY3JpcHRvci50aXRsZSA/PyBpdGVtLmRlc2NyaXB0b3IucHJvcGVydHkgfCBtbmdJMThuUHJvcGVydHk6IG1ldGFkYXRhLmRlc2NyaXB0b3IoKS5tb2RlbClcbiAgICAgICAgICAgICkgfCB0cmFuc2xhdGVcbiAgICAgICAgfX1cbiAgICA8L25nLXRlbXBsYXRlPlxuPC9wLW11bHRpU2VsZWN0PlxuIl19"],"names":[],"mappings":"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"}
|