@masterteam/components 0.0.141 → 0.0.143
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/assets/common.css +1 -1
- package/fesm2022/masterteam-components-business-fields.mjs +1 -1
- package/fesm2022/masterteam-components-business-fields.mjs.map +1 -1
- package/fesm2022/masterteam-components-client-page-menu.mjs +2 -2
- package/fesm2022/masterteam-components-client-page-menu.mjs.map +1 -1
- package/fesm2022/masterteam-components-client-page.mjs +4 -8
- package/fesm2022/masterteam-components-client-page.mjs.map +1 -1
- package/fesm2022/masterteam-components-entities.mjs +264 -51
- package/fesm2022/masterteam-components-entities.mjs.map +1 -1
- package/fesm2022/masterteam-components-paginator.mjs +2 -3
- package/fesm2022/masterteam-components-paginator.mjs.map +1 -1
- package/fesm2022/masterteam-components-select-field.mjs +2 -2
- package/fesm2022/masterteam-components-select-field.mjs.map +1 -1
- package/fesm2022/masterteam-components-sidebar.mjs +2 -2
- package/fesm2022/masterteam-components-sidebar.mjs.map +1 -1
- package/fesm2022/masterteam-components-statistic-card.mjs +2 -2
- package/fesm2022/masterteam-components-statistic-card.mjs.map +1 -1
- package/fesm2022/masterteam-components-table.mjs +81 -27
- package/fesm2022/masterteam-components-table.mjs.map +1 -1
- package/fesm2022/masterteam-components-tooltip.mjs.map +1 -1
- package/fesm2022/masterteam-components-topbar.mjs +2 -2
- package/fesm2022/masterteam-components-topbar.mjs.map +1 -1
- package/fesm2022/masterteam-components.mjs +100 -262
- package/fesm2022/masterteam-components.mjs.map +1 -1
- package/package.json +11 -10
- package/types/masterteam-components-client-page.d.ts +0 -2
- package/types/masterteam-components-entities.d.ts +76 -11
- package/types/masterteam-components-table.d.ts +12 -18
|
@@ -59,8 +59,6 @@ declare class ClientPage implements OnDestroy {
|
|
|
59
59
|
private readonly desktopSidebarWidth;
|
|
60
60
|
/** Whether the menu section is currently visible */
|
|
61
61
|
readonly showSidebarMenu: _angular_core.Signal<boolean>;
|
|
62
|
-
/** Sidebar gradient respects RTL direction */
|
|
63
|
-
readonly sidebarGradient: _angular_core.Signal<string>;
|
|
64
62
|
/** Sidebar width reacts to collapsed + hover */
|
|
65
63
|
readonly sidebarWidth: _angular_core.Signal<string>;
|
|
66
64
|
/** Whether the current state allows divider dragging */
|
|
@@ -33,7 +33,19 @@ interface EntityUserConfig extends EntityBaseConfig {
|
|
|
33
33
|
interface EntityPercentageConfig extends EntityBaseConfig {
|
|
34
34
|
color?: string;
|
|
35
35
|
}
|
|
36
|
-
|
|
36
|
+
interface LeafLevelSavedConfig {
|
|
37
|
+
/** Position order for this level entity in the preview grid */
|
|
38
|
+
order: number;
|
|
39
|
+
/** Column span (1-24), persisted from drag-resize */
|
|
40
|
+
size?: EntitySize;
|
|
41
|
+
/** Status keys the user has chosen to display */
|
|
42
|
+
selectedStatuses: string[];
|
|
43
|
+
}
|
|
44
|
+
interface EntityLeafDetailsConfig extends EntityBaseConfig {
|
|
45
|
+
/** Per-level display overrides for LeafDetails entities */
|
|
46
|
+
leafLevels?: Record<string, LeafLevelSavedConfig>;
|
|
47
|
+
}
|
|
48
|
+
type EntityConfiguration = EntityBaseConfig | EntityUserConfig | EntityPercentageConfig | EntityLeafDetailsConfig;
|
|
37
49
|
interface EntityStatusValue {
|
|
38
50
|
key: string;
|
|
39
51
|
display: string;
|
|
@@ -62,12 +74,52 @@ interface LeafDetailsStatusSummary {
|
|
|
62
74
|
/** Always 0 in preview/configuration context; populated from runtime fetch */
|
|
63
75
|
count: number;
|
|
64
76
|
}
|
|
77
|
+
interface LeafDetailsCatalogStatusValue {
|
|
78
|
+
key: string;
|
|
79
|
+
display: string;
|
|
80
|
+
description?: string | null;
|
|
81
|
+
color: string | null;
|
|
82
|
+
icon?: string | null;
|
|
83
|
+
order?: number;
|
|
84
|
+
}
|
|
85
|
+
interface LeafDetailsCatalogLevelValue {
|
|
86
|
+
levelId: number;
|
|
87
|
+
levelName: string;
|
|
88
|
+
levelIcon: string;
|
|
89
|
+
statuses: LeafDetailsCatalogStatusValue[];
|
|
90
|
+
}
|
|
65
91
|
interface LeafDetailsEntityValue {
|
|
66
92
|
levelId: number;
|
|
67
93
|
levelName: string;
|
|
68
94
|
levelIcon: string;
|
|
69
95
|
statuses: LeafDetailsStatusSummary[];
|
|
70
96
|
}
|
|
97
|
+
type LeafDetailsEntityCollectionValue = LeafDetailsEntityValue[];
|
|
98
|
+
type LeafDetailsCatalogConfiguration = LeafDetailsCatalogLevelValue[];
|
|
99
|
+
type EntityPropertyConfiguration = Record<string, unknown> | LeafDetailsCatalogConfiguration | null;
|
|
100
|
+
interface LeafDetailsRuntimeStatusDetails {
|
|
101
|
+
key: string;
|
|
102
|
+
display: string;
|
|
103
|
+
color: string | null;
|
|
104
|
+
description?: string | null;
|
|
105
|
+
icon?: string | null;
|
|
106
|
+
order?: number;
|
|
107
|
+
}
|
|
108
|
+
interface LeafDetailsRuntimeStatusCount {
|
|
109
|
+
details: LeafDetailsRuntimeStatusDetails;
|
|
110
|
+
count: number;
|
|
111
|
+
}
|
|
112
|
+
interface LeafDetailsRuntimeChildSchema {
|
|
113
|
+
levelId: number;
|
|
114
|
+
levelName: string;
|
|
115
|
+
levelIcon: string;
|
|
116
|
+
totalCount?: number;
|
|
117
|
+
statuses: LeafDetailsRuntimeStatusCount[];
|
|
118
|
+
}
|
|
119
|
+
interface LeafDetailsRuntimeValue {
|
|
120
|
+
totalCount?: number;
|
|
121
|
+
childSchemas: LeafDetailsRuntimeChildSchema[];
|
|
122
|
+
}
|
|
71
123
|
interface EntityAttachmentItemValue {
|
|
72
124
|
id?: string;
|
|
73
125
|
name?: string;
|
|
@@ -85,7 +137,8 @@ interface EntityData {
|
|
|
85
137
|
name?: string;
|
|
86
138
|
rawValue?: string;
|
|
87
139
|
order?: number;
|
|
88
|
-
|
|
140
|
+
propertyConfiguration?: EntityPropertyConfiguration;
|
|
141
|
+
value: string | EntityStatusValue | EntityUserValue | EntityLookupValue | EntityAttachmentValue | LeafDetailsEntityValue | LeafDetailsEntityCollectionValue | LeafDetailsRuntimeValue;
|
|
89
142
|
viewType: EntityViewType;
|
|
90
143
|
type?: string;
|
|
91
144
|
configuration?: EntityConfiguration;
|
|
@@ -100,13 +153,15 @@ interface EntityResizeEvent {
|
|
|
100
153
|
type EntityFieldGap = 'compact' | 'normal' | 'relaxed';
|
|
101
154
|
declare class EntityField {
|
|
102
155
|
readonly label: _angular_core.InputSignal<string>;
|
|
156
|
+
readonly labelIconName: _angular_core.InputSignal<string | null>;
|
|
103
157
|
readonly configuration: _angular_core.InputSignal<EntityConfiguration | null | undefined>;
|
|
104
158
|
readonly gap: _angular_core.InputSignal<EntityFieldGap>;
|
|
105
159
|
readonly hideLabel: _angular_core.Signal<boolean>;
|
|
106
160
|
readonly labelPosition: _angular_core.Signal<_masterteam_components_entities.EntityLabelPosition>;
|
|
161
|
+
readonly labelContainerClass: _angular_core.Signal<string>;
|
|
107
162
|
readonly containerClass: _angular_core.Signal<string>;
|
|
108
163
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EntityField, never>;
|
|
109
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EntityField, "mt-entity-field", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "configuration": { "alias": "configuration"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
164
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EntityField, "mt-entity-field", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "labelIconName": { "alias": "labelIconName"; "required": false; "isSignal": true; }; "configuration": { "alias": "configuration"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
110
165
|
}
|
|
111
166
|
|
|
112
167
|
declare class EntityText {
|
|
@@ -296,13 +351,23 @@ declare class EntityLeafDetails {
|
|
|
296
351
|
readonly leafValue: _angular_core.Signal<LeafDetailsEntityValue | null>;
|
|
297
352
|
/** Label shown below the badges: "Level Name (total)" */
|
|
298
353
|
readonly labelWithTotal: _angular_core.Signal<string>;
|
|
299
|
-
|
|
300
|
-
|
|
354
|
+
readonly labelIcon: _angular_core.Signal<string | null>;
|
|
355
|
+
/** Default LeafDetails labels to top, while still honoring saved configuration */
|
|
356
|
+
readonly fieldConfig: _angular_core.Signal<EntityBaseConfig>;
|
|
301
357
|
statusColor(color: string | null): string;
|
|
302
358
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EntityLeafDetails, never>;
|
|
303
359
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EntityLeafDetails, "mt-entity-leaf-details", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
304
360
|
}
|
|
305
361
|
|
|
362
|
+
declare const LEAF_DETAILS_KEY_SEPARATOR = "::leaflevel::";
|
|
363
|
+
declare function isLeafDetailsValue(value: unknown): value is LeafDetailsEntityValue;
|
|
364
|
+
declare function isLeafDetailsCollectionValue(value: unknown): value is LeafDetailsEntityCollectionValue;
|
|
365
|
+
declare function isLeafDetailsCatalogConfiguration(value: unknown): value is LeafDetailsCatalogConfiguration;
|
|
366
|
+
declare function isLeafDetailsRuntimeValue(value: unknown): value is LeafDetailsRuntimeValue;
|
|
367
|
+
declare function isLeafDetailsSyntheticKey(key?: string | null): boolean;
|
|
368
|
+
declare function expandLeafDetailsEntity(entity: EntityData): EntityData[];
|
|
369
|
+
declare function buildDisplayEntities(entities: EntityData[]): EntityData[];
|
|
370
|
+
|
|
306
371
|
declare class EntityPreview {
|
|
307
372
|
/** Single entity data to display */
|
|
308
373
|
readonly data: _angular_core.InputSignal<EntityData>;
|
|
@@ -316,8 +381,8 @@ declare class EntitiesPreview {
|
|
|
316
381
|
/** Array of entity data to display */
|
|
317
382
|
readonly entities: _angular_core.InputSignal<EntityData[]>;
|
|
318
383
|
readonly attachmentShape: _angular_core.InputSignal<"compact" | "default">;
|
|
319
|
-
/** Entities sorted by order */
|
|
320
|
-
readonly
|
|
384
|
+
/** Entities expanded and sorted by order */
|
|
385
|
+
readonly displayEntities: _angular_core.Signal<EntityData[]>;
|
|
321
386
|
/** Returns the grid-column span for a given entity size (1-24) */
|
|
322
387
|
getColSpan(entity: EntityData): string;
|
|
323
388
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EntitiesPreview, never>;
|
|
@@ -381,8 +446,8 @@ declare class EntitiesManage extends EntitiesResizeBase {
|
|
|
381
446
|
readonly entitiesReordered: _angular_core.OutputEmitterRef<EntityData[]>;
|
|
382
447
|
/** Emits when an entity cell is clicked (for opening edit drawer) */
|
|
383
448
|
readonly entityClicked: _angular_core.OutputEmitterRef<EntityData>;
|
|
384
|
-
/** Entities sorted by their order
|
|
385
|
-
readonly
|
|
449
|
+
/** Entities expanded and sorted by their configured order */
|
|
450
|
+
readonly displayEntities: _angular_core.Signal<EntityData[]>;
|
|
386
451
|
/** Returns the grid-column span for a given entity size (1-24) */
|
|
387
452
|
getColSpan(entity: EntityData): string;
|
|
388
453
|
/** Handle drag-drop reorder */
|
|
@@ -392,5 +457,5 @@ declare class EntitiesManage extends EntitiesResizeBase {
|
|
|
392
457
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EntitiesManage, "mt-entities-manage", never, { "entities": { "alias": "entities"; "required": true; "isSignal": true; }; }, { "entities": "entitiesChange"; "entitiesReordered": "entitiesReordered"; "entityClicked": "entityClicked"; }, never, never, true, never>;
|
|
393
458
|
}
|
|
394
459
|
|
|
395
|
-
export { EntitiesManage, EntitiesPreview, EntitiesResizeBase, EntityAttachment, EntityCheckbox, EntityCurrency, EntityDate, EntityField, EntityLeafDetails, EntityLongText, EntityLookup, EntityPercentage, EntityPreview, EntityStatus, EntityText, EntityUser };
|
|
396
|
-
export type { EntityAttachmentItemValue, EntityAttachmentValue, EntityBaseConfig, EntityConfiguration, EntityData, EntityLabelPosition, EntityLookupValue, EntityPercentageConfig, EntityResizeEvent, EntitySize, EntityStatusValue, EntityUserConfig, EntityUserValue, EntityViewType, LeafDetailsEntityValue, LeafDetailsStatusSummary };
|
|
460
|
+
export { EntitiesManage, EntitiesPreview, EntitiesResizeBase, EntityAttachment, EntityCheckbox, EntityCurrency, EntityDate, EntityField, EntityLeafDetails, EntityLongText, EntityLookup, EntityPercentage, EntityPreview, EntityStatus, EntityText, EntityUser, LEAF_DETAILS_KEY_SEPARATOR, buildDisplayEntities, expandLeafDetailsEntity, isLeafDetailsCatalogConfiguration, isLeafDetailsCollectionValue, isLeafDetailsRuntimeValue, isLeafDetailsSyntheticKey, isLeafDetailsValue };
|
|
461
|
+
export type { EntityAttachmentItemValue, EntityAttachmentValue, EntityBaseConfig, EntityConfiguration, EntityData, EntityLabelPosition, EntityLeafDetailsConfig, EntityLookupValue, EntityPercentageConfig, EntityPropertyConfiguration, EntityResizeEvent, EntitySize, EntityStatusValue, EntityUserConfig, EntityUserValue, EntityViewType, LeafDetailsCatalogConfiguration, LeafDetailsCatalogLevelValue, LeafDetailsCatalogStatusValue, LeafDetailsEntityCollectionValue, LeafDetailsEntityValue, LeafDetailsRuntimeChildSchema, LeafDetailsRuntimeStatusCount, LeafDetailsRuntimeStatusDetails, LeafDetailsRuntimeValue, LeafDetailsStatusSummary, LeafLevelSavedConfig };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as _masterteam_components_table from '@masterteam/components/table';
|
|
2
1
|
import * as _angular_core from '@angular/core';
|
|
3
2
|
import { TemplateRef } from '@angular/core';
|
|
4
3
|
import { MTIcon } from '@masterteam/icons';
|
|
5
4
|
import { ConfirmationConfig, ConfirmationService } from '@masterteam/components/confirmation';
|
|
6
|
-
import {
|
|
5
|
+
import { TablePageEvent } from 'primeng/table';
|
|
7
6
|
import { EntityData } from '@masterteam/components/entities';
|
|
7
|
+
import * as _masterteam_components_table from '@masterteam/components/table';
|
|
8
8
|
import { ControlValueAccessor } from '@angular/forms';
|
|
9
9
|
|
|
10
10
|
/**
|
|
@@ -86,6 +86,7 @@ interface TableAction {
|
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
declare class Table {
|
|
89
|
+
private static readonly LOADING_COLUMN_COUNT;
|
|
89
90
|
selectionChange: _angular_core.OutputEmitterRef<any[]>;
|
|
90
91
|
cellChange: _angular_core.OutputEmitterRef<CellChangeEvent>;
|
|
91
92
|
lazyLoad: _angular_core.OutputEmitterRef<any>;
|
|
@@ -117,6 +118,7 @@ declare class Table {
|
|
|
117
118
|
exportable: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
118
119
|
exportFilename: _angular_core.InputSignal<string>;
|
|
119
120
|
actionShape: _angular_core.InputSignal<TableActionShape>;
|
|
121
|
+
tableLayout: _angular_core.InputSignal<"fixed" | "auto">;
|
|
120
122
|
tabs: _angular_core.InputSignal<any[] | undefined>;
|
|
121
123
|
tabsOptionLabel: _angular_core.InputSignal<string | undefined>;
|
|
122
124
|
tabsOptionValue: _angular_core.InputSignal<string | undefined>;
|
|
@@ -126,8 +128,8 @@ declare class Table {
|
|
|
126
128
|
captionStartContent: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
127
129
|
captionEndContent: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
128
130
|
emptyContent: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
129
|
-
protected tableRef: _angular_core.Signal<Table$1<any> | undefined>;
|
|
130
131
|
paginatorPosition: _angular_core.InputSignal<"end" | "start" | "center">;
|
|
132
|
+
alwaysShowPaginator: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
131
133
|
rowsPerPageOptions: _angular_core.InputSignal<number[]>;
|
|
132
134
|
pageSize: _angular_core.ModelSignal<number>;
|
|
133
135
|
currentPage: _angular_core.ModelSignal<number>;
|
|
@@ -140,21 +142,9 @@ declare class Table {
|
|
|
140
142
|
protected transientSelectedRows: _angular_core.WritableSignal<Set<any>>;
|
|
141
143
|
private readonly hydratedStorageKey;
|
|
142
144
|
private readonly storageHydrated;
|
|
143
|
-
protected exportColumns: _angular_core.Signal<{
|
|
144
|
-
field: string;
|
|
145
|
-
header: string;
|
|
146
|
-
key: string;
|
|
147
|
-
label: string;
|
|
148
|
-
type?: _masterteam_components_table.ColumnType;
|
|
149
|
-
customCellTpl?: TemplateRef<any>;
|
|
150
|
-
filterConfig?: _masterteam_components_table.FilterConfig;
|
|
151
|
-
statusMap?: Record<string, _masterteam_components_table.TableStatusMapValue>;
|
|
152
|
-
sortable?: boolean;
|
|
153
|
-
readonly?: boolean;
|
|
154
|
-
width?: string;
|
|
155
|
-
}[]>;
|
|
156
145
|
protected activeFilterCount: _angular_core.Signal<number>;
|
|
157
146
|
protected filteredData: _angular_core.Signal<any[]>;
|
|
147
|
+
protected renderedColumns: _angular_core.Signal<ColumnDef[]>;
|
|
158
148
|
protected displayData: _angular_core.Signal<any[]>;
|
|
159
149
|
protected totalRecords: _angular_core.Signal<number>;
|
|
160
150
|
protected paginatedData: _angular_core.Signal<any[]>;
|
|
@@ -183,7 +173,7 @@ declare class Table {
|
|
|
183
173
|
onRowClick(event: MouseEvent, row: any): void;
|
|
184
174
|
protected updatePagingFromEvent(event: any): void;
|
|
185
175
|
protected emitLazyLoad(event: any): void;
|
|
186
|
-
|
|
176
|
+
exportExcel(): void;
|
|
187
177
|
rowAction(event: Event, action: TableAction, row: any): void;
|
|
188
178
|
private buildUserEntityData;
|
|
189
179
|
private buildStatusEntityData;
|
|
@@ -210,11 +200,14 @@ declare class Table {
|
|
|
210
200
|
private getSortValue;
|
|
211
201
|
private getColumnResolvedValue;
|
|
212
202
|
private buildExportRows;
|
|
203
|
+
private buildExcelRows;
|
|
213
204
|
protected isRowSelected(row: Record<string, unknown>): boolean;
|
|
205
|
+
protected getColumnMinWidth(column: ColumnDef): string | null;
|
|
214
206
|
private emitSelectionChange;
|
|
215
207
|
private getSelectedRows;
|
|
216
208
|
private getRowSelectionKey;
|
|
217
209
|
private getNormalizedStorageKey;
|
|
210
|
+
private normalizeExportFilename;
|
|
218
211
|
private getStorage;
|
|
219
212
|
private buildPersistedState;
|
|
220
213
|
private applyPersistedState;
|
|
@@ -222,9 +215,10 @@ declare class Table {
|
|
|
222
215
|
private readPersistedState;
|
|
223
216
|
private writePersistedState;
|
|
224
217
|
private toPositiveInteger;
|
|
218
|
+
private normalizePersistedPageSize;
|
|
225
219
|
private toNonNegativeInteger;
|
|
226
220
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Table, never>;
|
|
227
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Table, "mt-table", never, { "filters": { "alias": "filters"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "rowActions": { "alias": "rowActions"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "showGridlines": { "alias": "showGridlines"; "required": false; "isSignal": true; }; "stripedRows": { "alias": "stripedRows"; "required": false; "isSignal": true; }; "selectableRows": { "alias": "selectableRows"; "required": false; "isSignal": true; }; "clickableRows": { "alias": "clickableRows"; "required": false; "isSignal": true; }; "generalSearch": { "alias": "generalSearch"; "required": false; "isSignal": true; }; "lazyLocalSearch": { "alias": "lazyLocalSearch"; "required": false; "isSignal": true; }; "showFilters": { "alias": "showFilters"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "updating": { "alias": "updating"; "required": false; "isSignal": true; }; "lazy": { "alias": "lazy"; "required": false; "isSignal": true; }; "lazyLocalSort": { "alias": "lazyLocalSort"; "required": false; "isSignal": true; }; "lazyTotalRecords": { "alias": "lazyTotalRecords"; "required": false; "isSignal": true; }; "reorderableColumns": { "alias": "reorderableColumns"; "required": false; "isSignal": true; }; "reorderableRows": { "alias": "reorderableRows"; "required": false; "isSignal": true; }; "dataKey": { "alias": "dataKey"; "required": false; "isSignal": true; }; "storageKey": { "alias": "storageKey"; "required": false; "isSignal": true; }; "storageMode": { "alias": "storageMode"; "required": false; "isSignal": true; }; "exportable": { "alias": "exportable"; "required": false; "isSignal": true; }; "exportFilename": { "alias": "exportFilename"; "required": false; "isSignal": true; }; "actionShape": { "alias": "actionShape"; "required": false; "isSignal": true; }; "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; "tabsOptionLabel": { "alias": "tabsOptionLabel"; "required": false; "isSignal": true; }; "tabsOptionValue": { "alias": "tabsOptionValue"; "required": false; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "paginatorPosition": { "alias": "paginatorPosition"; "required": false; "isSignal": true; }; "rowsPerPageOptions": { "alias": "rowsPerPageOptions"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "currentPage": { "alias": "currentPage"; "required": false; "isSignal": true; }; "first": { "alias": "first"; "required": false; "isSignal": true; }; "filterTerm": { "alias": "filterTerm"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; "cellChange": "cellChange"; "lazyLoad": "lazyLoad"; "columnReorder": "columnReorder"; "rowReorder": "rowReorder"; "rowClick": "rowClick"; "filters": "filtersChange"; "activeTab": "activeTabChange"; "onTabChange": "onTabChange"; "pageSize": "pageSizeChange"; "currentPage": "currentPageChange"; "first": "firstChange"; "filterTerm": "filterTermChange"; }, ["captionStartContent", "captionEndContent", "emptyContent"], never, true, never>;
|
|
221
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Table, "mt-table", never, { "filters": { "alias": "filters"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "rowActions": { "alias": "rowActions"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "showGridlines": { "alias": "showGridlines"; "required": false; "isSignal": true; }; "stripedRows": { "alias": "stripedRows"; "required": false; "isSignal": true; }; "selectableRows": { "alias": "selectableRows"; "required": false; "isSignal": true; }; "clickableRows": { "alias": "clickableRows"; "required": false; "isSignal": true; }; "generalSearch": { "alias": "generalSearch"; "required": false; "isSignal": true; }; "lazyLocalSearch": { "alias": "lazyLocalSearch"; "required": false; "isSignal": true; }; "showFilters": { "alias": "showFilters"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "updating": { "alias": "updating"; "required": false; "isSignal": true; }; "lazy": { "alias": "lazy"; "required": false; "isSignal": true; }; "lazyLocalSort": { "alias": "lazyLocalSort"; "required": false; "isSignal": true; }; "lazyTotalRecords": { "alias": "lazyTotalRecords"; "required": false; "isSignal": true; }; "reorderableColumns": { "alias": "reorderableColumns"; "required": false; "isSignal": true; }; "reorderableRows": { "alias": "reorderableRows"; "required": false; "isSignal": true; }; "dataKey": { "alias": "dataKey"; "required": false; "isSignal": true; }; "storageKey": { "alias": "storageKey"; "required": false; "isSignal": true; }; "storageMode": { "alias": "storageMode"; "required": false; "isSignal": true; }; "exportable": { "alias": "exportable"; "required": false; "isSignal": true; }; "exportFilename": { "alias": "exportFilename"; "required": false; "isSignal": true; }; "actionShape": { "alias": "actionShape"; "required": false; "isSignal": true; }; "tableLayout": { "alias": "tableLayout"; "required": false; "isSignal": true; }; "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; "tabsOptionLabel": { "alias": "tabsOptionLabel"; "required": false; "isSignal": true; }; "tabsOptionValue": { "alias": "tabsOptionValue"; "required": false; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "paginatorPosition": { "alias": "paginatorPosition"; "required": false; "isSignal": true; }; "alwaysShowPaginator": { "alias": "alwaysShowPaginator"; "required": false; "isSignal": true; }; "rowsPerPageOptions": { "alias": "rowsPerPageOptions"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "currentPage": { "alias": "currentPage"; "required": false; "isSignal": true; }; "first": { "alias": "first"; "required": false; "isSignal": true; }; "filterTerm": { "alias": "filterTerm"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; "cellChange": "cellChange"; "lazyLoad": "lazyLoad"; "columnReorder": "columnReorder"; "rowReorder": "rowReorder"; "rowClick": "rowClick"; "filters": "filtersChange"; "activeTab": "activeTabChange"; "onTabChange": "onTabChange"; "pageSize": "pageSizeChange"; "currentPage": "currentPageChange"; "first": "firstChange"; "filterTerm": "filterTermChange"; }, ["captionStartContent", "captionEndContent", "emptyContent"], never, true, never>;
|
|
228
222
|
}
|
|
229
223
|
|
|
230
224
|
declare class TableFilter implements ControlValueAccessor {
|