@acorex/platform 21.0.0-next.72 → 21.0.0-next.73
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/contracts/README.md +3 -0
- package/fesm2022/acorex-platform-auth.mjs +72 -58
- package/fesm2022/acorex-platform-auth.mjs.map +1 -1
- package/fesm2022/acorex-platform-common.mjs +12 -6
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-contracts.mjs +10 -0
- package/fesm2022/acorex-platform-contracts.mjs.map +1 -0
- package/fesm2022/acorex-platform-core.mjs +15 -12
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +3 -0
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +185 -8
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +64 -44
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +11 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +279 -108
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default.mjs +4 -4
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-shared-settings.provider-BjuzSe0T.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-shared.mjs +3 -0
- package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +57 -54
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/package.json +5 -1
- package/types/acorex-platform-auth.d.ts +29 -22
- package/types/acorex-platform-common.d.ts +7 -6
- package/types/acorex-platform-contracts.d.ts +39 -0
- package/types/acorex-platform-core.d.ts +8 -8
- package/types/acorex-platform-layout-components.d.ts +77 -7
- package/types/acorex-platform-layout-entity.d.ts +185 -175
- package/types/acorex-platform-layout-widget-core.d.ts +3 -1
- package/types/acorex-platform-layout-widgets.d.ts +45 -45
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _acorex_platform_core from '@acorex/platform/core';
|
|
2
|
-
import { AXPExecuteCommandResult, AXPMetaData, AXPDataSourceDefinitionProvider, AXPDataSourceDefinition, AXPGridLayoutOptions, AXPMultiLanguageString, AXPBreadcrumbItem, AXPFilterQuery, AXPFilterDefinition, AXPExecuteCommand,
|
|
2
|
+
import { AXPExecuteCommandResult, AXPQueryRequest, AXPUserReference, AXPMetaData, AXPDataSourceDefinitionProvider, AXPDataSourceDefinition, AXPGridLayoutOptions, AXPMultiLanguageString, AXPBreadcrumbItem, AXPFilterQuery, AXPFilterDefinition, AXPExecuteCommand, AXPPagedListResult, AXPCategoryEntity as AXPCategoryEntity$1, AXPEntityOp, AXPMiddlewareErrorResponse, AXHighlightService, AXPExpression, AXPColumnQuery, AXPSortDefinition, AXPDeviceService, AXPBroadcastEventService, AXPActionMenuItem, AXPFileListItem, AXPContextChangeEvent } from '@acorex/platform/core';
|
|
3
3
|
import { AXPCommand, AXPQueryExecutor, AXPCommandService, AXPQuery } from '@acorex/platform/runtime';
|
|
4
4
|
import * as _angular_core from '@angular/core';
|
|
5
5
|
import { ElementRef, InjectionToken, Injector, Type, EnvironmentProviders, OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
@@ -152,6 +152,183 @@ declare class AXPOpenEntityDetailsCommand implements AXPCommand<AXPOpenEntityDet
|
|
|
152
152
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPOpenEntityDetailsCommand>;
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
+
/** Platform entity layout datasource registry names. */
|
|
156
|
+
declare const AXPEntityDataSourceKeys: {
|
|
157
|
+
readonly Entities: "entities";
|
|
158
|
+
};
|
|
159
|
+
|
|
160
|
+
declare const AXPEntityEventsKeys: {
|
|
161
|
+
REFRESH_LAYOUT: string;
|
|
162
|
+
REFRESH_DATA: string;
|
|
163
|
+
};
|
|
164
|
+
|
|
165
|
+
type AXPEntityAggregateReducerType = 'count' | 'sum' | 'min' | 'max' | 'avg';
|
|
166
|
+
interface AXPEntityAggregateMeasure {
|
|
167
|
+
reducer: AXPEntityAggregateReducerType;
|
|
168
|
+
/** Required for sum, min, max, and avg. Ignored for count (rows per group). */
|
|
169
|
+
field?: string;
|
|
170
|
+
/** Result column name; defaults are derived from the reducer and field. */
|
|
171
|
+
alias?: string;
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* Aggregate stored rows after the same filter/sort pipeline as {@link AXPQueryRequest}.
|
|
175
|
+
* Group keys use dotted field paths (same as lodash-style getters).
|
|
176
|
+
*/
|
|
177
|
+
interface AXPEntityAggregateRequest extends Pick<AXPQueryRequest, 'filter' | 'sort'> {
|
|
178
|
+
groupBy: string[];
|
|
179
|
+
measures: AXPEntityAggregateMeasure[];
|
|
180
|
+
}
|
|
181
|
+
interface AXPEntityAggregateResult {
|
|
182
|
+
rows: Record<string, unknown>[];
|
|
183
|
+
}
|
|
184
|
+
interface AXPEntityQueryAllOptions {
|
|
185
|
+
/**
|
|
186
|
+
* Page size for backends that read page-by-page (HTTP API).
|
|
187
|
+
* In-memory backends load the filtered set once and ignore this.
|
|
188
|
+
*/
|
|
189
|
+
pageSize?: number;
|
|
190
|
+
/** Maximum rows to return or scan (safety cap). */
|
|
191
|
+
maxRows?: number;
|
|
192
|
+
}
|
|
193
|
+
interface AXPEntityQueryAllResult<T> {
|
|
194
|
+
items: T[];
|
|
195
|
+
/** Row count matching filter/sort before applying maxRows. */
|
|
196
|
+
total: number;
|
|
197
|
+
/** True when maxRows prevented returning every matching row. */
|
|
198
|
+
truncated: boolean;
|
|
199
|
+
}
|
|
200
|
+
interface AXPEntityAggregateOptions {
|
|
201
|
+
/** Maximum rows to load for aggregation when the backend pages remotely (default 50_000). */
|
|
202
|
+
maxRows?: number;
|
|
203
|
+
/** Page size for remote paging during aggregate (default 500). */
|
|
204
|
+
pageSize?: number;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* One audit point in time for a record lifecycle event.
|
|
209
|
+
*
|
|
210
|
+
* Used inside {@link AXPRecordAuditInfo} (`created`, `updated`, `deleted`).
|
|
211
|
+
* Backends and mock middleware typically set `at` and `by`; `reason` and `source`
|
|
212
|
+
* (for example `api`, `system`, `import`) are optional diagnostic fields.
|
|
213
|
+
*/
|
|
214
|
+
interface AXPAuditEvent {
|
|
215
|
+
at?: Date;
|
|
216
|
+
by?: AXPUserReference;
|
|
217
|
+
/** Optional business or technical reason for the event. */
|
|
218
|
+
reason?: string;
|
|
219
|
+
/** Optional origin of the change (for example `api`, `system`, `import`). */
|
|
220
|
+
source?: string;
|
|
221
|
+
}
|
|
222
|
+
/**
|
|
223
|
+
* Aggregated audit trail for a persisted row.
|
|
224
|
+
*
|
|
225
|
+
* Filled by APIs or connectivity mock middleware when creating, updating, or
|
|
226
|
+
* soft-deleting records. UI surfaces may show these via the history plugin or
|
|
227
|
+
* custom columns. Version snapshot pipelines often **omit** this object from
|
|
228
|
+
* stored snapshots while still applying it to live payloads.
|
|
229
|
+
*
|
|
230
|
+
* @remarks Fields are optional today; callers should tolerate partial data.
|
|
231
|
+
*/
|
|
232
|
+
interface AXPRecordAuditInfo {
|
|
233
|
+
created?: AXPAuditEvent;
|
|
234
|
+
updated?: AXPAuditEvent;
|
|
235
|
+
deleted?: AXPAuditEvent;
|
|
236
|
+
}
|
|
237
|
+
/**
|
|
238
|
+
* Cross-cutting flags that are not part of the domain schema but affect how a
|
|
239
|
+
* row is shown or edited (visibility, built-in/system rows, immutability).
|
|
240
|
+
*
|
|
241
|
+
* Module entity models sometimes expose only this slice (for example
|
|
242
|
+
* `stateInfo` on business units) when the rest of the row uses a bespoke shape.
|
|
243
|
+
*
|
|
244
|
+
* @remarks Entity list/detail flows should honor these flags where applicable.
|
|
245
|
+
*/
|
|
246
|
+
interface AXPRecordStateInfo {
|
|
247
|
+
isHidden?: boolean;
|
|
248
|
+
isSystem?: boolean;
|
|
249
|
+
isImmutable?: boolean;
|
|
250
|
+
/** @deprecated Prefer explicit domain modeling over this flag. */
|
|
251
|
+
isDistributed?: boolean;
|
|
252
|
+
}
|
|
253
|
+
/**
|
|
254
|
+
* Tenancy and actor scope for a row in a multi-tenant application.
|
|
255
|
+
*
|
|
256
|
+
* Used to associate a record with a tenant, application instance, or owning
|
|
257
|
+
* user when the API returns ownership metadata alongside domain fields.
|
|
258
|
+
*/
|
|
259
|
+
interface AXPRecordOwnershipInfo {
|
|
260
|
+
tenantId?: string;
|
|
261
|
+
applicationId?: string;
|
|
262
|
+
userId?: string;
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
* Workflow linkage for a domain record (set when a run is started or bound).
|
|
266
|
+
*
|
|
267
|
+
* Populated by workflow engine, middleware, or integration — not declared as
|
|
268
|
+
* entity definition properties. Entities with the `workflow` plugin may carry
|
|
269
|
+
* this object when a {@link WorkflowManagement.WorkflowInstance} drives the row.
|
|
270
|
+
*/
|
|
271
|
+
interface AXPRecordWorkflowInfo {
|
|
272
|
+
/** Workflow instance id for this record's active or last run. */
|
|
273
|
+
instanceId?: string | null;
|
|
274
|
+
/** Logical workflow definition id (same as WorkflowInstance.definitionId). */
|
|
275
|
+
definitionId?: string | null;
|
|
276
|
+
/** Correlation id for idempotent start and related-run lookup (same as WorkflowInstance.correlationId). */
|
|
277
|
+
correlationId?: string | null;
|
|
278
|
+
/** When set, pins the run to a workflow definition version; omit for current default. */
|
|
279
|
+
pinnedVersion?: number | null;
|
|
280
|
+
}
|
|
281
|
+
/** Entity query filter field for {@link AXPRecordWorkflowInfo.instanceId}. */
|
|
282
|
+
declare const AXP_RECORD_WORKFLOW_INFO_INSTANCE_ID_FIELD: "workflowInfo.instanceId";
|
|
283
|
+
/** Entity query filter field for {@link AXPRecordWorkflowInfo.correlationId}. */
|
|
284
|
+
declare const AXP_RECORD_WORKFLOW_INFO_CORRELATION_ID_FIELD: "workflowInfo.correlationId";
|
|
285
|
+
/** Entity query filter field for {@link AXPRecordWorkflowInfo.definitionId}. */
|
|
286
|
+
declare const AXP_RECORD_WORKFLOW_INFO_DEFINITION_ID_FIELD: "workflowInfo.definitionId";
|
|
287
|
+
/** Returns a trimmed workflow instance id from a record, if present. */
|
|
288
|
+
declare function getRecordWorkflowInstanceId(record: {
|
|
289
|
+
workflowInfo?: AXPRecordWorkflowInfo | null;
|
|
290
|
+
} | null | undefined): string | null;
|
|
291
|
+
/** Returns a trimmed workflow correlation id from a record, if present. */
|
|
292
|
+
declare function getRecordWorkflowCorrelationId(record: {
|
|
293
|
+
workflowInfo?: AXPRecordWorkflowInfo | null;
|
|
294
|
+
} | null | undefined): string | null;
|
|
295
|
+
/** Builds canonical workflow metadata for a domain record (engine / middleware). */
|
|
296
|
+
declare function buildAXPRecordWorkflowInfo(params: {
|
|
297
|
+
instanceId: string;
|
|
298
|
+
definitionId?: string | null;
|
|
299
|
+
correlationId?: string | null;
|
|
300
|
+
pinnedVersion?: number | null;
|
|
301
|
+
}): AXPRecordWorkflowInfo;
|
|
302
|
+
/**
|
|
303
|
+
* Base shape for **entity row** TypeScript models across modules: a stable
|
|
304
|
+
* identifier plus optional platform metadata.
|
|
305
|
+
*
|
|
306
|
+
* Module-specific interfaces extend this with domain properties
|
|
307
|
+
* (`extends AXPEntityModel<string>` / `AXPEntityModel<Id>`) while reusing
|
|
308
|
+
* `auditInfo`, `stateInfo`, `ownershipInfo`, and `workflowInfo` when the backend sends them.
|
|
309
|
+
*/
|
|
310
|
+
interface AXPEntityModel<Id> {
|
|
311
|
+
id: Id;
|
|
312
|
+
auditInfo?: AXPRecordAuditInfo;
|
|
313
|
+
stateInfo?: AXPRecordStateInfo;
|
|
314
|
+
ownershipInfo?: AXPRecordOwnershipInfo;
|
|
315
|
+
workflowInfo?: AXPRecordWorkflowInfo;
|
|
316
|
+
}
|
|
317
|
+
interface AXPEntityCreateDto {
|
|
318
|
+
}
|
|
319
|
+
interface AXPEntityUpdateDto<Id> {
|
|
320
|
+
id: Id;
|
|
321
|
+
}
|
|
322
|
+
interface AXPEntityOutputDto<Id> {
|
|
323
|
+
id: Id;
|
|
324
|
+
}
|
|
325
|
+
interface AXPEntityDetailDto<Id> extends AXPEntityOutputDto<Id> {
|
|
326
|
+
}
|
|
327
|
+
interface AXPEntityListItemDto<Id> extends AXPEntityOutputDto<Id> {
|
|
328
|
+
}
|
|
329
|
+
interface AXPMockDto<Id> extends AXPEntityModel<Id> {
|
|
330
|
+
}
|
|
331
|
+
|
|
155
332
|
declare class AXPEntityDetailPopoverComponent {
|
|
156
333
|
private readonly commandService;
|
|
157
334
|
private readonly queryService;
|
|
@@ -431,11 +608,6 @@ declare class AXPEntityDetailListViewModel {
|
|
|
431
608
|
getSecondaryActions(): Promise<AXPEntityCommandTriggerViewModel[]>;
|
|
432
609
|
}
|
|
433
610
|
|
|
434
|
-
declare const AXPEntityEventsKeys: {
|
|
435
|
-
REFRESH_LAYOUT: string;
|
|
436
|
-
REFRESH_DATA: string;
|
|
437
|
-
};
|
|
438
|
-
|
|
439
611
|
/**
|
|
440
612
|
* Entity Event Dispatcher - A wrapper for entity-specific events
|
|
441
613
|
* Handles pattern-based dispatching for entity operations with wildcard support
|
|
@@ -1284,48 +1456,6 @@ declare class AXPEntityDefinitionRegistryService {
|
|
|
1284
1456
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPEntityDefinitionRegistryService>;
|
|
1285
1457
|
}
|
|
1286
1458
|
|
|
1287
|
-
type AXPEntityAggregateReducerType = 'count' | 'sum' | 'min' | 'max' | 'avg';
|
|
1288
|
-
interface AXPEntityAggregateMeasure {
|
|
1289
|
-
reducer: AXPEntityAggregateReducerType;
|
|
1290
|
-
/** Required for sum, min, max, and avg. Ignored for count (rows per group). */
|
|
1291
|
-
field?: string;
|
|
1292
|
-
/** Result column name; defaults are derived from the reducer and field. */
|
|
1293
|
-
alias?: string;
|
|
1294
|
-
}
|
|
1295
|
-
/**
|
|
1296
|
-
* Aggregate stored rows after the same filter/sort pipeline as {@link AXPQueryRequest}.
|
|
1297
|
-
* Group keys use dotted field paths (same as lodash-style getters).
|
|
1298
|
-
*/
|
|
1299
|
-
interface AXPEntityAggregateRequest extends Pick<AXPQueryRequest, 'filter' | 'sort'> {
|
|
1300
|
-
groupBy: string[];
|
|
1301
|
-
measures: AXPEntityAggregateMeasure[];
|
|
1302
|
-
}
|
|
1303
|
-
interface AXPEntityAggregateResult {
|
|
1304
|
-
rows: Record<string, unknown>[];
|
|
1305
|
-
}
|
|
1306
|
-
interface AXPEntityQueryAllOptions {
|
|
1307
|
-
/**
|
|
1308
|
-
* Page size for backends that read page-by-page (HTTP API).
|
|
1309
|
-
* In-memory backends load the filtered set once and ignore this.
|
|
1310
|
-
*/
|
|
1311
|
-
pageSize?: number;
|
|
1312
|
-
/** Maximum rows to return or scan (safety cap). */
|
|
1313
|
-
maxRows?: number;
|
|
1314
|
-
}
|
|
1315
|
-
interface AXPEntityQueryAllResult<T> {
|
|
1316
|
-
items: T[];
|
|
1317
|
-
/** Row count matching filter/sort before applying maxRows. */
|
|
1318
|
-
total: number;
|
|
1319
|
-
/** True when maxRows prevented returning every matching row. */
|
|
1320
|
-
truncated: boolean;
|
|
1321
|
-
}
|
|
1322
|
-
interface AXPEntityAggregateOptions {
|
|
1323
|
-
/** Maximum rows to load for aggregation when the backend pages remotely (default 50_000). */
|
|
1324
|
-
maxRows?: number;
|
|
1325
|
-
/** Page size for remote paging during aggregate (default 500). */
|
|
1326
|
-
pageSize?: number;
|
|
1327
|
-
}
|
|
1328
|
-
|
|
1329
1459
|
/**
|
|
1330
1460
|
* Pure aggregation over already-filtered plain rows (e.g. outputs of {@link filterSortEntityRows}).
|
|
1331
1461
|
*/
|
|
@@ -1355,131 +1485,6 @@ declare function filterSortEntityRows<T = unknown>(entityName: string, request:
|
|
|
1355
1485
|
*/
|
|
1356
1486
|
declare function runEntityQuery<T = unknown>(entityName: string, request: AXPQueryRequest, adapters: RunEntityQueryAdapters<T>): Promise<AXPPagedListResult<T>>;
|
|
1357
1487
|
|
|
1358
|
-
/**
|
|
1359
|
-
* One audit point in time for a record lifecycle event.
|
|
1360
|
-
*
|
|
1361
|
-
* Used inside {@link AXPRecordAuditInfo} (`created`, `updated`, `deleted`).
|
|
1362
|
-
* Backends and mock middleware typically set `at` and `by`; `reason` and `source`
|
|
1363
|
-
* (for example `api`, `system`, `import`) are optional diagnostic fields.
|
|
1364
|
-
*/
|
|
1365
|
-
interface AXPAuditEvent {
|
|
1366
|
-
at?: Date;
|
|
1367
|
-
by?: AXPUserReference;
|
|
1368
|
-
/** Optional business or technical reason for the event. */
|
|
1369
|
-
reason?: string;
|
|
1370
|
-
/** Optional origin of the change (for example `api`, `system`, `import`). */
|
|
1371
|
-
source?: string;
|
|
1372
|
-
}
|
|
1373
|
-
/**
|
|
1374
|
-
* Aggregated audit trail for a persisted row.
|
|
1375
|
-
*
|
|
1376
|
-
* Filled by APIs or connectivity mock middleware when creating, updating, or
|
|
1377
|
-
* soft-deleting records. UI surfaces may show these via the history plugin or
|
|
1378
|
-
* custom columns. Version snapshot pipelines often **omit** this object from
|
|
1379
|
-
* stored snapshots while still applying it to live payloads.
|
|
1380
|
-
*
|
|
1381
|
-
* @remarks Fields are optional today; callers should tolerate partial data.
|
|
1382
|
-
*/
|
|
1383
|
-
interface AXPRecordAuditInfo {
|
|
1384
|
-
created?: AXPAuditEvent;
|
|
1385
|
-
updated?: AXPAuditEvent;
|
|
1386
|
-
deleted?: AXPAuditEvent;
|
|
1387
|
-
}
|
|
1388
|
-
/**
|
|
1389
|
-
* Cross-cutting flags that are not part of the domain schema but affect how a
|
|
1390
|
-
* row is shown or edited (visibility, built-in/system rows, immutability).
|
|
1391
|
-
*
|
|
1392
|
-
* Module entity models sometimes expose only this slice (for example
|
|
1393
|
-
* `stateInfo` on business units) when the rest of the row uses a bespoke shape.
|
|
1394
|
-
*
|
|
1395
|
-
* @remarks Entity list/detail flows should honor these flags where applicable.
|
|
1396
|
-
*/
|
|
1397
|
-
interface AXPRecordStateInfo {
|
|
1398
|
-
isHidden?: boolean;
|
|
1399
|
-
isSystem?: boolean;
|
|
1400
|
-
isImmutable?: boolean;
|
|
1401
|
-
/** @deprecated Prefer explicit domain modeling over this flag. */
|
|
1402
|
-
isDistributed?: boolean;
|
|
1403
|
-
}
|
|
1404
|
-
/**
|
|
1405
|
-
* Tenancy and actor scope for a row in a multi-tenant application.
|
|
1406
|
-
*
|
|
1407
|
-
* Used to associate a record with a tenant, application instance, or owning
|
|
1408
|
-
* user when the API returns ownership metadata alongside domain fields.
|
|
1409
|
-
*/
|
|
1410
|
-
interface AXPRecordOwnershipInfo {
|
|
1411
|
-
tenantId?: string;
|
|
1412
|
-
applicationId?: string;
|
|
1413
|
-
userId?: string;
|
|
1414
|
-
}
|
|
1415
|
-
/**
|
|
1416
|
-
* Workflow linkage for a domain record (set when a run is started or bound).
|
|
1417
|
-
*
|
|
1418
|
-
* Populated by workflow engine, middleware, or integration — not declared as
|
|
1419
|
-
* entity definition properties. Entities with the `workflow` plugin may carry
|
|
1420
|
-
* this object when a {@link WorkflowManagement.WorkflowInstance} drives the row.
|
|
1421
|
-
*/
|
|
1422
|
-
interface AXPRecordWorkflowInfo {
|
|
1423
|
-
/** Workflow instance id for this record's active or last run. */
|
|
1424
|
-
instanceId?: string | null;
|
|
1425
|
-
/** Logical workflow definition id (same as WorkflowInstance.definitionId). */
|
|
1426
|
-
definitionId?: string | null;
|
|
1427
|
-
/** Correlation id for idempotent start and related-run lookup (same as WorkflowInstance.correlationId). */
|
|
1428
|
-
correlationId?: string | null;
|
|
1429
|
-
/** When set, pins the run to a workflow definition version; omit for current default. */
|
|
1430
|
-
pinnedVersion?: number | null;
|
|
1431
|
-
}
|
|
1432
|
-
/** Entity query filter field for {@link AXPRecordWorkflowInfo.instanceId}. */
|
|
1433
|
-
declare const AXP_RECORD_WORKFLOW_INFO_INSTANCE_ID_FIELD: "workflowInfo.instanceId";
|
|
1434
|
-
/** Entity query filter field for {@link AXPRecordWorkflowInfo.correlationId}. */
|
|
1435
|
-
declare const AXP_RECORD_WORKFLOW_INFO_CORRELATION_ID_FIELD: "workflowInfo.correlationId";
|
|
1436
|
-
/** Entity query filter field for {@link AXPRecordWorkflowInfo.definitionId}. */
|
|
1437
|
-
declare const AXP_RECORD_WORKFLOW_INFO_DEFINITION_ID_FIELD: "workflowInfo.definitionId";
|
|
1438
|
-
/** Returns a trimmed workflow instance id from a record, if present. */
|
|
1439
|
-
declare function getRecordWorkflowInstanceId(record: {
|
|
1440
|
-
workflowInfo?: AXPRecordWorkflowInfo | null;
|
|
1441
|
-
} | null | undefined): string | null;
|
|
1442
|
-
/** Returns a trimmed workflow correlation id from a record, if present. */
|
|
1443
|
-
declare function getRecordWorkflowCorrelationId(record: {
|
|
1444
|
-
workflowInfo?: AXPRecordWorkflowInfo | null;
|
|
1445
|
-
} | null | undefined): string | null;
|
|
1446
|
-
/** Builds canonical workflow metadata for a domain record (engine / middleware). */
|
|
1447
|
-
declare function buildAXPRecordWorkflowInfo(params: {
|
|
1448
|
-
instanceId: string;
|
|
1449
|
-
definitionId?: string | null;
|
|
1450
|
-
correlationId?: string | null;
|
|
1451
|
-
pinnedVersion?: number | null;
|
|
1452
|
-
}): AXPRecordWorkflowInfo;
|
|
1453
|
-
/**
|
|
1454
|
-
* Base shape for **entity row** TypeScript models across modules: a stable
|
|
1455
|
-
* identifier plus optional platform metadata.
|
|
1456
|
-
*
|
|
1457
|
-
* Module-specific interfaces extend this with domain properties
|
|
1458
|
-
* (`extends AXPEntityModel<string>` / `AXPEntityModel<Id>`) while reusing
|
|
1459
|
-
* `auditInfo`, `stateInfo`, `ownershipInfo`, and `workflowInfo` when the backend sends them.
|
|
1460
|
-
*/
|
|
1461
|
-
interface AXPEntityModel<Id> {
|
|
1462
|
-
id: Id;
|
|
1463
|
-
auditInfo?: AXPRecordAuditInfo;
|
|
1464
|
-
stateInfo?: AXPRecordStateInfo;
|
|
1465
|
-
ownershipInfo?: AXPRecordOwnershipInfo;
|
|
1466
|
-
workflowInfo?: AXPRecordWorkflowInfo;
|
|
1467
|
-
}
|
|
1468
|
-
interface AXPEntityCreateDto {
|
|
1469
|
-
}
|
|
1470
|
-
interface AXPEntityUpdateDto<Id> {
|
|
1471
|
-
id: Id;
|
|
1472
|
-
}
|
|
1473
|
-
interface AXPEntityOutputDto<Id> {
|
|
1474
|
-
id: Id;
|
|
1475
|
-
}
|
|
1476
|
-
interface AXPEntityDetailDto<Id> extends AXPEntityOutputDto<Id> {
|
|
1477
|
-
}
|
|
1478
|
-
interface AXPEntityListItemDto<Id> extends AXPEntityOutputDto<Id> {
|
|
1479
|
-
}
|
|
1480
|
-
interface AXPMockDto<Id> extends AXPEntityModel<Id> {
|
|
1481
|
-
}
|
|
1482
|
-
|
|
1483
1488
|
declare abstract class AXPEntityStorageService<TKey, TDetailDto extends AXPEntityDetailDto<TKey> = AXPEntityModel<TKey>, TListItemDto extends AXPEntityListItemDto<TKey> = TDetailDto, TCreateDto extends AXPEntityCreateDto = TDetailDto, TUpdateDto extends AXPEntityUpdateDto<TKey> = TDetailDto> {
|
|
1484
1489
|
abstract get dbName(): string;
|
|
1485
1490
|
abstract initial(entityName: string, collection: TCreateDto[], options?: {
|
|
@@ -1676,6 +1681,11 @@ declare class EntityDataAccessor<TKey = any, TDetailDto extends AXPEntityDetailD
|
|
|
1676
1681
|
* @returns The paged list result
|
|
1677
1682
|
*/
|
|
1678
1683
|
query(request?: AXPQueryRequest): Promise<AXPPagedListResult<TListItemDto>>;
|
|
1684
|
+
/**
|
|
1685
|
+
* Queries category entities linked to this entity (`{module}.{entity}Category`).
|
|
1686
|
+
* Falls back to CRUD category storage (same as {@link AXMEntityCrudServiceImpl.getCategoriesList}).
|
|
1687
|
+
*/
|
|
1688
|
+
getCategoriesList(request?: AXPQueryRequest): Promise<AXPPagedListResult<AXPCategoryEntity$1<TKey>>>;
|
|
1679
1689
|
/**
|
|
1680
1690
|
* Creates a new entity.
|
|
1681
1691
|
* @param data - The entity data to create
|
|
@@ -1984,7 +1994,7 @@ interface AXPGetEntityDetailsQueryResult {
|
|
|
1984
1994
|
*/
|
|
1985
1995
|
declare class AXPGetEntityDetailsQuery implements AXPQuery<AXPGetEntityDetailsQueryInput, AXPGetEntityDetailsQueryResult> {
|
|
1986
1996
|
private readonly entityDefinitionRegistry;
|
|
1987
|
-
private readonly
|
|
1997
|
+
private readonly entityService;
|
|
1988
1998
|
/**
|
|
1989
1999
|
* Execute the query to fetch entity definition and data
|
|
1990
2000
|
* @param input - Query input containing entity and ID information
|
|
@@ -4484,5 +4494,5 @@ declare class AXPShowListViewAction extends AXPWorkflowAction {
|
|
|
4484
4494
|
}
|
|
4485
4495
|
declare const AXPShowListViewWorkflow: AXPWorkflow;
|
|
4486
4496
|
|
|
4487
|
-
export { ATTACHMENTS_PAGE_COMPONENT_KEY, AXMEntityCrudService, AXMEntityCrudServiceImpl, AXPCategoryTreeService, AXPCreateEntityCommand, AXPCreateEntityWorkflow, AXPDataSeederService, AXPDeleteEntityWorkflow, AXPEditFileUploaderCommand, AXPEntitiesListDataSourceDefinition, AXPEntityApplyUpdatesAction, AXPEntityCategoryTreeSelectorComponent, AXPEntityCategoryWidget, AXPEntityCategoryWidgetColumnComponent, AXPEntityCategoryWidgetEditComponent, AXPEntityCategoryWidgetViewComponent, AXPEntityCommandTriggerViewModel, AXPEntityCreateEvent, AXPEntityCreatePopupAction, AXPEntityCreateSubmittedAction, AXPEntityCreateViewElementViewModel, AXPEntityCreateViewModelFactory, AXPEntityCreateViewSectionViewModel, AXPEntityDataProvider, AXPEntityDataProviderImpl, AXPEntityDataSelectorRowActionsService, AXPEntityDataSelectorService, AXPEntityDefinitionProviderWidget, AXPEntityDefinitionProviderWidgetEditComponent, AXPEntityDefinitionRegistryService, AXPEntityDeletedEvent, AXPEntityDetailListViewModel, AXPEntityDetailPopoverComponent, AXPEntityDetailPopoverService, AXPEntityDetailViewModelFactory, AXPEntityDetailViewModelResolver, AXPEntityEventDispatcherService, AXPEntityEventsKeys, AXPEntityFormBuilderService, AXPEntityListPersistenceModeDefault, AXPEntityListTableService, AXPEntityListToolbarService, AXPEntityListViewCardFieldViewModel, AXPEntityListViewColumnViewModel, AXPEntityListViewModelFactory, AXPEntityListViewModelResolver, AXPEntityListWidget, AXPEntityListWidgetViewComponent, AXPEntityMasterCreateViewModel, AXPEntityMasterListCardSelectActionName, AXPEntityMasterListViewModel, AXPEntityMasterListViewQueryViewModel, AXPEntityMasterSingleElementViewModel, AXPEntityMasterSingleViewGroupViewModel, AXPEntityMasterSingleViewModel, AXPEntityMasterUpdateElementViewModel, AXPEntityMasterUpdateViewModel, AXPEntityMasterUpdateViewModelFactory, AXPEntityMiddleware, AXPEntityModifyConfirmedAction, AXPEntityModifyEvent, AXPEntityModifySectionPopupAction, AXPEntityModule, AXPEntityPerformDeleteAction, AXPEntityPreloadFiltersContainerComponent, AXPEntityPreloadFiltersViewModel, AXPEntityPreloadFiltersViewModelResolver, AXPEntityResolver, AXPEntityService, AXPEntityStorageService, AXPEntityUpdateViewSectionViewModel, AXPFileListComponent, AXPFileUploaderLoadFilesQuery, AXPFileUploaderSaveFilesCommand, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPGetEntityDetailsQuery, AXPLayoutOrderingConfigService, AXPLookupWidget, AXPLookupWidgetColumnComponent, AXPLookupWidgetEditComponent, AXPLookupWidgetViewComponent, AXPMiddlewareAbortError, AXPMiddlewareEntityStorageService, AXPModifyEntitySectionWorkflow, AXPMultiSourceDefinitionProviderContext, AXPMultiSourceDefinitionProviderService, AXPMultiSourceFederatedSearchService, AXPMultiSourceSelectorComponent, AXPMultiSourceSelectorService, AXPMultiSourceSelectorWidget, AXPMultiSourceSelectorWidgetColumnComponent, AXPMultiSourceSelectorWidgetEditComponent, AXPMultiSourceSelectorWidgetViewComponent, AXPMultiSourceType, AXPOpenEntityDetailsCommand, AXPQuickEntityModifyPopupAction, AXPQuickModifyEntityWorkflow, AXPRelatedColumnEnrichmentService, AXPRelatedColumnMetadataResolver, AXPSelectorStructureWidget, AXPSelectorStructureWidgetColumnComponent, AXPSelectorStructureWidgetEditComponent, AXPSelectorStructureWidgetViewComponent, AXPShowDetailViewAction, AXPShowDetailsViewWorkflow, AXPShowListViewAction, AXPShowListViewWorkflow, AXPTruncatedBreadcrumbComponent, AXPUpdateEntityCommand, AXPViewEntityDetailsCommand, AXP_CATEGORY_TREE_ROOT_TITLE_I18N_KEY, AXP_DATA_SEEDER_TOKEN, AXP_ENTITY_ACTION_PLUGIN, AXP_ENTITY_CONFIG_TOKEN, AXP_ENTITY_DEFINITION_LOADER, AXP_ENTITY_MODIFIER, AXP_ENTITY_STORAGE_BACKEND, AXP_ENTITY_STORAGE_MIDDLEWARE, AXP_MULTI_SOURCE_DEFINITION_PROVIDER, AXP_RECORD_WORKFLOW_INFO_CORRELATION_ID_FIELD, AXP_RECORD_WORKFLOW_INFO_DEFINITION_ID_FIELD, AXP_RECORD_WORKFLOW_INFO_INSTANCE_ID_FIELD, DEFAULT_COLUMN_ORDER, DEFAULT_PAIR_SPAN_RULES, DEFAULT_PROPERTY_ORDER, DEFAULT_SECTION_ORDER, ENTITY_LIST_ROUTE_CONTEXT_SESSION_KEY, EntityBuilder, EntityDataAccessor, actionExists, applyDataSourcePagingWithoutLoad, attachmentFieldCount, attachmentsPlugin, attachmentsSemanticallyEqual, axpCreateEntityAiToolInputDefaults, axpCreateEntityCommandDefinition, buildAXPRecordWorkflowInfo, canPersistEntityListState, cloneLayoutArrays, collectEntityQuickSearchFieldPaths, collectNestedCreateHiddenProperties, collectNestedFieldPathsFromEntityColumns, collectQuickSearchPathsFromSingleEntityDefinition, columnOrderingMiddleware, columnOrderingMiddlewareProvider, columnWidthMiddleware, columnWidthMiddlewareProvider, commandMessageTextForError, committedAttachments, computeEntityAggregates, createColumnOrderingMiddlewareProvider, createLayoutOrderingMiddlewareProvider, createModifierContext, defaultCardLayoutMiddleware, defaultCardLayoutMiddlewareProvider, defaultMultiLanguageMiddleware, defaultMultiLanguageMiddlewareProvider, detectEntityChanges, ensureLayoutPropertyView, ensureLayoutSection, ensureListActions, entityDetailsCreateActions, entityDetailsCreateActionsDeferredParent, entityDetailsCrudActions, entityDetailsEditAction, entityDetailsNewEditAction, entityDetailsReferenceCondition, entityDetailsReferenceCreateActions, entityDetailsSimpleCondition, entityMasterBulkDeleteAction, entityMasterCreateAction, entityMasterCrudActions, entityMasterDeleteAction, entityMasterEditAction, entityMasterRecordActions, entityMasterViewAction, entityOverrideDetailsViewAction, eventDispatchMiddleware, filterSortEntityRows, findEntityListRowDataInTree, fingerprintAttachmentItem, fingerprintAttachments, formatLookupItemDisplay, getDataSourcePageIndex, getEntityListRowId, getMasterInterfacePropertySortKey, getRecordWorkflowCorrelationId, getRecordWorkflowInstanceId, hasFileUploaderTitleOrDescriptionFields, isAXPMiddlewareAbortError, isAttachmentListEntry, isCategoryEntity, isCategoryFilter, isFileListItem, isFileUploaderEditDialogAuto, isLegacyEntityDataSelectorOptions, layoutOrderingMiddlewareFactory, layoutOrderingMiddlewareProvider, mapEntityStorageErrorToCommandResult, mapLegacyEntityDataSelectorOptions, mergeForeignKeyFieldIntoCreateActions, normalizeEntityDataSelectorOptions, normalizeEntityFieldToFileList, normalizeEntityListPersistenceMode, normalizeListPaging, persistedAttachments, provideEntity, resolveEntityPluginDetailPageOrder, resolveFileUploaderEditDialog, resolveFileUploaderEntityScope, resolveLookupDisplayField, resolveLookupDisplayTemplate, restoreEntityListExpandedRows, runEntityQuery, searchResultDescriptionMiddleware, searchResultDescriptionMiddlewareProvider, shouldLoadEntityListStateFromStorage, shouldResetEntityListStateOnRouteEntry };
|
|
4497
|
+
export { ATTACHMENTS_PAGE_COMPONENT_KEY, AXMEntityCrudService, AXMEntityCrudServiceImpl, AXPCategoryTreeService, AXPCreateEntityCommand, AXPCreateEntityWorkflow, AXPDataSeederService, AXPDeleteEntityWorkflow, AXPEditFileUploaderCommand, AXPEntitiesListDataSourceDefinition, AXPEntityApplyUpdatesAction, AXPEntityCategoryTreeSelectorComponent, AXPEntityCategoryWidget, AXPEntityCategoryWidgetColumnComponent, AXPEntityCategoryWidgetEditComponent, AXPEntityCategoryWidgetViewComponent, AXPEntityCommandTriggerViewModel, AXPEntityCreateEvent, AXPEntityCreatePopupAction, AXPEntityCreateSubmittedAction, AXPEntityCreateViewElementViewModel, AXPEntityCreateViewModelFactory, AXPEntityCreateViewSectionViewModel, AXPEntityDataProvider, AXPEntityDataProviderImpl, AXPEntityDataSelectorRowActionsService, AXPEntityDataSelectorService, AXPEntityDataSourceKeys, AXPEntityDefinitionProviderWidget, AXPEntityDefinitionProviderWidgetEditComponent, AXPEntityDefinitionRegistryService, AXPEntityDeletedEvent, AXPEntityDetailListViewModel, AXPEntityDetailPopoverComponent, AXPEntityDetailPopoverService, AXPEntityDetailViewModelFactory, AXPEntityDetailViewModelResolver, AXPEntityEventDispatcherService, AXPEntityEventsKeys, AXPEntityFormBuilderService, AXPEntityListPersistenceModeDefault, AXPEntityListTableService, AXPEntityListToolbarService, AXPEntityListViewCardFieldViewModel, AXPEntityListViewColumnViewModel, AXPEntityListViewModelFactory, AXPEntityListViewModelResolver, AXPEntityListWidget, AXPEntityListWidgetViewComponent, AXPEntityMasterCreateViewModel, AXPEntityMasterListCardSelectActionName, AXPEntityMasterListViewModel, AXPEntityMasterListViewQueryViewModel, AXPEntityMasterSingleElementViewModel, AXPEntityMasterSingleViewGroupViewModel, AXPEntityMasterSingleViewModel, AXPEntityMasterUpdateElementViewModel, AXPEntityMasterUpdateViewModel, AXPEntityMasterUpdateViewModelFactory, AXPEntityMiddleware, AXPEntityModifyConfirmedAction, AXPEntityModifyEvent, AXPEntityModifySectionPopupAction, AXPEntityModule, AXPEntityPerformDeleteAction, AXPEntityPreloadFiltersContainerComponent, AXPEntityPreloadFiltersViewModel, AXPEntityPreloadFiltersViewModelResolver, AXPEntityResolver, AXPEntityService, AXPEntityStorageService, AXPEntityUpdateViewSectionViewModel, AXPFileListComponent, AXPFileUploaderLoadFilesQuery, AXPFileUploaderSaveFilesCommand, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPGetEntityDetailsQuery, AXPLayoutOrderingConfigService, AXPLookupWidget, AXPLookupWidgetColumnComponent, AXPLookupWidgetEditComponent, AXPLookupWidgetViewComponent, AXPMiddlewareAbortError, AXPMiddlewareEntityStorageService, AXPModifyEntitySectionWorkflow, AXPMultiSourceDefinitionProviderContext, AXPMultiSourceDefinitionProviderService, AXPMultiSourceFederatedSearchService, AXPMultiSourceSelectorComponent, AXPMultiSourceSelectorService, AXPMultiSourceSelectorWidget, AXPMultiSourceSelectorWidgetColumnComponent, AXPMultiSourceSelectorWidgetEditComponent, AXPMultiSourceSelectorWidgetViewComponent, AXPMultiSourceType, AXPOpenEntityDetailsCommand, AXPQuickEntityModifyPopupAction, AXPQuickModifyEntityWorkflow, AXPRelatedColumnEnrichmentService, AXPRelatedColumnMetadataResolver, AXPSelectorStructureWidget, AXPSelectorStructureWidgetColumnComponent, AXPSelectorStructureWidgetEditComponent, AXPSelectorStructureWidgetViewComponent, AXPShowDetailViewAction, AXPShowDetailsViewWorkflow, AXPShowListViewAction, AXPShowListViewWorkflow, AXPTruncatedBreadcrumbComponent, AXPUpdateEntityCommand, AXPViewEntityDetailsCommand, AXP_CATEGORY_TREE_ROOT_TITLE_I18N_KEY, AXP_DATA_SEEDER_TOKEN, AXP_ENTITY_ACTION_PLUGIN, AXP_ENTITY_CONFIG_TOKEN, AXP_ENTITY_DEFINITION_LOADER, AXP_ENTITY_MODIFIER, AXP_ENTITY_STORAGE_BACKEND, AXP_ENTITY_STORAGE_MIDDLEWARE, AXP_MULTI_SOURCE_DEFINITION_PROVIDER, AXP_RECORD_WORKFLOW_INFO_CORRELATION_ID_FIELD, AXP_RECORD_WORKFLOW_INFO_DEFINITION_ID_FIELD, AXP_RECORD_WORKFLOW_INFO_INSTANCE_ID_FIELD, DEFAULT_COLUMN_ORDER, DEFAULT_PAIR_SPAN_RULES, DEFAULT_PROPERTY_ORDER, DEFAULT_SECTION_ORDER, ENTITY_LIST_ROUTE_CONTEXT_SESSION_KEY, EntityBuilder, EntityDataAccessor, actionExists, applyDataSourcePagingWithoutLoad, attachmentFieldCount, attachmentsPlugin, attachmentsSemanticallyEqual, axpCreateEntityAiToolInputDefaults, axpCreateEntityCommandDefinition, buildAXPRecordWorkflowInfo, canPersistEntityListState, cloneLayoutArrays, collectEntityQuickSearchFieldPaths, collectNestedCreateHiddenProperties, collectNestedFieldPathsFromEntityColumns, collectQuickSearchPathsFromSingleEntityDefinition, columnOrderingMiddleware, columnOrderingMiddlewareProvider, columnWidthMiddleware, columnWidthMiddlewareProvider, commandMessageTextForError, committedAttachments, computeEntityAggregates, createColumnOrderingMiddlewareProvider, createLayoutOrderingMiddlewareProvider, createModifierContext, defaultCardLayoutMiddleware, defaultCardLayoutMiddlewareProvider, defaultMultiLanguageMiddleware, defaultMultiLanguageMiddlewareProvider, detectEntityChanges, ensureLayoutPropertyView, ensureLayoutSection, ensureListActions, entityDetailsCreateActions, entityDetailsCreateActionsDeferredParent, entityDetailsCrudActions, entityDetailsEditAction, entityDetailsNewEditAction, entityDetailsReferenceCondition, entityDetailsReferenceCreateActions, entityDetailsSimpleCondition, entityMasterBulkDeleteAction, entityMasterCreateAction, entityMasterCrudActions, entityMasterDeleteAction, entityMasterEditAction, entityMasterRecordActions, entityMasterViewAction, entityOverrideDetailsViewAction, eventDispatchMiddleware, filterSortEntityRows, findEntityListRowDataInTree, fingerprintAttachmentItem, fingerprintAttachments, formatLookupItemDisplay, getDataSourcePageIndex, getEntityListRowId, getMasterInterfacePropertySortKey, getRecordWorkflowCorrelationId, getRecordWorkflowInstanceId, hasFileUploaderTitleOrDescriptionFields, isAXPMiddlewareAbortError, isAttachmentListEntry, isCategoryEntity, isCategoryFilter, isFileListItem, isFileUploaderEditDialogAuto, isLegacyEntityDataSelectorOptions, layoutOrderingMiddlewareFactory, layoutOrderingMiddlewareProvider, mapEntityStorageErrorToCommandResult, mapLegacyEntityDataSelectorOptions, mergeForeignKeyFieldIntoCreateActions, normalizeEntityDataSelectorOptions, normalizeEntityFieldToFileList, normalizeEntityListPersistenceMode, normalizeListPaging, persistedAttachments, provideEntity, resolveEntityPluginDetailPageOrder, resolveFileUploaderEditDialog, resolveFileUploaderEntityScope, resolveLookupDisplayField, resolveLookupDisplayTemplate, restoreEntityListExpandedRows, runEntityQuery, searchResultDescriptionMiddleware, searchResultDescriptionMiddlewareProvider, shouldLoadEntityListStateFromStorage, shouldResetEntityListStateOnRouteEntry };
|
|
4488
4498
|
export type { AXPAuditEvent, AXPCollectEntityQuickSearchPathsResolver, AXPDataSeeder, AXPEntityActionPlugin, AXPEntityAggregateMeasure, AXPEntityAggregateOptions, AXPEntityAggregateReducerType, AXPEntityAggregateRequest, AXPEntityAggregateResult, AXPEntityCategoryWidgetOptions, AXPEntityChangeSet, AXPEntityConfigs, AXPEntityCreateDto, AXPEntityDataSelectorCategoryFilterOptions, AXPEntityDataSelectorCategoryOptions, AXPEntityDataSelectorCreateOptions, AXPEntityDataSelectorFilterOptions, AXPEntityDataSelectorGridOptions, AXPEntityDataSelectorOpenInput, AXPEntityDataSelectorOpenOptions, AXPEntityDataSelectorOptions, AXPEntityDataSelectorResult, AXPEntityDataSelectorRowActionsConfig, AXPEntityDataSelectorSearchOptions, AXPEntityDataSelectorSelectionOptions, AXPEntityDataSelectorSortOptions, AXPEntityDefinitionLoader, AXPEntityDefinitionPreloader, AXPEntityDeleteOptions, AXPEntityDetailDto, AXPEntityDetailPopoverOptions, AXPEntityLayoutLike, AXPEntityLayoutPropertyLike, AXPEntityLayoutSectionLike, AXPEntityListEntry, AXPEntityListExpandRowRef, AXPEntityListInput, AXPEntityListItemDto, AXPEntityListPagingState, AXPEntityListPersistenceMode, AXPEntityListToolbarConvertOptions, AXPEntityMasterListCardLayout, AXPEntityMasterListCardSecondaryActionItem, AXPEntityMasterListViewSortPropViewModel, AXPEntityModel, AXPEntityModifier, AXPEntityModifierContext, AXPEntityModifierProvider, AXPEntityOutputDto, AXPEntityPreloadEntity, AXPEntityQueryAllOptions, AXPEntityQueryAllResult, AXPEntityStorageContext, AXPEntityStorageMiddleware, AXPEntityUpdateDto, AXPFileListLook, AXPFileUploaderEditDialogFieldOptions, AXPFileUploaderEditDialogMode, AXPFileUploaderEditDialogOptions, AXPFileUploaderEntityFilesScope, AXPFileUploaderLoadFilesInput, AXPFileUploaderLoadFilesResult, AXPFileUploaderSaveFilesInput, AXPFileUploaderSaveFilesResult, AXPFileUploaderShowFileListEntityContext, AXPFileUploaderShowFileListOptions, AXPFileUploaderUploadActionDescriptor, AXPFileUploaderWidgetColumnOptions, AXPFileUploaderWidgetDesignerOptions, AXPFileUploaderWidgetEditOptions, AXPFileUploaderWidgetOptions, AXPFileUploaderWidgetPrintOptions, AXPFileUploaderWidgetViewOptions, AXPGetEntityDetailsQueryInput, AXPGetEntityDetailsQueryResult, AXPLookupColumnResolveOptions, AXPLookupColumnResolveStrategy, AXPLookupDisplayOptions, AXPLookupPopoverOptions, AXPLookupSelectorRowActionsConfig, AXPLookupWidgetLookType, AXPLookupWidgetOptions, AXPMockDto, AXPMultiSourceDefinition, AXPMultiSourceDefinitionProvider, AXPMultiSourceItem, AXPMultiSourceRef, AXPMultiSourceSearchResult, AXPMultiSourceSearchResultItem, AXPMultiSourceSelectorOpenConfig, AXPMultiSourceSelectorResult, AXPMultiSourceSelectorWidgetOptions, AXPMultiSourceValue, AXPOpenEntityDetailsCommandInput, AXPRecordAuditInfo, AXPRecordOwnershipInfo, AXPRecordStateInfo, AXPRecordWorkflowInfo, AXPRelatedColumnMetadata, AXPSelectorStructureFieldDef, AXPSelectorStructureIdentityDisplay, AXPSelectorStructurePresentationMode, AXPSelectorStructureSelectorMode, AXPSelectorStructureStructureMode, AXPSelectorStructureWidgetColumnOptions, AXPSelectorStructureWidgetDesignerOptions, AXPSelectorStructureWidgetEditOptions, AXPSelectorStructureWidgetOptions, AXPSelectorStructureWidgetPrintOptions, AXPSelectorStructureWidgetViewOptions, AXPShowListViewCondition, AttachmentsDisplayMode, AttachmentsPluginOptions, CategoryQueryEvent, CategoryQueryFunction, CategoryQueryResult, CategoryTreeConfig, CategoryTreeNodeData, EntityDetailPluginPageSlot, PairSpanRule, ResolveEntityPluginDetailPageOrderOptions, RunEntityQueryAdapters, SectionOrderConfig, SkipEntityComponentPageRef };
|
|
@@ -900,6 +900,8 @@ declare class AXPWidgetColumnRendererComponent extends AXDataTableColumnComponen
|
|
|
900
900
|
headerSortDirection?: 'asc' | 'desc';
|
|
901
901
|
/** 1-based order when multiple columns are sorted (shown when priority > 1). */
|
|
902
902
|
headerSortPriority?: number;
|
|
903
|
+
/** Pins column to table edge (`start` / `end`). Passed to the underlying data-table column. */
|
|
904
|
+
columnFixed?: 'start' | 'end';
|
|
903
905
|
readonly sortToggle: EventEmitter<MouseEvent>;
|
|
904
906
|
cellTemplate: TemplateRef<unknown>;
|
|
905
907
|
private _contentCellTemplate;
|
|
@@ -959,7 +961,7 @@ declare class AXPWidgetColumnRendererComponent extends AXDataTableColumnComponen
|
|
|
959
961
|
getInputs(data: any): any;
|
|
960
962
|
getRowInjector(data: any): Injector;
|
|
961
963
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPWidgetColumnRendererComponent, never>;
|
|
962
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPWidgetColumnRendererComponent, "axp-widget-column-renderer", never, { "caption": { "alias": "caption"; "required": false; }; "customExpandIcon": { "alias": "customExpandIcon"; "required": false; }; "customCollapseIcon": { "alias": "customCollapseIcon"; "required": false; }; "customWidth": { "alias": "customWidth"; "required": false; }; "node": { "alias": "node"; "required": true; }; "footerTemplate": { "alias": "footerTemplate"; "required": false; }; "expandHandler": { "alias": "expandHandler"; "required": false; }; "sortEnabled": { "alias": "sortEnabled"; "required": false; }; "headerSortDirection": { "alias": "headerSortDirection"; "required": false; }; "headerSortPriority": { "alias": "headerSortPriority"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; }, { "sortToggle": "sortToggle"; }, never, never, false, never>;
|
|
964
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPWidgetColumnRendererComponent, "axp-widget-column-renderer", never, { "caption": { "alias": "caption"; "required": false; }; "customExpandIcon": { "alias": "customExpandIcon"; "required": false; }; "customCollapseIcon": { "alias": "customCollapseIcon"; "required": false; }; "customWidth": { "alias": "customWidth"; "required": false; }; "node": { "alias": "node"; "required": true; }; "footerTemplate": { "alias": "footerTemplate"; "required": false; }; "expandHandler": { "alias": "expandHandler"; "required": false; }; "sortEnabled": { "alias": "sortEnabled"; "required": false; }; "headerSortDirection": { "alias": "headerSortDirection"; "required": false; }; "headerSortPriority": { "alias": "headerSortPriority"; "required": false; }; "columnFixed": { "alias": "columnFixed"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; }, { "sortToggle": "sortToggle"; }, never, never, false, never>;
|
|
963
965
|
}
|
|
964
966
|
|
|
965
967
|
type AXPWidgetRendererDirectiveOptions = AXPMetaData;
|