@acorex/platform 21.0.0-next.75 → 21.0.0-next.76

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/fesm2022/{acorex-platform-common-common-settings.provider-Ytey9uhY.mjs → acorex-platform-common-common-settings.provider-ChoT4m4k.mjs} +42 -1
  2. package/fesm2022/acorex-platform-common-common-settings.provider-ChoT4m4k.mjs.map +1 -0
  3. package/fesm2022/acorex-platform-common.mjs +1471 -606
  4. package/fesm2022/acorex-platform-common.mjs.map +1 -1
  5. package/fesm2022/acorex-platform-contracts.mjs +1330 -1
  6. package/fesm2022/acorex-platform-contracts.mjs.map +1 -1
  7. package/fesm2022/acorex-platform-core.mjs +208 -5
  8. package/fesm2022/acorex-platform-core.mjs.map +1 -1
  9. package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
  10. package/fesm2022/acorex-platform-layout-entity.mjs +595 -439
  11. package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
  12. package/fesm2022/acorex-platform-layout-views.mjs +372 -171
  13. package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
  14. package/fesm2022/acorex-platform-layout-widget-core.mjs +3 -103
  15. package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
  16. package/fesm2022/acorex-platform-layout-widgets-repeater-widget-column.component-CFyfix31.mjs +513 -0
  17. package/fesm2022/acorex-platform-layout-widgets-repeater-widget-column.component-CFyfix31.mjs.map +1 -0
  18. package/fesm2022/acorex-platform-layout-widgets.mjs +11 -6
  19. package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
  20. package/fesm2022/{acorex-platform-themes-default-entity-master-single-view.component-Br9p5aXT.mjs → acorex-platform-themes-default-entity-master-single-view.component-DrUwqKKA.mjs} +2 -3
  21. package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-DrUwqKKA.mjs.map +1 -0
  22. package/fesm2022/acorex-platform-themes-default.mjs +643 -52
  23. package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
  24. package/fesm2022/acorex-platform-workflow.mjs +5 -8
  25. package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
  26. package/package.json +1 -1
  27. package/types/acorex-platform-common.d.ts +337 -1056
  28. package/types/acorex-platform-contracts.d.ts +1679 -4
  29. package/types/acorex-platform-core.d.ts +92 -181
  30. package/types/acorex-platform-layout-components.d.ts +2 -1
  31. package/types/acorex-platform-layout-entity.d.ts +68 -176
  32. package/types/acorex-platform-layout-views.d.ts +39 -5
  33. package/types/acorex-platform-layout-widget-core.d.ts +2 -3
  34. package/types/acorex-platform-layout-widgets.d.ts +11 -4
  35. package/types/acorex-platform-themes-default.d.ts +120 -57
  36. package/types/acorex-platform-workflow.d.ts +5 -18
  37. package/fesm2022/acorex-platform-common-common-settings.provider-Ytey9uhY.mjs.map +0 -1
  38. package/fesm2022/acorex-platform-layout-widgets-repeater-widget-column.component-J0zcGKBX.mjs +0 -116
  39. package/fesm2022/acorex-platform-layout-widgets-repeater-widget-column.component-J0zcGKBX.mjs.map +0 -1
  40. package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-Br9p5aXT.mjs.map +0 -1
@@ -1,5 +1,1229 @@
1
- import { AXPProperty, AXPOptionsData, AXPMetaData, AXPEntityOp, AXPMultiLanguageString, AXPCategoryEntity } from '@acorex/platform/core';
2
- import { AXPWidgetNode } from '@acorex/platform/layout/widget-core';
1
+ type AXDataSourceOperatorType = 'endsWith' | 'startsWith' | 'in' | 'equal' | 'isNull' | 'isEmpty' | 'lt' | 'lte' | 'gt' | 'gte' | 'contains';
2
+ interface AXDataSourceOperator {
3
+ type: AXDataSourceOperatorType;
4
+ negative?: boolean;
5
+ }
6
+ type AXStyleColorType = string;
7
+ type AXPopupSizeType = string;
8
+ type AXFilterLogic = 'and' | 'or';
9
+ interface AXDataSourceFilterOption {
10
+ field?: string;
11
+ operator?: AXDataSourceOperator;
12
+ value?: unknown;
13
+ logic?: AXFilterLogic;
14
+ filters?: AXDataSourceFilterOption[];
15
+ }
16
+
17
+ /**
18
+ * Plain or rich text that may be localized: a single string or a map of locale code to string.
19
+ */
20
+ type AXPMultiLanguageString = string | Record<string, string>;
21
+ type AXPExpression = string;
22
+ type AXPMetaData = Record<string, unknown>;
23
+ type AXPOptionsData<T extends Record<string, unknown> = Record<string, any>> = T;
24
+ interface AXPEntityReference {
25
+ id: string;
26
+ type: string;
27
+ title?: string;
28
+ metadata?: AXPMetaData;
29
+ }
30
+ interface AXPUserReference {
31
+ id: string;
32
+ type?: 'user';
33
+ fullName?: string;
34
+ username?: string;
35
+ }
36
+ type AXPContentType = 'text' | 'image' | 'file' | 'video' | 'link';
37
+ interface AXPContent {
38
+ content: string;
39
+ contentType: AXPContentType;
40
+ }
41
+ type AXPFileStatus = 'attached' | 'uploading' | 'uploaded' | 'deleted' | 'remote' | 'editing';
42
+ interface AXPFileSource {
43
+ kind: 'blob' | 'url' | 'preview' | 'none' | 'fileId' | 'reference';
44
+ value?: Blob | string | {
45
+ id: string;
46
+ type: string;
47
+ title?: string;
48
+ metadata?: AXPMetaData;
49
+ };
50
+ }
51
+ interface AXPFileListItem {
52
+ id?: string;
53
+ name: string;
54
+ size?: number;
55
+ status: AXPFileStatus;
56
+ source?: AXPFileSource;
57
+ meta?: AXPMetaData;
58
+ readOnly?: boolean;
59
+ title?: string;
60
+ description?: string;
61
+ }
62
+ type AXPDataType = 'string' | 'number' | 'boolean' | 'date' | 'object' | 'array' | 'blob';
63
+ type AXPWidgetTrigger = {
64
+ event: string;
65
+ action: string | string[];
66
+ disabled?: boolean;
67
+ };
68
+ type AXPWidgetTriggers = AXPWidgetTrigger[];
69
+ type AXPValidationRule = {
70
+ rule: string;
71
+ message?: string;
72
+ options?: unknown;
73
+ disabled?: boolean | AXPExpression;
74
+ };
75
+ type AXPValidationRules = AXPValidationRule[];
76
+ interface AXPGridPlacement {
77
+ colStart?: number;
78
+ colEnd?: number;
79
+ colSpan?: number;
80
+ rowStart?: number;
81
+ rowEnd?: number;
82
+ rowSpan?: number;
83
+ order?: string | number;
84
+ }
85
+ interface AXPGridLayoutOptions {
86
+ positions?: {
87
+ sm?: AXPGridPlacement;
88
+ md?: AXPGridPlacement;
89
+ lg?: AXPGridPlacement;
90
+ xl?: AXPGridPlacement;
91
+ xxl?: AXPGridPlacement;
92
+ xxxl?: AXPGridPlacement;
93
+ };
94
+ }
95
+ type AXPValueTransformerFunction = (value: unknown) => unknown;
96
+ type AXPValueTransformerFunctions = {
97
+ getter?: AXPValueTransformerFunction;
98
+ setter?: AXPValueTransformerFunction;
99
+ };
100
+ declare enum AXPSystemActionType {
101
+ View = "view",
102
+ Create = "create",
103
+ Update = "update",
104
+ Delete = "delete",
105
+ Approve = "approve",
106
+ Reject = "reject",
107
+ Submit = "submit",
108
+ Export = "export",
109
+ Import = "import",
110
+ Print = "print",
111
+ Assign = "assign",
112
+ Lock = "lock",
113
+ Unlock = "unlock",
114
+ Share = "share",
115
+ Configure = "configure",
116
+ Reorder = "reorder",
117
+ Preview = "preview",
118
+ Duplicate = "duplicate",
119
+ Archive = "archive",
120
+ Publish = "publish",
121
+ Unpublish = "unpublish",
122
+ Upload = "upload",
123
+ Download = "download",
124
+ Copy = "copy",
125
+ Move = "move",
126
+ Rename = "rename",
127
+ Restore = "restore",
128
+ Manage = "manage",
129
+ Info = "info",
130
+ Confirm = "confirm",
131
+ Design = "design",
132
+ VersionHistory = "version-history",
133
+ Compare = "compare",
134
+ Comments = "comments",
135
+ Sign = "sign",
136
+ Setup = "setup",
137
+ Send = "send",
138
+ Report = "report",
139
+ Sent = "sent",
140
+ Review = "review",
141
+ Generate = "generate",
142
+ Refresh = "refresh",
143
+ Reload = "reload",
144
+ Search = "search",
145
+ Filter = "filter",
146
+ Sort = "sort",
147
+ Start = "start",
148
+ Stop = "stop",
149
+ Pause = "pause",
150
+ Cancel = "cancel",
151
+ Close = "close",
152
+ Complete = "complete",
153
+ Save = "save",
154
+ SaveAs = "save-as",
155
+ Sync = "sync",
156
+ Reset = "reset",
157
+ Clear = "clear",
158
+ Distribution = "distribution"
159
+ }
160
+
161
+ /**
162
+ * Builds a locale map for mock seed data (`en-US` + `fa-IR`).
163
+ * Standalone copy for connectivity mocks — no dependency on @acorex/core/translation.
164
+ */
165
+ declare function createMultiLanguageString(enUS: string, faIR?: string): Record<string, string>;
166
+ /**
167
+ * Resolves {@link AXPMultiLanguageString} to a plain string for the given locale.
168
+ * Standalone copy for connectivity mocks — no dependency on @acorex/core/translation.
169
+ */
170
+ declare function resolveMultiLanguageString(value: AXPMultiLanguageString | null | undefined, locale: string): string;
171
+ /**
172
+ * Lightweight data helpers for mock seed files.
173
+ * Standalone copy for connectivity mocks — no dependency on @acorex/platform/core.
174
+ */
175
+ declare class AXPDataGenerator {
176
+ static uuid(): string;
177
+ static number(max: number): number;
178
+ static number(min: number, max: number): number;
179
+ static date(): Date;
180
+ static date(start: Date): Date;
181
+ static date(start: Date, end: Date): Date;
182
+ static array<T>(length: number | undefined, generator: () => T): T[];
183
+ static pick<T>(items: T[]): T;
184
+ static pick<T>(items: T[], count: number): T[];
185
+ static string(length?: number): string;
186
+ static boolean(): boolean;
187
+ static item<T>(array?: T[]): T | undefined;
188
+ static color(format?: 'hsl' | 'rgb' | 'hex'): string;
189
+ private static hslToRgb;
190
+ static alphanumeric(length?: number): string;
191
+ static alphabet(length?: number): string;
192
+ static phone(): string;
193
+ static firstName(): string;
194
+ static lastName(): string;
195
+ static email(): string;
196
+ static email(firstName: string, lastName: string): string;
197
+ static country(): string;
198
+ static city(): string;
199
+ static state(): string;
200
+ static address(): string;
201
+ static avatar(): string;
202
+ }
203
+
204
+ interface AXPCategoryEntity<TKey = string> {
205
+ id: TKey;
206
+ title: AXPMultiLanguageString;
207
+ description?: AXPMultiLanguageString;
208
+ parentId?: TKey;
209
+ childrenCount: number;
210
+ itemsCount?: number;
211
+ totalChildrenCount?: number;
212
+ totalItemsCount?: number;
213
+ }
214
+ interface AXPCategoryListItem<TKey extends string = string> {
215
+ id: TKey;
216
+ title: AXPMultiLanguageString;
217
+ }
218
+ interface AXPCategoryEntityWithItems<T> extends AXPCategoryEntity {
219
+ items: T[];
220
+ children?: AXPCategoryEntityWithItems<T>[];
221
+ }
222
+ interface AXPCategorizedEntity {
223
+ categoryIds: string[];
224
+ }
225
+ interface AXPCategorizedEntityDto {
226
+ categoryIds: string[];
227
+ categories: AXPCategoryListItem[];
228
+ }
229
+ type AXPEntityOp = 'initial' | 'create' | 'update' | 'delete' | 'getOne' | 'getAll' | 'query' | 'count' | 'queryAll' | 'getMany' | 'exists' | 'upsertOne' | 'aggregate';
230
+
231
+ interface AXPPropertyGroup {
232
+ name: string;
233
+ title: AXPMultiLanguageString;
234
+ icon?: string;
235
+ description?: AXPMultiLanguageString;
236
+ order?: number;
237
+ }
238
+ interface AXPPropertyInterface {
239
+ type: string;
240
+ options: AXPOptionsData;
241
+ triggers?: AXPWidgetTriggers;
242
+ }
243
+ interface AXPProperty {
244
+ name: string;
245
+ title: AXPMultiLanguageString;
246
+ description?: AXPMultiLanguageString;
247
+ dataType: AXPDataType;
248
+ validations?: AXPValidationRules;
249
+ group?: AXPPropertyGroup | string;
250
+ order?: number;
251
+ interface: AXPPropertyInterface;
252
+ }
253
+
254
+ interface AXPFilterTriggerDefinition {
255
+ event: string;
256
+ action: string;
257
+ disabled?: boolean;
258
+ }
259
+ interface AXPFilterClause extends AXDataSourceFilterOption {
260
+ id?: string;
261
+ order?: number;
262
+ filters?: AXPFilterClause[];
263
+ }
264
+ interface AXPFilterDefinition extends AXPFilterClause {
265
+ title: string;
266
+ isParametric?: boolean;
267
+ icon?: string;
268
+ widget: {
269
+ type: string;
270
+ options?: AXPOptionsData;
271
+ };
272
+ filterType: {
273
+ advance: boolean;
274
+ inline: boolean;
275
+ preload?: {
276
+ enabled?: boolean;
277
+ required?: boolean;
278
+ };
279
+ };
280
+ hidden?: boolean;
281
+ /**
282
+ * When true, the filter is not selectable. When a string, it is evaluated as an expression (e.g. `{{ ... }}`)
283
+ * using the current filters context.
284
+ */
285
+ disabled?: boolean | string;
286
+ /** Expression-driven triggers (events/actions); same semantics as entity `schema.interface.triggers`. */
287
+ triggers?: AXPFilterTriggerDefinition[];
288
+ }
289
+ interface AXPFilterQuery extends Pick<AXPFilterDefinition, 'field' | 'value' | 'operator' | 'logic' | 'hidden'> {
290
+ filters?: AXPFilterQuery[];
291
+ displayText?: string;
292
+ }
293
+
294
+ interface AXPAuditEvent {
295
+ at?: Date;
296
+ by?: AXPUserReference;
297
+ reason?: string;
298
+ source?: string;
299
+ }
300
+ interface AXPRecordAuditInfo {
301
+ created?: AXPAuditEvent;
302
+ updated?: AXPAuditEvent;
303
+ deleted?: AXPAuditEvent;
304
+ }
305
+ interface AXPRecordStateInfo {
306
+ isHidden?: boolean;
307
+ isSystem?: boolean;
308
+ isImmutable?: boolean;
309
+ /** @deprecated Prefer explicit domain modeling over this flag. */
310
+ isDistributed?: boolean;
311
+ }
312
+ interface AXPRecordOwnershipInfo {
313
+ tenantId?: string;
314
+ applicationId?: string;
315
+ userId?: string;
316
+ }
317
+ interface AXPRecordWorkflowInfo {
318
+ instanceId?: string | null;
319
+ definitionId?: string | null;
320
+ correlationId?: string | null;
321
+ pinnedVersion?: number | null;
322
+ }
323
+ interface AXPEntityModel<Id> {
324
+ id: Id;
325
+ auditInfo?: AXPRecordAuditInfo;
326
+ stateInfo?: AXPRecordStateInfo;
327
+ ownershipInfo?: AXPRecordOwnershipInfo;
328
+ workflowInfo?: AXPRecordWorkflowInfo;
329
+ }
330
+ interface AXPEntityCreateDto {
331
+ }
332
+ interface AXPEntityUpdateDto<Id> {
333
+ id: Id;
334
+ }
335
+ interface AXPEntityOutputDto<Id> {
336
+ id: Id;
337
+ }
338
+ interface AXPEntityDetailDto<Id> extends AXPEntityOutputDto<Id> {
339
+ }
340
+ interface AXPEntityListItemDto<Id> extends AXPEntityOutputDto<Id> {
341
+ }
342
+ interface AXPMockDto<Id> extends AXPEntityModel<Id> {
343
+ }
344
+
345
+ interface AXEntityPropertyWidget {
346
+ type: string;
347
+ path?: string;
348
+ id?: string;
349
+ children?: AXEntityPropertyWidget[];
350
+ mode: 'view' | 'edit';
351
+ options?: Record<string, any>;
352
+ triggers?: {
353
+ event: string;
354
+ action: string;
355
+ disabled?: boolean;
356
+ }[];
357
+ valueTransforms?: AXPValueTransformerFunctions;
358
+ }
359
+ declare enum AXPRelationshipKind {
360
+ Association = 0,
361
+ Composition = 1,
362
+ Aggregation = 2
363
+ }
364
+ declare enum AXPRelationshipCardinality {
365
+ OneToOne = 0,
366
+ OneToMany = 1,
367
+ ManyToMany = 2
368
+ }
369
+ interface AXPRelationship {
370
+ id: string;
371
+ from: string;
372
+ to: string;
373
+ kind: AXPRelationshipKind;
374
+ cardinality: AXPRelationshipCardinality;
375
+ }
376
+ declare enum AXPEntityCommandScope {
377
+ TypeLevel = "typeLevel",
378
+ Selected = "selected",
379
+ Individual = "individual",
380
+ Section = "section"
381
+ }
382
+ declare enum AXPEntityQueryType {
383
+ Single = "single",
384
+ List = "list"
385
+ }
386
+ interface AXPEntityPropertyLayoutConfig extends AXPGridLayoutOptions {
387
+ label?: {
388
+ visible?: boolean;
389
+ };
390
+ order?: number;
391
+ visible?: boolean | AXPExpression;
392
+ }
393
+ interface AXPEntityPropertyGroup {
394
+ id: string;
395
+ title: string;
396
+ description?: string;
397
+ permissions?: string[];
398
+ icon?: string;
399
+ }
400
+ interface AXPEntityPropertyView {
401
+ name: string;
402
+ dataPath?: string;
403
+ permissions?: string[];
404
+ layout?: AXPEntityPropertyLayoutConfig;
405
+ }
406
+ interface AXPEntityPropertyUpdateView extends AXPEntityPropertyView {
407
+ }
408
+ interface AXPEntityPropertyCreateView extends AXPEntityPropertyView {
409
+ defaultValue?: any;
410
+ }
411
+ interface AXPEntitySectionView {
412
+ id: string;
413
+ order?: number;
414
+ collapsed?: boolean;
415
+ layout?: AXPEntityPropertyLayoutConfig;
416
+ }
417
+ interface AXPEntityProperty {
418
+ name: string;
419
+ title: string;
420
+ description?: string;
421
+ groupId?: string;
422
+ schema: {
423
+ dataType: string;
424
+ nullable?: boolean;
425
+ readonly?: boolean | string;
426
+ visible?: boolean | string;
427
+ defaultValue?: any | string | ((context: any | null) => any);
428
+ unique?: {
429
+ enabled: boolean;
430
+ };
431
+ interface?: Partial<AXEntityPropertyWidget>;
432
+ };
433
+ options?: {
434
+ filter?: {
435
+ advance?: {
436
+ enabled?: boolean;
437
+ widgetType?: string;
438
+ };
439
+ inline?: {
440
+ enabled?: boolean;
441
+ };
442
+ preload?: {
443
+ enabled?: boolean;
444
+ required?: boolean;
445
+ };
446
+ };
447
+ sort?: {
448
+ enabled?: boolean;
449
+ };
450
+ };
451
+ validations?: AXPValidationRules;
452
+ }
453
+ /** Logical alignment for table column header/cell (respects RTL). */
454
+ type AXPColumnContentAlign = 'start' | 'center' | 'end';
455
+ /**
456
+ * Column alignment: shorthand applies to both header and cell;
457
+ * object form sets each side independently (omitted keys default to start).
458
+ */
459
+ type AXPColumnAlign = AXPColumnContentAlign | {
460
+ header?: AXPColumnContentAlign;
461
+ cell?: AXPColumnContentAlign;
462
+ };
463
+ /** Shared field definition for list layouts (table columns, card fields, etc.). */
464
+ interface AXPEntityDisplayField {
465
+ name: string;
466
+ title?: string;
467
+ showAs?: {
468
+ type: string;
469
+ options?: Record<string, any>;
470
+ };
471
+ options?: {
472
+ /** When string, evaluate against parent detail context (e.g. related list). */
473
+ visible?: boolean | string;
474
+ /** Optional dataPath override for field binding. */
475
+ dataPath?: string;
476
+ [name: string]: any;
477
+ };
478
+ }
479
+ /** Card layout field presentation in master list card view. */
480
+ type AXPCardFieldDisplay = 'simple' | 'badge';
481
+ /** Badge color: semantic token or per-row expression (`{{ context.eval(...) }}`). */
482
+ type AXPCardBadgeColor = AXStyleColorType | AXPExpression;
483
+ interface AXPCardBadgeDisplayOptions {
484
+ /** Semantic color or expression evaluated against row context. */
485
+ color?: AXPCardBadgeColor;
486
+ }
487
+ interface AXPCardBadgeDisplay {
488
+ type: 'badge';
489
+ options?: AXPCardBadgeDisplayOptions;
490
+ }
491
+ /** Shorthand (`badge` / `simple`) or structured badge config with optional per-row color. */
492
+ type AXPCardFieldDisplayConfig = AXPCardFieldDisplay | AXPCardBadgeDisplay;
493
+ /** Card layout field in master list view. */
494
+ type AXPCardField = AXPEntityDisplayField & {
495
+ layout?: AXPEntityPropertyLayoutConfig;
496
+ /**
497
+ * Field presentation. Default: `simple` (card body).
498
+ * Use `badge` or `{ type: 'badge', options: { color } }` for header chips beside title.
499
+ */
500
+ display?: AXPCardFieldDisplayConfig;
501
+ /**
502
+ * Badge color when presentation is badge-shaped.
503
+ * Prefer `display: { type: 'badge', options: { color } }` for new definitions.
504
+ * Omit for status fields — color is resolved from the status definition per row.
505
+ */
506
+ badgeColor?: AXPCardBadgeColor;
507
+ };
508
+ /** Whether the card field is shown as a header badge (not in the card body). */
509
+ declare function isCardFieldBadgeDisplay(display: AXPCardFieldDisplayConfig | undefined): display is 'badge' | AXPCardBadgeDisplay;
510
+ /** Resolves static badge color config from {@link AXPCardField.display} and legacy {@link AXPCardField.badgeColor}. */
511
+ declare function resolveCardFieldBadgeColor(field: Pick<AXPCardField, 'display' | 'badgeColor'>): AXPCardBadgeColor | undefined;
512
+ interface AXPEntityTableColumn extends AXPEntityDisplayField {
513
+ options?: AXPEntityDisplayField['options'] & {
514
+ /** Initial column width (overrides widget column width when set). */
515
+ width?: string;
516
+ /** Header/cell alignment (shorthand or per-side). */
517
+ align?: AXPColumnAlign;
518
+ };
519
+ }
520
+ interface AXPEntityCommand {
521
+ execute: string | Function;
522
+ permissions?: string[];
523
+ }
524
+ interface AXPEntityQuery {
525
+ execute: string | Function;
526
+ type: AXPEntityQueryType;
527
+ }
528
+ type AXPCommandActionType = AXPSystemActionType;
529
+ interface AXPCommandActionLook {
530
+ color: AXStyleColorType;
531
+ icon: string;
532
+ }
533
+ type AXPCommandActionPriority = 'primary' | 'secondary';
534
+ type AXPCommandActionCallback = string | {
535
+ name: string;
536
+ options?: {
537
+ decoration?: {
538
+ header?: {
539
+ title?: string;
540
+ };
541
+ };
542
+ process?: {
543
+ data?: any;
544
+ [name: string]: any;
545
+ };
546
+ layout?: {
547
+ size?: AXPopupSizeType;
548
+ };
549
+ [name: string]: any;
550
+ };
551
+ metadata?: AXPMetaData;
552
+ };
553
+ interface AXPCommandActionDisplay extends Partial<AXPCommandActionLook> {
554
+ name?: string;
555
+ command: AXPCommandActionCallback;
556
+ title: string;
557
+ type: AXPSystemActionType | string;
558
+ priority: 'primary' | 'secondary' | 'none';
559
+ separated?: boolean;
560
+ permissions?: string[];
561
+ hidden?: boolean | string;
562
+ disabled?: boolean | string;
563
+ default?: boolean;
564
+ order?: number;
565
+ /**
566
+ * Keyboard chords for this action (e.g. `'ctrl+shift+a'`).
567
+ * Pass `[]` to disable shortcuts. When omitted, platform defaults may apply for known commands.
568
+ */
569
+ shortcuts?: string[];
570
+ }
571
+ interface AXPEntityAction extends AXPCommandActionDisplay {
572
+ scope: AXPEntityCommandScope;
573
+ /** Child actions for dropdown submenu */
574
+ items?: AXPEntityAction[];
575
+ }
576
+ interface AXPEntity {
577
+ plugins?: {
578
+ name: string;
579
+ options?: AXPOptionsData;
580
+ }[];
581
+ /**
582
+ * High-level rules: when expression evaluates true, apply actions to the given targets
583
+ * (property/section/action). Reduces repetition of the same condition across many properties.
584
+ * Evaluation context: form data, user, entity; precedence vs property-level visible/readonly
585
+ * must be defined where rules are applied.
586
+ */
587
+ rules?: Array<{
588
+ name: string;
589
+ expression: AXPExpression;
590
+ actions: Array<{
591
+ target: {
592
+ type: 'property' | 'section' | 'action';
593
+ name: string;
594
+ };
595
+ values: AXPOptionsData;
596
+ }>;
597
+ }>;
598
+ module: string;
599
+ name: string;
600
+ icon?: string;
601
+ parentKey?: string;
602
+ category?: AXPEntityCategoryPlugin;
603
+ title: string;
604
+ formats: {
605
+ individual: string;
606
+ plural: string;
607
+ lookup?: string;
608
+ displayName?: string;
609
+ searchResult?: {
610
+ title: string;
611
+ description?: string;
612
+ };
613
+ };
614
+ relatedEntities?: AXPRelatedEntity[];
615
+ pages?: AXPEntityPage[];
616
+ groups?: AXPEntityPropertyGroup[];
617
+ properties: AXPEntityProperty[];
618
+ columns?: AXPEntityTableColumn[];
619
+ commands?: {
620
+ create?: AXPEntityCommand | undefined;
621
+ update?: AXPEntityCommand | undefined;
622
+ delete?: AXPEntityCommand | undefined;
623
+ [name: string]: AXPEntityCommand | undefined;
624
+ };
625
+ queries?: {
626
+ byKey?: AXPEntityQuery;
627
+ list?: AXPEntityQuery;
628
+ lookup?: AXPEntityQuery;
629
+ history?: AXPEntityQuery;
630
+ comments?: AXPEntityQuery;
631
+ [name: string]: AXPEntityQuery | undefined;
632
+ };
633
+ validations?: AXPValidationRules;
634
+ interfaces?: {
635
+ master?: {
636
+ single?: AXPEntityMasterSingleLayoutView;
637
+ list?: AXPEntityMasterListView;
638
+ create?: AXPEntityMasterCreateLayoutView;
639
+ update?: AXPEntityMasterUpdateLayoutView;
640
+ };
641
+ detail?: {
642
+ list?: AXPEntityDetailListView;
643
+ };
644
+ };
645
+ }
646
+ declare function getEntityInfo(entity: AXPEntity): {
647
+ source: string;
648
+ module: {
649
+ route: string;
650
+ };
651
+ entity: {
652
+ route: string;
653
+ };
654
+ };
655
+ declare function createQueryView(name: string, title: string, fixed: boolean, params?: {
656
+ columns?: string[];
657
+ conditions?: any[];
658
+ sorts?: AXPQuerySort[];
659
+ }): AXPQueryView;
660
+ declare function createAllQueryView(params?: {
661
+ columns?: string[];
662
+ conditions?: AXPQueryFilter[];
663
+ sorts?: AXPQuerySort[];
664
+ } | undefined): AXPQueryView;
665
+ interface AXPRelatedEntity {
666
+ entity: string;
667
+ title?: string;
668
+ icon?: string;
669
+ columns?: string[] | AXPEntityTableColumn[];
670
+ properties?: string[];
671
+ excludeProperties?: string[];
672
+ layout?: {
673
+ type: 'tab-detail' | 'tab-list' | 'page-detail' | 'page-list' | 'merge-detail';
674
+ order?: number;
675
+ position?: 'before' | 'after' | 'middle';
676
+ };
677
+ conditions?: AXPQueryFilter[];
678
+ customFilterDefinitions?: Partial<AXPFilterDefinition>[];
679
+ hidden?: boolean | AXPExpression;
680
+ actions?: AXPEntityAction[];
681
+ /**
682
+ * Controls inclusion on the host entity master **create** / **update** form.
683
+ * Defaults depend on layout:
684
+ * - **merge-detail**: omitted flags behave as **true** (opt-out with `false`).
685
+ * - **tab-list** / **page-list**: omitted flags behave as **false** (opt-in with `true`).
686
+ */
687
+ appearOn?: {
688
+ /** Include on host create form (see defaults above per layout type). */
689
+ create?: boolean;
690
+ /** Include on host update form (see defaults above per layout type). */
691
+ update?: boolean;
692
+ };
693
+ /**
694
+ * Relationship-level persistence strategy for merge-detail data.
695
+ * Defaults:
696
+ * - strategy: 'embedded'
697
+ * - idField: last segment of dataPath + 'Id' (or 'relatedId' when dataPath is missing)
698
+ * - map: undefined (pass-through)
699
+ * - hydrate: 'eager' (applies to getOne only in mock)
700
+ * - cascade.delete: 'none'
701
+ */
702
+ persistence?: {
703
+ strategy?: 'embedded' | 'referenced';
704
+ idField?: string;
705
+ dataPath?: string;
706
+ map?: Record<string, string>;
707
+ hydrate?: 'eager' | 'lazy';
708
+ cascade?: {
709
+ delete?: 'none' | 'orphans' | 'all';
710
+ };
711
+ foreignKeyField?: string;
712
+ };
713
+ }
714
+ interface AXPEntityPage {
715
+ /**
716
+ * Key to identify the component in the page component registry
717
+ */
718
+ componentKey: string;
719
+ /**
720
+ * Property name to render when the page component displays an entity field (e.g. 'questions', 'attachments').
721
+ * Passed to the page component as pageConfig.field.
722
+ */
723
+ field?: string;
724
+ /**
725
+ * Title of the page (displayed in navigation)
726
+ */
727
+ title?: AXPMultiLanguageString;
728
+ /**
729
+ * Icon for the page (displayed in navigation)
730
+ */
731
+ icon?: string;
732
+ /**
733
+ * Description of the page
734
+ */
735
+ description?: AXPMultiLanguageString;
736
+ /**
737
+ * Layout configuration for page positioning
738
+ */
739
+ layout?: {
740
+ /**
741
+ * Order of the page (lower numbers appear first)
742
+ */
743
+ order?: number;
744
+ /**
745
+ * Position relative to the main page
746
+ */
747
+ position?: 'before' | 'after' | 'middle';
748
+ };
749
+ /**
750
+ * Visibility condition (boolean or expression string)
751
+ */
752
+ hidden?: boolean | string;
753
+ /**
754
+ * Permissions required to view this page
755
+ */
756
+ permissions?: string[];
757
+ /**
758
+ * Controls inclusion on the host entity master **create** / **update** form wizard.
759
+ * Omitted flags behave as **false** (opt-in with `true`), same as `tab-list` / `page-list` related entities.
760
+ */
761
+ appearOn?: {
762
+ /** Include as a wizard step on host create form. */
763
+ create?: boolean;
764
+ /** Include as a wizard step on host update form. */
765
+ update?: boolean;
766
+ };
767
+ options?: Record<string, any>;
768
+ }
769
+ interface AXPEntityCategoryPlugin {
770
+ entity: string;
771
+ title?: string;
772
+ textField?: string;
773
+ valueField?: string;
774
+ conditions?: AXPQueryFilter[];
775
+ applyConditions?: AXPQueryFilter[];
776
+ }
777
+ interface AXPEntityVersionHistory {
778
+ enabled?: boolean;
779
+ showInList?: boolean;
780
+ showInDetail?: boolean;
781
+ }
782
+ interface AXPAggregate {
783
+ id: string;
784
+ name: string;
785
+ title: AXPMultiLanguageString;
786
+ entities: AXPEntity[];
787
+ }
788
+ interface AXPModule {
789
+ name: string;
790
+ title: AXPMultiLanguageString;
791
+ aggregates: AXPAggregate[];
792
+ relationships?: AXPRelationship[];
793
+ }
794
+ interface AXPApplication {
795
+ name: string;
796
+ title: AXPMultiLanguageString;
797
+ modules: AXPModule[];
798
+ }
799
+ interface AXPEntityMasterLayoutView {
800
+ title?: string;
801
+ sections: AXPEntitySectionView[];
802
+ properties?: AXPEntityPropertyView[];
803
+ }
804
+ /** Quick create config for lookup widgets (+ button) - uses subset of create form */
805
+ interface AXPEntityQuickCreate {
806
+ enabled?: boolean;
807
+ properties?: string[];
808
+ layout?: {
809
+ size?: AXPopupSizeType;
810
+ };
811
+ excludeProperties?: string[];
812
+ }
813
+ interface AXPEntityMasterCreateLayoutView extends AXPEntityMasterLayoutView {
814
+ steps?: {
815
+ id: string;
816
+ title: string;
817
+ description?: string;
818
+ };
819
+ /** Quick create config for lookup widgets - uses subset of create form */
820
+ quickCreate?: AXPEntityQuickCreate;
821
+ }
822
+ interface AXPEntityMasterUpdateLayoutView extends AXPEntityMasterLayoutView {
823
+ }
824
+ interface AXPEntityMasterSingleLayoutView extends AXPEntityMasterLayoutView {
825
+ title: string;
826
+ description?: string;
827
+ actions?: AXPEntityAction[];
828
+ }
829
+ interface AXPEntityMasterListView {
830
+ title?: string;
831
+ description?: string;
832
+ actions?: AXPEntityAction[];
833
+ views: AXPQueryView[];
834
+ layouts?: {
835
+ table?: {
836
+ enabled?: boolean;
837
+ columns: AXPEntityTableColumn[];
838
+ };
839
+ card?: {
840
+ enabled?: boolean;
841
+ header: {
842
+ /** Property path, expression (`{{ ... }}`), or literal — evaluated per row. */
843
+ title?: string;
844
+ description?: string;
845
+ icon?: string;
846
+ };
847
+ fields: AXPCardField[];
848
+ };
849
+ };
850
+ }
851
+ type AXPEntityMasterListLayoutType = 'table' | 'card';
852
+ /** Master list presentation: table or card with compact (collapsed) / expanded bodies. */
853
+ type AXPEntityMasterListDisplayMode = 'table' | 'card-compact' | 'card-expanded';
854
+ interface AXPEntityMasterListLayoutOption {
855
+ id: AXPEntityMasterListLayoutType;
856
+ title: string;
857
+ icon?: string;
858
+ }
859
+ /** Resolves master list layouts that are currently enabled. */
860
+ declare function resolveEnabledMasterListLayouts(layouts?: AXPEntityMasterListView['layouts']): AXPEntityMasterListLayoutType[];
861
+ /** First enabled layout; used as the default when no user preference is stored. */
862
+ declare function resolveDefaultMasterListLayout(layouts?: AXPEntityMasterListView['layouts']): AXPEntityMasterListLayoutType;
863
+ interface AXPEntityDetailListView {
864
+ title?: string;
865
+ description?: string;
866
+ columns: AXPEntityTableColumn[];
867
+ actions?: AXPEntityAction[];
868
+ }
869
+ interface AXPQueryView {
870
+ name: string;
871
+ fixed: boolean;
872
+ title: string;
873
+ columns: string[];
874
+ conditions: AXPQueryFilter[];
875
+ sorts: AXPQuerySort[];
876
+ indexCol?: boolean;
877
+ pageSize?: number;
878
+ visible?: boolean;
879
+ }
880
+ interface AXPQueryFilter {
881
+ name: string;
882
+ operator: AXDataSourceOperator;
883
+ value: any;
884
+ }
885
+ interface AXPQuerySort {
886
+ name: string;
887
+ dir: 'asc' | 'desc';
888
+ }
889
+ declare enum AXPEntityType {
890
+ Entity = 0,
891
+ AggregateRoot = 1,
892
+ ValueObject = 2
893
+ }
894
+ interface AXPEntityV2 {
895
+ version: 2;
896
+ module: string;
897
+ aggregate: string;
898
+ name: string;
899
+ type: AXPEntityType;
900
+ icon?: string;
901
+ title: string;
902
+ description?: string;
903
+ plugins?: {
904
+ name: string;
905
+ options?: AXPOptionsData;
906
+ }[];
907
+ pages?: AXPEntityPage[];
908
+ groups?: AXPEntityPropertyGroup[];
909
+ properties: AXPEntityProperty[];
910
+ formats: {
911
+ individual: string;
912
+ plural: string;
913
+ lookup?: string;
914
+ displayName?: string;
915
+ searchResult?: {
916
+ title: string;
917
+ description?: string;
918
+ };
919
+ };
920
+ columns?: AXPEntityTableColumn[];
921
+ validations?: AXPValidationRules;
922
+ interfaces?: {
923
+ master?: {
924
+ single?: AXPEntityMasterSingleLayoutView;
925
+ list?: AXPEntityMasterListView;
926
+ create?: AXPEntityMasterCreateLayoutView;
927
+ update?: AXPEntityMasterUpdateLayoutView;
928
+ };
929
+ detail?: {
930
+ list?: AXPEntityDetailListView;
931
+ };
932
+ };
933
+ }
934
+
935
+ declare function entityMasterCreateAction(): AXPEntityAction;
936
+ declare function entityMasterEditAction(): AXPEntityAction;
937
+ declare function entityMasterBulkDeleteAction(): AXPEntityAction;
938
+ declare function entityMasterViewAction(): AXPEntityAction;
939
+ declare function entityMasterDeleteAction(): AXPEntityAction;
940
+ declare function entityMasterCrudActions(options?: {
941
+ create?: boolean;
942
+ delete?: boolean;
943
+ view?: boolean;
944
+ edit?: boolean;
945
+ }): AXPEntityAction[];
946
+ declare function entityMasterRecordActions(): AXPEntityAction[];
947
+ declare function entityDetailsCreateActions(parentId: string): AXPEntityAction;
948
+ declare function entityDetailsCreateActionsDeferredParent(): AXPEntityAction;
949
+ declare function mergeForeignKeyFieldIntoCreateActions(foreignKeyField: string | undefined, actions: AXPEntityAction[] | undefined): AXPEntityAction[];
950
+ declare function collectNestedCreateHiddenProperties(relatedEntity: AXPRelatedEntity): string[] | undefined;
951
+ declare function entityDetailsSimpleCondition(fk: string): AXPQueryFilter;
952
+ declare function entityDetailsReferenceCondition(type: string): AXPQueryFilter[];
953
+ declare function entityDetailsEditAction(): AXPEntityAction;
954
+ declare function entityDetailsNewEditAction(): AXPEntityAction;
955
+ declare function entityOverrideDetailsViewAction(): AXPEntityAction;
956
+ declare function entityDetailsCrudActions(parentId?: string, options?: {
957
+ create?: boolean;
958
+ delete?: boolean;
959
+ view?: boolean;
960
+ edit?: boolean;
961
+ }): AXPEntityAction[];
962
+ declare function entityDetailsReferenceCreateActions(type: string): AXPEntityAction[];
963
+
964
+ /** Platform entity layout datasource registry names. */
965
+ declare const AXPEntityDataSourceKeys: {
966
+ readonly Entities: "entities";
967
+ };
968
+
969
+ /**
970
+ * Regional and locale-related setting keys used by platform widgets and components.
971
+ * Most values use the `LocaleManagement:Setting:Regional.*` prefix; definitions live in the locale-management module where applicable.
972
+ */
973
+ declare enum AXPRegionalSetting {
974
+ LocaleProfile = "LocaleManagement:Setting:Regional.LocaleProfile",
975
+ TimeZone = "LocaleManagement:Setting:Regional.TimeZone",
976
+ Language = "LocaleManagement:Setting:Regional.Language",
977
+ Country = "LocaleManagement:Setting:Regional.Country",
978
+ Calendar = "LocaleManagement:Setting:Regional.Calendar",
979
+ /** User-selected holiday calendars shown on the task board and other calendar views. */
980
+ CalendarEvents = "LocaleManagement:Setting:Regional.CalendarEvents",
981
+ FirstDayOfWeek = "LocaleManagement:Setting:Regional.FirstDayOfWeek",
982
+ WeekendDays = "LocaleManagement:Setting:Regional.WeekendDays",
983
+ ShortDate = "LocaleManagement:Setting:Regional.ShortDate",
984
+ MediumDate = "LocaleManagement:Setting:Regional.MediumDate",
985
+ LongDate = "LocaleManagement:Setting:Regional.LongDate",
986
+ ShortTime = "LocaleManagement:Setting:Regional.ShortTime",
987
+ MediumTime = "LocaleManagement:Setting:Regional.MediumTime",
988
+ LongTime = "LocaleManagement:Setting:Regional.LongTime",
989
+ MeasurementUnits = "LocaleManagement:Setting:Regional.MeasurementUnits",
990
+ TemperatureUnits = "LocaleManagement:Setting:Regional.TemperatureUnits",
991
+ DistanceUnits = "LocaleManagement:Setting:Regional.DistanceUnits",
992
+ WeightUnits = "LocaleManagement:Setting:Regional.WeightUnits",
993
+ VolumeUnits = "LocaleManagement:Setting:Regional.VolumeUnits",
994
+ SpeedUnits = "LocaleManagement:Setting:Regional.SpeedUnits",
995
+ AreaUnits = "LocaleManagement:Setting:Regional.AreaUnits",
996
+ /** Default multi-language behavior for standard text field names; defined in locale-management `AXMRegionalSettingProvider`. */
997
+ MultiLanguageSupport = "LocaleManagement:Setting:Regional.MultiLanguageSupport"
998
+ }
999
+
1000
+ type AXPWidgetRenderMode = 'view' | 'edit' | 'designer' | 'print' | 'column' | 'filter';
1001
+ interface AXPWidgetNode {
1002
+ type: string;
1003
+ mode?: AXPWidgetRenderMode;
1004
+ path?: string;
1005
+ name?: string;
1006
+ visible?: boolean | AXPExpression;
1007
+ defaultValue?: unknown;
1008
+ children?: AXPWidgetNode[];
1009
+ options?: AXPOptionsData;
1010
+ triggers?: AXPWidgetTriggers;
1011
+ meta?: AXPMetaData;
1012
+ valueTransforms?: AXPValueTransformerFunctions;
1013
+ }
1014
+
1015
+ declare const AXPWidgetsList: {
1016
+ Editors: {
1017
+ DocumentAttachment: string;
1018
+ TagEditor: string;
1019
+ CheckBox: string;
1020
+ ColorBox: string;
1021
+ ColorPalette: string;
1022
+ DateTimeBox: string;
1023
+ AddressBox: string;
1024
+ Direction: string;
1025
+ LargeTextBox: string;
1026
+ NumberBox: string;
1027
+ UnitValueBox: string;
1028
+ PasswordBox: string;
1029
+ QueryBuilder: string;
1030
+ RichText: string;
1031
+ SelectBox: string;
1032
+ SelectionList: string;
1033
+ TextBox: string;
1034
+ InlineDataTable: string;
1035
+ ToggleSwitch: string;
1036
+ FileTypeExtension: string;
1037
+ MapBox: string;
1038
+ MediaGallery: string;
1039
+ SignatureBox: string;
1040
+ LookupBox: string;
1041
+ MultiSourceSelector: string;
1042
+ EntityCategory: string;
1043
+ ContactBox: string;
1044
+ MetaDataBox: string;
1045
+ TemplateBox: string;
1046
+ TemplateContentEditor: string;
1047
+ TimeDuration: string;
1048
+ DocumentUploader: string;
1049
+ MetaSelector: string;
1050
+ MetaDataForm: string;
1051
+ ColumnFilterSelector: string;
1052
+ DataListFilter: string;
1053
+ ListEditor: string;
1054
+ ConnectedListsEditor: string;
1055
+ SkillMatrix: string;
1056
+ ResponsibilitiesMatrix: string;
1057
+ RiskMatrix: string;
1058
+ ProgressBox: string;
1059
+ RatePicker: string;
1060
+ ActivityCommandConfigurator: string;
1061
+ WorkflowConfigurator: string;
1062
+ };
1063
+ Layouts: {
1064
+ AlertBox: string;
1065
+ BadgeLayout: string;
1066
+ BlockLayout: string;
1067
+ RepeaterLayout: string;
1068
+ TextBlockLayout: string;
1069
+ FormField: string;
1070
+ PanelLayout: string;
1071
+ PageLayout: string;
1072
+ DocumentLayout: string;
1073
+ GridRowLayout: string;
1074
+ GridItemLayout: string;
1075
+ GridLayout: string;
1076
+ FlexLayout: string;
1077
+ FlexItemLayout: string;
1078
+ AdvancedGridLayout: string;
1079
+ AdvancedGridItemLayout: string;
1080
+ FieldsetLayout: string;
1081
+ TabsetLayout: string;
1082
+ TabsetItemLayout: string;
1083
+ };
1084
+ Actions: {
1085
+ ActionButton: string;
1086
+ };
1087
+ Advanced: {
1088
+ CodeEditor: string;
1089
+ JsonViewer: string;
1090
+ OutcomeResultsViewer: string;
1091
+ QRCode: string;
1092
+ schedulerPicker: string;
1093
+ Signature: string;
1094
+ Map: string;
1095
+ Gallery: string;
1096
+ Image: string;
1097
+ ImageMarker: string;
1098
+ Avatar: string;
1099
+ Attachments: string;
1100
+ DataList: string;
1101
+ ListToolbar: string;
1102
+ CronJob: string;
1103
+ Status: string;
1104
+ WidgetFieldConfigurator: string;
1105
+ AnswersViewer: string;
1106
+ };
1107
+ Templates: {
1108
+ Designer: string;
1109
+ Template: string;
1110
+ };
1111
+ Entity: {
1112
+ EntityList: string;
1113
+ SelectorStructure: string;
1114
+ };
1115
+ Providers: {
1116
+ EntityDefinition: string;
1117
+ };
1118
+ ExpressionBuilders: {
1119
+ ConditionBuilder: string;
1120
+ };
1121
+ Theme: {
1122
+ ThemeColorChooser: string;
1123
+ IconChooser: string;
1124
+ FontSizeChooser: string;
1125
+ FontStyleChooser: string;
1126
+ };
1127
+ };
1128
+
1129
+ declare const AXPWidgetsCatalog: {
1130
+ readonly timeDuration: "time-duration";
1131
+ readonly timeDurationFilter: "time-duration-filter";
1132
+ readonly checkbox: "checkbox-editor";
1133
+ readonly color: "color-editor";
1134
+ readonly connectedLists: "connected-lists-editor";
1135
+ readonly contact: "contact-editor";
1136
+ readonly dateTime: "date-time-editor";
1137
+ readonly largeText: "large-text-editor";
1138
+ readonly number: "number-editor";
1139
+ readonly numberUnit: "number-unit-editor";
1140
+ readonly password: "password-editor";
1141
+ readonly richText: "rich-text-editor";
1142
+ readonly select: "select-editor";
1143
+ readonly selectionList: "selection-list-editor";
1144
+ readonly text: "text-editor";
1145
+ readonly table: "table-editor";
1146
+ readonly toggle: "toggle-editor";
1147
+ readonly blockLayout: "block-layout";
1148
+ readonly pageLayout: "page-layout";
1149
+ readonly repeaterLayout: "repeater-layout";
1150
+ readonly textBlockLayout: "text-block-layout";
1151
+ readonly alertBoxLayout: "alert-box-layout";
1152
+ readonly badgeLayout: "badge-layout";
1153
+ readonly attachments: "attachments";
1154
+ readonly fileTypeExtension: "file-type-extension";
1155
+ readonly map: "map";
1156
+ readonly imageMarker: "image-marker";
1157
+ readonly image: "image";
1158
+ readonly gallery: "gallery";
1159
+ readonly signature: "signature";
1160
+ readonly buttonAction: "button-action";
1161
+ readonly document: "document-layout";
1162
+ readonly lookup: "lookup-editor";
1163
+ readonly formField: "form-field";
1164
+ readonly qrcode: "qrcode";
1165
+ readonly schedulerPicker: "scheduler-picker";
1166
+ readonly advancedGrid: "advanced-grid-layout";
1167
+ readonly advancedGridItem: "advanced-grid-item-layout";
1168
+ readonly grid: "grid-layout";
1169
+ readonly gridItem: "grid-item-layout";
1170
+ readonly template: "template";
1171
+ readonly templateDesigner: "template-designer";
1172
+ readonly cronJob: "cron-job";
1173
+ readonly spacing: "spacing";
1174
+ readonly direction: "direction";
1175
+ readonly border: "border";
1176
+ readonly flexLayout: "flex-layout";
1177
+ readonly flexItem: "flex-item-layout";
1178
+ readonly tableLayout: "table-layout";
1179
+ readonly tableItem: "table-item-layout";
1180
+ readonly avatar: "avatar";
1181
+ readonly themeModeChooser: "theme-mode-chooser";
1182
+ readonly menuOrientationChooser: "menu-orientation-chooser";
1183
+ readonly fontStyleChooser: "font-style-chooser";
1184
+ readonly fontSizeChooser: "font-size-chooser";
1185
+ readonly iconChooser: "icon-chooser";
1186
+ readonly icon: "icon";
1187
+ readonly themeColorChooser: "theme-color-chooser";
1188
+ readonly gridOptions: "grid-options";
1189
+ readonly gridItemOptions: "grid-item-options";
1190
+ readonly advancedGridOptions: "advanced-grid-options";
1191
+ readonly stringFilter: "string-filter";
1192
+ readonly numberFilter: "number-filter";
1193
+ readonly dateTimeFilter: "datetime-filter";
1194
+ readonly booleanFilter: "boolean-filter";
1195
+ readonly lookupFilter: "lookup-filter";
1196
+ readonly flexOptions: "flex-options";
1197
+ readonly flexItemOptions: "flex-item-options";
1198
+ readonly selectFilter: "select-filter";
1199
+ readonly requiredValidation: "required-validation";
1200
+ readonly regularExpressionValidation: "regular-expression-validation";
1201
+ readonly minLengthValidation: "min-length-validation";
1202
+ readonly maxLengthValidation: "max-length-validation";
1203
+ readonly lessThanValidation: "less-than-validation";
1204
+ readonly greaterThanValidation: "greater-than-validation";
1205
+ readonly betweenValidation: "between-validation";
1206
+ readonly equalValidation: "equal-validation";
1207
+ readonly callbackValidation: "callback-validation";
1208
+ readonly metaData: "meta-data-editor";
1209
+ readonly templateEditor: "template-box-editor";
1210
+ readonly templateContentEditor: "template-content-editor";
1211
+ readonly panel: "panel";
1212
+ readonly notification: "notification";
1213
+ readonly comment: "comment";
1214
+ readonly list: "list-editor";
1215
+ readonly dataList: "data-list";
1216
+ readonly listToolbar: "list-toolbar";
1217
+ readonly entityList: "entity-list";
1218
+ readonly pageComponent: "page-component";
1219
+ readonly editorJs: "editor-js-editor";
1220
+ readonly documentUploader: "document-uploader";
1221
+ readonly stepWizard: "step-wizard";
1222
+ readonly progressBar: "progress-bar-editor";
1223
+ readonly rate: "rate-picker-editor";
1224
+ readonly documentFileTypeFilter: "document-file-type-filter";
1225
+ readonly entityDefinitionProvider: "entity-definition-provider-editor";
1226
+ };
3
1227
 
4
1228
  /**
5
1229
  * Address mode type - determines the display mode of the address widget
@@ -57,6 +1281,21 @@ interface AXPWorkflowDefinition {
57
1281
  */
58
1282
  bindings?: AXPWorkflowBinding[];
59
1283
  }
1284
+ /**
1285
+ * Workflow Category - Extends AXPCategoryEntity for consistency and performance
1286
+ *
1287
+ * Inherited properties from AXPCategoryEntity:
1288
+ * - id: string - Unique identifier
1289
+ * - title: string - Display name
1290
+ * - description?: string - Category description
1291
+ * - parentId?: string - Parent category ID
1292
+ * - childrenCount: number - Direct child categories count (enables lazy loading)
1293
+ * - itemsCount?: number - Direct workflows count
1294
+ * - totalChildrenCount?: number - Total nested categories (optional, for analytics)
1295
+ * - totalItemsCount?: number - Total workflows in tree (optional, for analytics)
1296
+ */
1297
+ interface AXPWorkflowCategory extends AXPCategoryEntity {
1298
+ }
60
1299
  interface AXPWorkflowGraph {
61
1300
  startActivityId: string;
62
1301
  activities: AXPWorkflowActivityInstance[];
@@ -936,5 +2175,441 @@ interface AXPMetaDataDefinition {
936
2175
  features?: AXPMetaDataFeatures;
937
2176
  }
938
2177
 
939
- export { AXPFileStorageStatus, AXP_PREVIEW_WIDGET_FIELD_COMMAND_KEY };
940
- export type { AXPActivityCategory, AXPActivityDefinition, AXPActivityDefinitionCategoryRef, AXPActivityDefinitionQueryResult, AXPActivityExecutionContextState, AXPActivityIncident, AXPActivityStatus, AXPActivityVariable, AXPAddressData, AXPAddressLabel, AXPAddressMode, AXPBookmark, AXPCompletionCallbackState, AXPConnection, AXPElsaWorkflowExtensions, AXPExceptionState, AXPFileManyStorageInfo, AXPFileStorageCreateRequest, AXPFileStorageFindRequest, AXPFileStorageInfo, AXPFileStorageUpdateRequest, AXPMetaDataDefinition, AXPMetaDataFeatures, AXPTaskType, AXPWorkflowActivityInstance, AXPWorkflowBinding, AXPWorkflowContinuationBeforeInteractive, AXPWorkflowContinuationMetadata, AXPWorkflowDefinition, AXPWorkflowExtensions, AXPWorkflowFaultState, AXPWorkflowGraph, AXPWorkflowInstance, AXPWorkflowOutputProperty, AXPWorkflowState, AXPWorkflowStatus, AXPWorkflowSubStatus };
2178
+ /** JSON data primitive for the specialist final deliverable. */
2179
+ type AXPAgentOutputKind = 'string' | 'object' | 'array';
2180
+ /** When `kind` is `object`, controls how the parsed value maps into chat transcript segments. */
2181
+ type AXPOutputTranscriptSegmentId = 'text' | 'node' | 'followUp' | 'file';
2182
+
2183
+ type AXPSpreadsheetCellValue = string | null;
2184
+ /** Matrix data: row id → column id → cell value id */
2185
+ type AXPSpreadsheetData = Record<string, Record<string, AXPSpreadsheetCellValue>>;
2186
+
2187
+ /** Standard system status types used across the platform. */
2188
+ declare enum AXPSystemStatusType {
2189
+ Todo = "todo",
2190
+ InProgress = "in-progress",
2191
+ InReview = "in-review",
2192
+ Open = "open",
2193
+ Closed = "closed",
2194
+ Blocked = "blocked",
2195
+ Done = "done",
2196
+ Cancelled = "cancelled",
2197
+ Draft = "draft",
2198
+ PendingReview = "pending-review",
2199
+ WaitingSignOff = "waiting-sign-off",
2200
+ WaitingApproval = "waiting-approval",
2201
+ Approved = "approved",
2202
+ Published = "published",
2203
+ Archived = "archived",
2204
+ Rejected = "rejected",
2205
+ Active = "active",
2206
+ Inactive = "inactive",
2207
+ Pending = "pending",
2208
+ Completed = "completed",
2209
+ Suspended = "suspended",
2210
+ Failed = "failed",
2211
+ Review = "review",
2212
+ Expired = "expired"
2213
+ }
2214
+
2215
+ /**
2216
+ * Status Definition Types
2217
+ * Defines the structure for status definitions and their transitions
2218
+ */
2219
+ /**
2220
+ * Status definition with metadata
2221
+ */
2222
+ interface AXPStatusDefinition {
2223
+ /**
2224
+ * Unique identifier for the status
2225
+ */
2226
+ name: string;
2227
+ /**
2228
+ * Display title for the status
2229
+ */
2230
+ title: string;
2231
+ /**
2232
+ * Color code or semantic color name for the status
2233
+ */
2234
+ color: string;
2235
+ /**
2236
+ * Optional icon class (e.g., 'fa-light fa-check')
2237
+ */
2238
+ icon?: string;
2239
+ /**
2240
+ * Optional description
2241
+ */
2242
+ description?: string;
2243
+ /**
2244
+ * Optional order for sorting
2245
+ */
2246
+ order?: number;
2247
+ /**
2248
+ * Whether this is a final status (end state)
2249
+ */
2250
+ isFinal?: boolean;
2251
+ /**
2252
+ * Whether this is an initial status (starting state)
2253
+ */
2254
+ isInitial?: boolean;
2255
+ /**
2256
+ * Whether list views should be automatically generated for this status
2257
+ */
2258
+ generateView?: boolean;
2259
+ }
2260
+ /**
2261
+ * Status transition definition
2262
+ */
2263
+ interface AXPStatusTransition {
2264
+ /**
2265
+ * Source status name
2266
+ */
2267
+ from: string;
2268
+ /**
2269
+ * Target status name
2270
+ */
2271
+ to: string;
2272
+ /**
2273
+ * Optional condition expression to evaluate before allowing transition
2274
+ * Uses expression evaluator syntax (e.g., "{{user.isAdmin}}", "{{item.priority > 5}}")
2275
+ */
2276
+ condition?: string;
2277
+ /**
2278
+ * Optional display title for the transition
2279
+ */
2280
+ title?: string;
2281
+ /**
2282
+ * Optional description
2283
+ */
2284
+ description?: string;
2285
+ /**
2286
+ * Optional command descriptor to execute for this transition
2287
+ * If not provided, defaults to Entity:UpdateStatus with entity, id, and status
2288
+ */
2289
+ command?: {
2290
+ name: string;
2291
+ options?: Record<string, unknown>;
2292
+ };
2293
+ /**
2294
+ * Whether this transition is automatic (no user action required)
2295
+ */
2296
+ isAutomatic?: boolean;
2297
+ /**
2298
+ * Whether this transition requires approval
2299
+ */
2300
+ requiresApproval?: boolean;
2301
+ }
2302
+ /**
2303
+ * Abstract class for status providers
2304
+ * Similar to AXPTaskBadgeProvider pattern
2305
+ */
2306
+ declare abstract class AXPStatusProvider {
2307
+ /**
2308
+ * Unique key for the status (e.g., 'task-management.status')
2309
+ */
2310
+ abstract readonly key: string;
2311
+ /**
2312
+ * List of available status definitions
2313
+ */
2314
+ abstract readonly statuses: AXPStatusDefinition[];
2315
+ /**
2316
+ * List of allowed transitions between statuses
2317
+ */
2318
+ abstract readonly transitions: AXPStatusTransition[];
2319
+ /**
2320
+ * Optional default status name
2321
+ */
2322
+ abstract readonly defaultStatus?: string;
2323
+ }
2324
+
2325
+ /**
2326
+ * Standard system status definitions
2327
+ * Provides consistent status definitions across the platform
2328
+ * Uses AXPStatusDefinition interface from status-definition.types.ts
2329
+ */
2330
+ declare const AXPSystemStatuses: Readonly<{
2331
+ readonly Open: {
2332
+ readonly name: AXPSystemStatusType.Open;
2333
+ readonly title: string;
2334
+ readonly icon: "fa-light fa-circle";
2335
+ readonly color: "secondary";
2336
+ readonly description: string;
2337
+ readonly order: 1;
2338
+ readonly isInitial: true;
2339
+ readonly isFinal: false;
2340
+ };
2341
+ readonly Closed: {
2342
+ readonly name: AXPSystemStatusType.Closed;
2343
+ readonly title: string;
2344
+ readonly icon: "fa-light fa-circle";
2345
+ readonly color: "danger";
2346
+ readonly description: string;
2347
+ readonly order: 2;
2348
+ readonly isInitial: false;
2349
+ readonly isFinal: true;
2350
+ };
2351
+ readonly Todo: {
2352
+ readonly name: AXPSystemStatusType.Todo;
2353
+ readonly title: string;
2354
+ readonly icon: "fa-light fa-circle";
2355
+ readonly color: "secondary";
2356
+ readonly description: string;
2357
+ readonly order: 1;
2358
+ readonly isInitial: true;
2359
+ readonly isFinal: false;
2360
+ };
2361
+ readonly InProgress: {
2362
+ readonly name: AXPSystemStatusType.InProgress;
2363
+ readonly title: string;
2364
+ readonly icon: "fa-light fa-play";
2365
+ readonly color: "info";
2366
+ readonly description: string;
2367
+ readonly order: 2;
2368
+ readonly isInitial: false;
2369
+ readonly isFinal: false;
2370
+ };
2371
+ readonly InReview: {
2372
+ readonly name: AXPSystemStatusType.InReview;
2373
+ readonly title: string;
2374
+ readonly icon: "fa-light fa-eye";
2375
+ readonly color: "info";
2376
+ readonly description: string;
2377
+ readonly order: 3;
2378
+ readonly isInitial: false;
2379
+ readonly isFinal: false;
2380
+ };
2381
+ readonly Blocked: {
2382
+ readonly name: AXPSystemStatusType.Blocked;
2383
+ readonly title: string;
2384
+ readonly icon: "fa-light fa-ban";
2385
+ readonly color: "danger";
2386
+ readonly description: string;
2387
+ readonly order: 4;
2388
+ readonly isInitial: false;
2389
+ readonly isFinal: false;
2390
+ };
2391
+ readonly Done: {
2392
+ readonly name: AXPSystemStatusType.Done;
2393
+ readonly title: string;
2394
+ readonly icon: "fa-light fa-check-circle";
2395
+ readonly color: "success";
2396
+ readonly description: string;
2397
+ readonly order: 5;
2398
+ readonly isInitial: false;
2399
+ readonly isFinal: true;
2400
+ };
2401
+ readonly Cancelled: {
2402
+ readonly name: AXPSystemStatusType.Cancelled;
2403
+ readonly title: string;
2404
+ readonly icon: "fa-light fa-times-circle";
2405
+ readonly color: "neutral";
2406
+ readonly description: string;
2407
+ readonly order: 6;
2408
+ readonly isInitial: false;
2409
+ readonly isFinal: true;
2410
+ };
2411
+ readonly Draft: {
2412
+ readonly name: AXPSystemStatusType.Draft;
2413
+ readonly title: string;
2414
+ readonly icon: "fa-light fa-file-pen";
2415
+ readonly color: "neutral";
2416
+ readonly description: string;
2417
+ readonly order: 1;
2418
+ readonly isInitial: true;
2419
+ readonly isFinal: false;
2420
+ };
2421
+ readonly PendingReview: {
2422
+ readonly name: AXPSystemStatusType.PendingReview;
2423
+ readonly title: string;
2424
+ readonly icon: "fa-light fa-clock";
2425
+ readonly color: "warning";
2426
+ readonly description: string;
2427
+ readonly order: 2;
2428
+ readonly isInitial: false;
2429
+ readonly isFinal: false;
2430
+ };
2431
+ readonly WaitingSignOff: {
2432
+ readonly name: AXPSystemStatusType.WaitingSignOff;
2433
+ readonly title: string;
2434
+ readonly icon: "fa-light fa-clock";
2435
+ readonly color: "warning";
2436
+ readonly description: string;
2437
+ readonly order: 3;
2438
+ readonly isInitial: false;
2439
+ readonly isFinal: false;
2440
+ };
2441
+ readonly WaitingApproval: {
2442
+ readonly name: AXPSystemStatusType.WaitingApproval;
2443
+ readonly title: string;
2444
+ readonly icon: "fa-light fa-clock";
2445
+ readonly color: "warning";
2446
+ readonly description: string;
2447
+ readonly order: 1;
2448
+ readonly isInitial: true;
2449
+ readonly isFinal: false;
2450
+ };
2451
+ readonly Approved: {
2452
+ readonly name: AXPSystemStatusType.Approved;
2453
+ readonly title: string;
2454
+ readonly icon: "fa-light fa-check-circle";
2455
+ readonly color: "success";
2456
+ readonly description: string;
2457
+ readonly order: 3;
2458
+ readonly isInitial: false;
2459
+ readonly isFinal: false;
2460
+ };
2461
+ readonly Published: {
2462
+ readonly name: AXPSystemStatusType.Published;
2463
+ readonly title: string;
2464
+ readonly icon: "fa-light fa-globe";
2465
+ readonly color: "primary";
2466
+ readonly description: string;
2467
+ readonly order: 4;
2468
+ readonly isInitial: false;
2469
+ readonly isFinal: false;
2470
+ };
2471
+ readonly Archived: {
2472
+ readonly name: AXPSystemStatusType.Archived;
2473
+ readonly title: string;
2474
+ readonly icon: "fa-light fa-archive";
2475
+ readonly color: "danger";
2476
+ readonly description: string;
2477
+ readonly order: 5;
2478
+ readonly isInitial: false;
2479
+ readonly isFinal: true;
2480
+ };
2481
+ readonly Rejected: {
2482
+ readonly name: AXPSystemStatusType.Rejected;
2483
+ readonly title: string;
2484
+ readonly icon: "fa-light fa-times-circle";
2485
+ readonly color: "danger";
2486
+ readonly description: string;
2487
+ readonly order: 6;
2488
+ readonly isInitial: false;
2489
+ readonly isFinal: true;
2490
+ };
2491
+ readonly Active: {
2492
+ readonly name: AXPSystemStatusType.Active;
2493
+ readonly title: string;
2494
+ readonly icon: "fa-light fa-check-circle";
2495
+ readonly color: "success";
2496
+ readonly description: string;
2497
+ readonly order: 1;
2498
+ readonly isInitial: false;
2499
+ readonly isFinal: false;
2500
+ };
2501
+ readonly Inactive: {
2502
+ readonly name: AXPSystemStatusType.Inactive;
2503
+ readonly title: string;
2504
+ readonly icon: "fa-light fa-circle";
2505
+ readonly color: "secondary";
2506
+ readonly description: string;
2507
+ readonly order: 2;
2508
+ readonly isInitial: false;
2509
+ readonly isFinal: false;
2510
+ };
2511
+ readonly Pending: {
2512
+ readonly name: AXPSystemStatusType.Pending;
2513
+ readonly title: string;
2514
+ readonly icon: "fa-light fa-clock";
2515
+ readonly color: "warning";
2516
+ readonly description: string;
2517
+ readonly order: 1;
2518
+ readonly isInitial: true;
2519
+ readonly isFinal: false;
2520
+ };
2521
+ readonly Completed: {
2522
+ readonly name: AXPSystemStatusType.Completed;
2523
+ readonly title: string;
2524
+ readonly icon: "fa-light fa-check-circle";
2525
+ readonly color: "success";
2526
+ readonly description: string;
2527
+ readonly order: 10;
2528
+ readonly isInitial: false;
2529
+ readonly isFinal: true;
2530
+ };
2531
+ readonly Suspended: {
2532
+ readonly name: AXPSystemStatusType.Suspended;
2533
+ readonly title: string;
2534
+ readonly icon: "fa-light fa-pause-circle";
2535
+ readonly color: "neutral";
2536
+ readonly description: string;
2537
+ readonly order: 5;
2538
+ readonly isInitial: false;
2539
+ readonly isFinal: false;
2540
+ };
2541
+ readonly Failed: {
2542
+ readonly name: AXPSystemStatusType.Failed;
2543
+ readonly title: string;
2544
+ readonly icon: "fa-light fa-xmark-circle";
2545
+ readonly color: "danger";
2546
+ readonly description: string;
2547
+ readonly order: 10;
2548
+ readonly isInitial: false;
2549
+ readonly isFinal: true;
2550
+ };
2551
+ readonly Review: {
2552
+ readonly name: AXPSystemStatusType.Review;
2553
+ readonly title: string;
2554
+ readonly icon: "fa-light fa-eye";
2555
+ readonly color: "info";
2556
+ readonly description: string;
2557
+ readonly order: 3;
2558
+ };
2559
+ readonly Expired: {
2560
+ readonly name: AXPSystemStatusType.Expired;
2561
+ readonly title: string;
2562
+ readonly icon: "fa-light fa-clock";
2563
+ readonly color: "danger";
2564
+ readonly description: string;
2565
+ readonly order: 10;
2566
+ readonly isInitial: false;
2567
+ readonly isFinal: true;
2568
+ };
2569
+ }>;
2570
+ /**
2571
+ * Get system status definition by type
2572
+ * @param type - Status type
2573
+ * @returns System status definition or undefined
2574
+ */
2575
+ declare function getSystemStatus(type: AXPSystemStatusType): AXPStatusDefinition;
2576
+ /**
2577
+ * Resolves the visual appearance (color and icon) for status
2578
+ * using the system statuses from the core module.
2579
+ * @param statusType - Status type string
2580
+ * @returns Color and icon for the status
2581
+ */
2582
+ declare function resolveStatusLook(statusType: string): {
2583
+ color: AXStyleColorType;
2584
+ icon: string;
2585
+ };
2586
+ /**
2587
+ * Resolves the complete status information (title, description, icon, color) for a status
2588
+ * using the system statuses from the core module.
2589
+ * @param statusType - Status type string
2590
+ * @returns Complete status information as AXPStatusDefinition
2591
+ */
2592
+ declare function getStatusInfo(statusType: string): AXPStatusDefinition;
2593
+ /**
2594
+ * Get system status definition directly (no conversion needed since it's already AXPStatusDefinition)
2595
+ * @param statusType - Status type
2596
+ * @param overrides - Optional overrides for the status definition
2597
+ * @returns AXPStatusDefinition
2598
+ */
2599
+ declare function systemStatusToDefinition(statusType: AXPSystemStatusType, overrides?: Partial<AXPStatusDefinition>): AXPStatusDefinition;
2600
+
2601
+ interface AXPMultiSourceRef {
2602
+ sourceKey: string;
2603
+ refId?: string;
2604
+ displayName: string;
2605
+ data?: unknown;
2606
+ meta?: Record<string, unknown>;
2607
+ }
2608
+
2609
+ interface AXPLogoConfig {
2610
+ width?: number;
2611
+ height?: number;
2612
+ }
2613
+
2614
+ export { AXPDataGenerator, AXPEntityCommandScope, AXPEntityDataSourceKeys, AXPEntityQueryType, AXPEntityType, AXPFileStorageStatus, AXPRegionalSetting, AXPRelationshipCardinality, AXPRelationshipKind, AXPStatusProvider, AXPSystemActionType, AXPSystemStatusType, AXPSystemStatuses, AXPWidgetsCatalog, AXPWidgetsList, AXP_PREVIEW_WIDGET_FIELD_COMMAND_KEY, collectNestedCreateHiddenProperties, createAllQueryView, createMultiLanguageString, createQueryView, entityDetailsCreateActions, entityDetailsCreateActionsDeferredParent, entityDetailsCrudActions, entityDetailsEditAction, entityDetailsNewEditAction, entityDetailsReferenceCondition, entityDetailsReferenceCreateActions, entityDetailsSimpleCondition, entityMasterBulkDeleteAction, entityMasterCreateAction, entityMasterCrudActions, entityMasterDeleteAction, entityMasterEditAction, entityMasterRecordActions, entityMasterViewAction, entityOverrideDetailsViewAction, getEntityInfo, getStatusInfo, getSystemStatus, isCardFieldBadgeDisplay, mergeForeignKeyFieldIntoCreateActions, resolveCardFieldBadgeColor, resolveDefaultMasterListLayout, resolveEnabledMasterListLayouts, resolveMultiLanguageString, resolveStatusLook, systemStatusToDefinition };
2615
+ export type { AXDataSourceFilterOption, AXDataSourceOperator, AXDataSourceOperatorType, AXEntityPropertyWidget, AXFilterLogic, AXPActivityCategory, AXPActivityDefinition, AXPActivityDefinitionCategoryRef, AXPActivityDefinitionQueryResult, AXPActivityExecutionContextState, AXPActivityIncident, AXPActivityStatus, AXPActivityVariable, AXPAddressData, AXPAddressLabel, AXPAddressMode, AXPAgentOutputKind, AXPAggregate, AXPApplication, AXPAuditEvent, AXPBookmark, AXPCardBadgeColor, AXPCardBadgeDisplay, AXPCardBadgeDisplayOptions, AXPCardField, AXPCardFieldDisplay, AXPCardFieldDisplayConfig, AXPCategorizedEntity, AXPCategorizedEntityDto, AXPCategoryEntity, AXPCategoryEntityWithItems, AXPCategoryListItem, AXPColumnAlign, AXPColumnContentAlign, AXPCommandActionCallback, AXPCommandActionDisplay, AXPCommandActionLook, AXPCommandActionPriority, AXPCommandActionType, AXPCompletionCallbackState, AXPConnection, AXPContent, AXPContentType, AXPDataType, AXPElsaWorkflowExtensions, AXPEntity, AXPEntityAction, AXPEntityCategoryPlugin, AXPEntityCommand, AXPEntityCreateDto, AXPEntityDetailDto, AXPEntityDetailListView, AXPEntityDisplayField, AXPEntityListItemDto, AXPEntityMasterCreateLayoutView, AXPEntityMasterLayoutView, AXPEntityMasterListDisplayMode, AXPEntityMasterListLayoutOption, AXPEntityMasterListLayoutType, AXPEntityMasterListView, AXPEntityMasterSingleLayoutView, AXPEntityMasterUpdateLayoutView, AXPEntityModel, AXPEntityOp, AXPEntityOutputDto, AXPEntityPage, AXPEntityProperty, AXPEntityPropertyCreateView, AXPEntityPropertyGroup, AXPEntityPropertyLayoutConfig, AXPEntityPropertyUpdateView, AXPEntityPropertyView, AXPEntityQuery, AXPEntityQuickCreate, AXPEntityReference, AXPEntitySectionView, AXPEntityTableColumn, AXPEntityUpdateDto, AXPEntityV2, AXPEntityVersionHistory, AXPExceptionState, AXPExpression, AXPFileListItem, AXPFileManyStorageInfo, AXPFileSource, AXPFileStatus, AXPFileStorageCreateRequest, AXPFileStorageFindRequest, AXPFileStorageInfo, AXPFileStorageUpdateRequest, AXPFilterClause, AXPFilterDefinition, AXPFilterQuery, AXPFilterTriggerDefinition, AXPGridLayoutOptions, AXPGridPlacement, AXPLogoConfig, AXPMetaData, AXPMetaDataDefinition, AXPMetaDataFeatures, AXPMockDto, AXPModule, AXPMultiLanguageString, AXPMultiSourceRef, AXPOptionsData, AXPOutputTranscriptSegmentId, AXPProperty, AXPPropertyGroup, AXPPropertyInterface, AXPQueryFilter, AXPQuerySort, AXPQueryView, AXPRecordAuditInfo, AXPRecordOwnershipInfo, AXPRecordStateInfo, AXPRecordWorkflowInfo, AXPRelatedEntity, AXPRelationship, AXPSpreadsheetCellValue, AXPSpreadsheetData, AXPStatusDefinition, AXPStatusTransition, AXPTaskType, AXPUserReference, AXPValidationRule, AXPValidationRules, AXPValueTransformerFunction, AXPValueTransformerFunctions, AXPWidgetNode, AXPWidgetRenderMode, AXPWidgetTrigger, AXPWidgetTriggers, AXPWorkflowActivityInstance, AXPWorkflowBinding, AXPWorkflowCategory, AXPWorkflowContinuationBeforeInteractive, AXPWorkflowContinuationMetadata, AXPWorkflowDefinition, AXPWorkflowExtensions, AXPWorkflowFaultState, AXPWorkflowGraph, AXPWorkflowInstance, AXPWorkflowOutputProperty, AXPWorkflowState, AXPWorkflowStatus, AXPWorkflowSubStatus, AXPopupSizeType, AXStyleColorType };