@acorex/platform 21.0.0-next.72 → 21.0.0-next.74

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 (39) hide show
  1. package/contracts/README.md +3 -0
  2. package/fesm2022/acorex-platform-auth.mjs +72 -58
  3. package/fesm2022/acorex-platform-auth.mjs.map +1 -1
  4. package/fesm2022/acorex-platform-common.mjs +414 -22
  5. package/fesm2022/acorex-platform-common.mjs.map +1 -1
  6. package/fesm2022/acorex-platform-contracts.mjs +38 -0
  7. package/fesm2022/acorex-platform-contracts.mjs.map +1 -0
  8. package/fesm2022/acorex-platform-core.mjs +23 -14
  9. package/fesm2022/acorex-platform-core.mjs.map +1 -1
  10. package/fesm2022/acorex-platform-layout-builder.mjs +5 -4
  11. package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
  12. package/fesm2022/acorex-platform-layout-components.mjs +187 -9
  13. package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
  14. package/fesm2022/acorex-platform-layout-entity.mjs +81 -114
  15. package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
  16. package/fesm2022/acorex-platform-layout-views.mjs +2 -1
  17. package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
  18. package/fesm2022/acorex-platform-layout-widget-core.mjs +11 -1
  19. package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
  20. package/fesm2022/acorex-platform-layout-widgets.mjs +418 -239
  21. package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
  22. package/fesm2022/acorex-platform-themes-default.mjs +4 -4
  23. package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
  24. package/fesm2022/acorex-platform-themes-shared-settings.provider-BjuzSe0T.mjs.map +1 -1
  25. package/fesm2022/acorex-platform-themes-shared.mjs +3 -0
  26. package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
  27. package/fesm2022/acorex-platform-workflow.mjs +57 -68
  28. package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
  29. package/package.json +5 -1
  30. package/types/acorex-platform-auth.d.ts +29 -22
  31. package/types/acorex-platform-common.d.ts +89 -262
  32. package/types/acorex-platform-contracts.d.ts +940 -0
  33. package/types/acorex-platform-core.d.ts +8 -8
  34. package/types/acorex-platform-layout-builder.d.ts +2 -5
  35. package/types/acorex-platform-layout-components.d.ts +77 -7
  36. package/types/acorex-platform-layout-entity.d.ts +185 -175
  37. package/types/acorex-platform-layout-widget-core.d.ts +4 -26
  38. package/types/acorex-platform-layout-widgets.d.ts +55 -52
  39. package/types/acorex-platform-workflow.d.ts +3 -670
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/platform",
3
- "version": "21.0.0-next.72",
3
+ "version": "21.0.0-next.74",
4
4
  "peerDependencies": {
5
5
  "@acorex/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0 || ^21.0.2-next.0",
6
6
  "@acorex/core": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0 || ^21.0.2-next.0",
@@ -36,6 +36,10 @@
36
36
  "types": "./types/acorex-platform-common.d.ts",
37
37
  "default": "./fesm2022/acorex-platform-common.mjs"
38
38
  },
39
+ "./contracts": {
40
+ "types": "./types/acorex-platform-contracts.d.ts",
41
+ "default": "./fesm2022/acorex-platform-contracts.mjs"
42
+ },
39
43
  "./core": {
40
44
  "types": "./types/acorex-platform-core.d.ts",
41
45
  "default": "./fesm2022/acorex-platform-core.mjs"
@@ -61,6 +61,28 @@ interface AXPApplicationLoader {
61
61
  }
62
62
  declare const AXP_APPLICATION_LOADER: InjectionToken<AXPApplicationLoader>;
63
63
 
64
+ /** Platform auth datasource registry names. */
65
+ declare const AXPPlatformAuthDataSourceKeys: {
66
+ readonly PermissionDefinitions: "platform-permission-definitions";
67
+ };
68
+
69
+ declare class AXPUnauthorizedError extends Error {
70
+ data?: {
71
+ redirectUrl?: string;
72
+ } | undefined;
73
+ constructor(message?: string, data?: {
74
+ redirectUrl?: string;
75
+ } | undefined);
76
+ }
77
+ declare class AXPUnauthenticatedError extends Error {
78
+ data?: {
79
+ redirectUrl?: string;
80
+ } | undefined;
81
+ constructor(message?: string, data?: {
82
+ redirectUrl?: string;
83
+ } | undefined);
84
+ }
85
+
64
86
  interface AXPTenantLoader {
65
87
  getList(context: AXPSessionContext): Promise<AXPTenant[]>;
66
88
  }
@@ -107,10 +129,6 @@ interface AXPPermissionLoader {
107
129
  }
108
130
  declare const AXP_PERMISSION_LOADER: InjectionToken<AXPPermissionLoader>;
109
131
 
110
- /**
111
- * Registered permission definitions for select widgets via dataSource name {@link PERMISSION_DEFINITIONS_DATASOURCE_NAME}.
112
- */
113
- declare const PERMISSION_DEFINITIONS_DATASOURCE_NAME = "platform-permission-definitions";
114
132
  /**
115
133
  * Data source definition for leaf permissions from {@link AXPPermissionDefinitionService#getGroups}.
116
134
  */
@@ -218,6 +236,8 @@ interface AXPSessionData {
218
236
  tenant?: AXPTenant | null;
219
237
  application?: AXPApplication | null;
220
238
  expiresIn?: string | null;
239
+ /** When true, the client lock overlay stays active until PIN/password unlock or sign-out. */
240
+ locked?: boolean;
221
241
  }
222
242
 
223
243
  interface AXPFeature {
@@ -323,6 +343,10 @@ declare class AXPSessionService {
323
343
  private loadFeatures;
324
344
  signInComplete(): Promise<void>;
325
345
  setSession(tokens: Partial<AXPSessionData>): void;
346
+ /** Whether the client lock overlay should remain active after reload. */
347
+ isLocked(): boolean;
348
+ /** Persists client lock state inside {@link AXPSessionService.SESSION_KEY}. */
349
+ setLocked(locked: boolean): void;
326
350
  setStrategy(strategy: string): void;
327
351
  getSessionData(): AXPSessionData | null;
328
352
  private clearSession;
@@ -436,23 +460,6 @@ declare class TimeUtil {
436
460
  static calculateExpireInDate(expireInSeconds: number): string;
437
461
  }
438
462
 
439
- declare class AXPUnauthorizedError extends Error {
440
- data?: {
441
- redirectUrl?: string;
442
- } | undefined;
443
- constructor(message?: string, data?: {
444
- redirectUrl?: string;
445
- } | undefined);
446
- }
447
- declare class AXPUnauthenticatedError extends Error {
448
- data?: {
449
- redirectUrl?: string;
450
- } | undefined;
451
- constructor(message?: string, data?: {
452
- redirectUrl?: string;
453
- } | undefined);
454
- }
455
-
456
463
  /**
457
464
  * Supported content types for challenge display
458
465
  */
@@ -678,5 +685,5 @@ declare abstract class AXPLoginChallengeProvider {
678
685
  */
679
686
  declare const AXP_LOGIN_CHALLENGE_PROVIDER: InjectionToken<AXPLoginChallengeProvider>;
680
687
 
681
- export { AXPAuthGuard, AXPAuthModule, AXPAuthStrategy, AXPAuthStrategyRegistryService, AXPFeatureDirective, AXPFeatureGuard, AXPLoginChallengeComponentBase, AXPLoginChallengeProvider, AXPPermissionDefinitionBuilder, AXPPermissionDefinitionGroupBuilder, AXPPermissionDefinitionProviderContext, AXPPermissionDefinitionService, AXPPermissionDefinitionsDataSourceDefinition, AXPPermissionDirective, AXPPermissionEvaluatorScopeProvider, AXPPermissionGuard, AXPSessionContext, AXPSessionService, AXPSessionStatus, AXPUnauthenticatedError, AXPUnauthorizedError, AXP_APPLICATION_LOADER, AXP_FEATURE_CHECKER, AXP_FEATURE_LOADER, AXP_LOGIN_CHALLENGE_PROVIDER, AXP_PERMISSION_CHECKER, AXP_PERMISSION_DEFINITION_PROVIDER, AXP_PERMISSION_LOADER, AXP_TENANT_LOADER, JwtUtil, PERMISSION_DEFINITIONS_DATASOURCE_NAME, PkceUtil, TimeUtil, initializeAppState };
688
+ export { AXPAuthGuard, AXPAuthModule, AXPAuthStrategy, AXPAuthStrategyRegistryService, AXPFeatureDirective, AXPFeatureGuard, AXPLoginChallengeComponentBase, AXPLoginChallengeProvider, AXPPermissionDefinitionBuilder, AXPPermissionDefinitionGroupBuilder, AXPPermissionDefinitionProviderContext, AXPPermissionDefinitionService, AXPPermissionDefinitionsDataSourceDefinition, AXPPermissionDirective, AXPPermissionEvaluatorScopeProvider, AXPPermissionGuard, AXPPlatformAuthDataSourceKeys, AXPSessionContext, AXPSessionService, AXPSessionStatus, AXPUnauthenticatedError, AXPUnauthorizedError, AXP_APPLICATION_LOADER, AXP_FEATURE_CHECKER, AXP_FEATURE_LOADER, AXP_LOGIN_CHALLENGE_PROVIDER, AXP_PERMISSION_CHECKER, AXP_PERMISSION_DEFINITION_PROVIDER, AXP_PERMISSION_LOADER, AXP_TENANT_LOADER, JwtUtil, PkceUtil, TimeUtil, initializeAppState };
682
689
  export type { AXPApplication, AXPApplicationLoader, AXPAuthModuleConfigs, AXPBaseCredentials, AXPChallengeCheckResult, AXPChallengeContentType, AXPEdition, AXPFeature, AXPFeatureChecker, AXPFeatureLoader, AXPLoginChallengeData, AXPPermission, AXPPermissionChecker, AXPPermissionDefinition, AXPPermissionDefinitionProvider, AXPPermissionGroupDefinition, AXPPermissionLoader, AXPSessionData, AXPSignInResult, AXPTenant, AXPTenantLoader, AXPTokenResult, AXPUser };
@@ -5,7 +5,7 @@ import * as i3 from '@acorex/components/popup';
5
5
  import { AXPopupSizeType, AXPopupService } from '@acorex/components/popup';
6
6
  import * as i1 from '@acorex/platform/core';
7
7
  import { AXPValueTransformerFunctions, AXPMultiLanguageString, AXPOptionsData, AXPExpression, AXPFilterDefinition, AXPMetaData, AXPSystemActionType, AXPValidationRules, AXPGridLayoutOptions, AXPUserReference, AXPExecuteCommand, AXPKeyboardShortcutHelpEntry, AXPLogoConfig, AXPFileListItem, AXPExpressionEvaluatorScopeProvider, AXPExpressionEvaluatorScopeProviderContext, AXPDataSourceDefinitionProvider, AXPDataSourceDefinition, AXPNavigateActionCommand, AXPKeyboardShortcut, AXPExpressionEvaluatorScope, AXPExpressionEvaluatorService, AXPApplicationUserReference, AXPEntityReference, AXPPlatformScopeKey, AXPWidgetTriggers, AXPPlatformScope } from '@acorex/platform/core';
8
- import { AXPWidgetTypesMap, AXPMetaDataDefinition, AXPWidgetNode, AXPWidgetProperty } from '@acorex/platform/layout/widget-core';
8
+ import { AXPWidgetTypesMap, AXPWidgetNode, AXPWidgetProperty } from '@acorex/platform/layout/widget-core';
9
9
  import * as i4 from '@acorex/core/date-time';
10
10
  import { AXCalendarService } from '@acorex/core/date-time';
11
11
  import * as _angular_router from '@angular/router';
@@ -13,6 +13,7 @@ import { Route, Routes, UrlTree, Router, RedirectCommand, ActivatedRouteSnapshot
13
13
  import * as i2 from '@acorex/platform/workflow';
14
14
  import { AXPWorkflowAction, AXPWorkflowContext, AXPWorkflow } from '@acorex/platform/workflow';
15
15
  import * as i5 from '@acorex/components/toast';
16
+ import { AXPFileStorageCreateRequest, AXPFileStorageInfo, AXPFileStorageUpdateRequest, AXPFileStorageFindRequest, AXPFileManyStorageInfo, AXPMetaDataDefinition } from '@acorex/platform/contracts';
16
17
  import * as rxjs from 'rxjs';
17
18
  import { Subject } from 'rxjs';
18
19
  import * as _ngrx_signals from '@ngrx/signals';
@@ -20,6 +21,11 @@ import { AXTranslationService } from '@acorex/core/translation';
20
21
  import { AXFormatService } from '@acorex/core/format';
21
22
  import { AXLocaleProfile } from '@acorex/core/locale';
22
23
 
24
+ /** Platform common datasource registry names. */
25
+ declare const AXPPlatformCommonDataSourceKeys: {
26
+ readonly MenuItems: "platform-menu-items";
27
+ };
28
+
23
29
  /** JSON data primitive for the specialist final deliverable. */
24
30
  type AXPAgentOutputKind = 'string' | 'object' | 'array';
25
31
  /** When `kind` is `object`, controls how the parsed value maps into chat transcript segments. */
@@ -828,7 +834,7 @@ interface AXPInAppNotificationCreateRequest {
828
834
  }
829
835
  /**
830
836
  * Persists in-app notifications. Notification-management registers an implementation
831
- * backed by {@link AXMNotificationEntityService}.
837
+ * backed by {@link AXMNotificationService}.
832
838
  */
833
839
  interface AXPInAppNotificationService {
834
840
  create(request: AXPInAppNotificationCreateRequest): Promise<void>;
@@ -1484,260 +1490,6 @@ declare class AXPFileActionsService {
1484
1490
 
1485
1491
  declare const UploadFromComputerActionProvider: AXPFileActionProvider;
1486
1492
 
1487
- declare enum AXPFileStorageStatus {
1488
- Temporary = "temporary",// File is not yet associated with a parent entity
1489
- Committed = "committed",// File is fully associated and in use
1490
- PendingDeletion = "pendingDeletion",// File is marked for deletion but not yet removed
1491
- Archived = "archived",// File is archived and no longer actively used
1492
- Error = "error"
1493
- }
1494
- /**
1495
- * Interface representing a file storage request in the Acorex platform.
1496
- */
1497
- interface AXPFileStorageCreateRequest {
1498
- /**
1499
- * The file to be stored.
1500
- */
1501
- file: File;
1502
- /**
1503
- * The name of the file.
1504
- */
1505
- name?: string;
1506
- /**
1507
- * The unique identifier of referenced entity.
1508
- */
1509
- refId: string;
1510
- /**
1511
- * The type of the referenced entity.
1512
- */
1513
- refType: string;
1514
- /**
1515
- * The category of the file. profile-picture, company-logo, policy, document, etc.
1516
- */
1517
- category: string;
1518
- /**
1519
- * The folder path where the file should be stored.
1520
- * If null, the service will resolve the path based on metadata, user, tenant, or default rules.
1521
- */
1522
- path?: string;
1523
- /**
1524
- * Metadata associated with the file.
1525
- */
1526
- metadata?: AXPMetaData;
1527
- /**
1528
- * Indicates whether the file is primary or not.
1529
- */
1530
- isPrimary?: boolean;
1531
- /**
1532
- * Indicates the status of the file.
1533
- */
1534
- status?: AXPFileStorageStatus;
1535
- }
1536
- interface AXPFileStorageUpdateRequest {
1537
- /**
1538
- * The unique identifier for the stored file.
1539
- */
1540
- fileId: string;
1541
- /**
1542
- * The folder path where the file should be stored.
1543
- * If null, the service will resolve the path based on metadata, user, tenant, or default rules.
1544
- */
1545
- path?: string;
1546
- /**
1547
- * The name of the file.
1548
- */
1549
- name?: string;
1550
- /**
1551
- * Metadata associated with the file.
1552
- */
1553
- metadata: AXPMetaData;
1554
- /**
1555
- * Indicates whether the file is primary or not.
1556
- */
1557
- isPrimary?: boolean;
1558
- }
1559
- interface AXPFileManyStorageInfo {
1560
- /**
1561
- * The unique identifier for the stored file.
1562
- */
1563
- id?: string;
1564
- /**
1565
- * The unique identifier for the stored file.
1566
- */
1567
- fileId: string;
1568
- /**
1569
- * The unique identifier of referenced entity.
1570
- */
1571
- refId: string;
1572
- /**
1573
- * The type of the referenced entity.
1574
- */
1575
- refType: string;
1576
- /**
1577
- * The size of the file in bytes.
1578
- */
1579
- size: number;
1580
- /**
1581
- * The name of the file.
1582
- */
1583
- name?: string;
1584
- /**
1585
- * The URL where the file can be accessed.
1586
- */
1587
- url?: string;
1588
- /**
1589
- * Optional title (e.g. for display in file list).
1590
- */
1591
- title?: string;
1592
- /**
1593
- * Optional description (e.g. for display in file list).
1594
- */
1595
- description?: string;
1596
- }
1597
- /**
1598
- * Represents information about a file stored in the AXP file storage system.
1599
- */
1600
- interface AXPFileStorageInfo {
1601
- /**
1602
- * The unique identifier for the stored file.
1603
- */
1604
- id?: string;
1605
- /**
1606
- * The unique identifier for the stored file.
1607
- */
1608
- fileId: string;
1609
- /**
1610
- * The unique identifier of referenced entity.
1611
- */
1612
- refId: string;
1613
- /**
1614
- * The type of the referenced entity.
1615
- */
1616
- refType: string;
1617
- /**
1618
- * The category of the file. profile-picture, company-logo, policy, document, etc.
1619
- */
1620
- category: string;
1621
- /**
1622
- * The URL where the file can be accessed.
1623
- */
1624
- url?: string;
1625
- /**
1626
- * The size of the file in bytes.
1627
- */
1628
- size: number;
1629
- /**
1630
- * The name of the file.
1631
- */
1632
- name?: string;
1633
- /**
1634
- * The MIME type of the file.
1635
- */
1636
- mimeType: string;
1637
- /**
1638
- * The date and time when the file was uploaded.
1639
- */
1640
- uploadedAt: Date;
1641
- /**
1642
- * Indicates whether the file is public or private.
1643
- */
1644
- isPublic: boolean;
1645
- /**
1646
- * Indicates whether the file is primary or not.
1647
- */
1648
- isPrimary?: boolean;
1649
- status: AXPFileStorageStatus;
1650
- binary: File;
1651
- }
1652
- interface AXPFileStorageInfo {
1653
- /**
1654
- * The unique identifier for the stored file.
1655
- */
1656
- id?: string;
1657
- /**
1658
- * The unique identifier for the stored file.
1659
- */
1660
- fileId: string;
1661
- /**
1662
- * The unique identifier of referenced entity.
1663
- */
1664
- refId: string;
1665
- /**
1666
- * The type of the referenced entity.
1667
- */
1668
- refType: string;
1669
- /**
1670
- * The category of the file. profile-picture, company-logo, policy, document, etc.
1671
- */
1672
- category: string;
1673
- /**
1674
- * The URL where the file can be accessed.
1675
- */
1676
- url?: string;
1677
- /**
1678
- * The size of the file in bytes.
1679
- */
1680
- size: number;
1681
- /**
1682
- * The name of the file.
1683
- */
1684
- name?: string;
1685
- /**
1686
- * The MIME type of the file.
1687
- */
1688
- mimeType: string;
1689
- /**
1690
- * The date and time when the file was uploaded.
1691
- */
1692
- uploadedAt: Date;
1693
- /**
1694
- * Indicates whether the file is public or private.
1695
- */
1696
- isPublic: boolean;
1697
- /**
1698
- * Indicates whether the file is primary or not.
1699
- */
1700
- isPrimary?: boolean;
1701
- status: AXPFileStorageStatus;
1702
- binary: File;
1703
- }
1704
- /**
1705
- * Represents information about a file stored in the AXP file storage system.
1706
- */
1707
- interface AXPFileStorageFindRequest {
1708
- /**
1709
- * The unique identifier of referenced entity.
1710
- */
1711
- refId?: string;
1712
- /**
1713
- * The type of the referenced entity.
1714
- */
1715
- refType?: string;
1716
- /**
1717
- * The category of the file. profile-picture, company-logo, policy, document, etc.
1718
- */
1719
- category?: string;
1720
- /**
1721
- * The MIME type of the file.
1722
- */
1723
- mimeType?: string;
1724
- /**
1725
- * Indicates whether the file is public or private.
1726
- */
1727
- isPublic?: boolean;
1728
- /**
1729
- * Indicates whether the file is primary or not.
1730
- */
1731
- isPrimary?: boolean;
1732
- /**
1733
- * The date and time range when the file was uploaded.
1734
- */
1735
- uploadedAtRange?: {
1736
- from: Date;
1737
- to: Date;
1738
- };
1739
- }
1740
-
1741
1493
  declare abstract class AXPFileStorageService {
1742
1494
  abstract save(request: AXPFileStorageCreateRequest): Promise<AXPFileStorageInfo>;
1743
1495
  abstract update(request: AXPFileStorageUpdateRequest): Promise<AXPFileStorageInfo>;
@@ -1859,10 +1611,6 @@ declare class AXPStickyDirective {
1859
1611
  static ɵdir: i0.ɵɵDirectiveDeclaration<AXPStickyDirective, "[axpSticky]", ["axpSticky"], { "stickyClass": { "alias": "axpSticky"; "required": false; }; "stickyOffset": { "alias": "stickyOffset"; "required": false; }; "stickyParent": { "alias": "stickyParent"; "required": false; }; "stickyTarget": { "alias": "stickyTarget"; "required": false; }; }, { "isStickyChange": "isStickyChange"; }, never, never, true, never>;
1860
1612
  }
1861
1613
 
1862
- /**
1863
- * Registered menu items (raw tree flattened) for select widgets via dataSource name {@link MENU_ITEMS_DATASOURCE_NAME}.
1864
- */
1865
- declare const MENU_ITEMS_DATASOURCE_NAME = "platform-menu-items";
1866
1614
  /**
1867
1615
  * Data source definition for menu items from {@link AXPMenuProviderService#rawItems}.
1868
1616
  */
@@ -2514,6 +2262,38 @@ declare function resolveEntityRowTitleTemplate(entity: AXPEntity | null | undefi
2514
2262
  */
2515
2263
  declare function resolveEntitySearchTitleFallback(format: Pick<AXPSearchDefinitionDisplayFormat, 'titleFallbackTemplates' | 'titleFallbackFields'>, data: unknown, locale: string, translationService: AXTranslationService, formatService: AXFormatService, expressionEvaluator: AXPExpressionEvaluatorService): Promise<string>;
2516
2264
 
2265
+ interface AXPResolveEntityRowDisplayTitleOptions {
2266
+ /** Row or form context data used to evaluate title templates. */
2267
+ data: Record<string, unknown> | undefined;
2268
+ activeLang: string;
2269
+ formatService: AXFormatService;
2270
+ /** Entity definition when available (forms, columns with entity resolver). */
2271
+ entity?: AXPEntity | null;
2272
+ /** Widget/interface options — may contain `popupTitle` or `titleTemplate`. */
2273
+ widgetOptions?: Record<string, unknown> | undefined;
2274
+ }
2275
+ /** Row path used when context carries a nested entity layout title. */
2276
+ declare const ENTITY_LAYOUT_SINGLE_TITLE_PATH = "entity.layout.single.title";
2277
+ /** Widget option for a pre-evaluated or template entity row title (entity list column mappers). */
2278
+ declare const ENTITY_ROW_POPUP_TITLE_OPTION = "popupTitle";
2279
+ /** Widget option alias for entity row title templates in view/edit forms. */
2280
+ declare const ENTITY_ROW_TITLE_TEMPLATE_OPTION = "titleTemplate";
2281
+ /** Resolves a row field or format result to a plain display string for the active locale. */
2282
+ declare function resolveEntityRowDisplayText(value: unknown, activeLang: string): string;
2283
+ /**
2284
+ * Resolves an entity row title for list columns, view widgets, and edit widgets.
2285
+ * Uses entity metadata when provided, otherwise widget title templates and common field paths.
2286
+ */
2287
+ declare function resolveEntityRowDisplayTitle(options: AXPResolveEntityRowDisplayTitleOptions): string;
2288
+ /**
2289
+ * @deprecated Use {@link resolveEntityRowDisplayTitle} instead.
2290
+ */
2291
+ declare function resolveEntityRowDisplayTitleFromColumnContext(rowData: Record<string, unknown> | undefined, columnOptions: Record<string, unknown> | undefined, formatService: AXFormatService, activeLang: string): string;
2292
+ /**
2293
+ * Formats the entity row title for display using entity-driven templates and property paths.
2294
+ */
2295
+ declare function formatEntityRowDisplayTitle(entity: AXPEntity | null | undefined, rowData: Record<string, unknown> | undefined, formatService: AXFormatService, activeLang: string): string;
2296
+
2517
2297
  /**
2518
2298
  * Shared utility for creating Entity:Create command options used in search command providers.
2519
2299
  * Use with command: { name: 'Entity:Create', options: createEntityCommandOptions(...) }
@@ -3632,6 +3412,53 @@ declare class AXPDebugService {
3632
3412
  static ɵprov: i0.ɵɵInjectableDeclaration<AXPDebugService>;
3633
3413
  }
3634
3414
 
3415
+ type AXPGraphicDownloadFormat = 'svg' | 'png' | 'jpeg';
3416
+ interface AXPGraphicPrintContent {
3417
+ bodyMarkup: string;
3418
+ styleRule: string;
3419
+ }
3420
+ interface AXPPrintGraphicOptions {
3421
+ /** Used when the rendered element has no measurable size. */
3422
+ fallbackSize?: number;
3423
+ title?: string;
3424
+ imageAlt?: string;
3425
+ }
3426
+ interface AXPGraphicDownloadOptions {
3427
+ format: AXPGraphicDownloadFormat;
3428
+ filename: string;
3429
+ /** Used when rasterizing SVG or sizing canvas output. */
3430
+ fallbackSize?: number;
3431
+ }
3432
+ /**
3433
+ * Normalizes widget option values to a positive finite number
3434
+ * (plain number, numeric string, or editor object with `value` / `id`).
3435
+ */
3436
+ declare function normalizePositiveNumberOption(value: unknown, fallback: number): number;
3437
+ /**
3438
+ * Resolves the rendered graphic size from a container (canvas or SVG).
3439
+ */
3440
+ declare function resolveGraphicElementSize(container: HTMLElement, fallback: number): number;
3441
+ /**
3442
+ * Serializes an SVG element to a string, optionally prefixing the XML declaration.
3443
+ */
3444
+ declare function serializeSvgElement(svg: SVGSVGElement, includeXmlDeclaration?: boolean): string;
3445
+ /**
3446
+ * Builds printable HTML body markup and CSS for an SVG or canvas inside a container.
3447
+ */
3448
+ declare function resolveGraphicPrintContent(container: HTMLElement, size: number, imageAlt?: string): AXPGraphicPrintContent | undefined;
3449
+ /**
3450
+ * Triggers a file download for the given blob via a temporary anchor element.
3451
+ */
3452
+ declare function triggerBrowserDownload(blob: Blob, filename: string): void;
3453
+ /**
3454
+ * Opens the system print dialog for an SVG or canvas graphic inside the given container.
3455
+ */
3456
+ declare function printGraphicFromElement(container: HTMLElement, options?: AXPPrintGraphicOptions): void;
3457
+ /**
3458
+ * Downloads an SVG or canvas graphic from a container as SVG, PNG, or JPEG.
3459
+ */
3460
+ declare function downloadGraphicFromElement(container: HTMLElement, options: AXPGraphicDownloadOptions): void;
3461
+
3635
3462
  declare class AXPExportService {
3636
3463
  popupService: AXPopupService;
3637
3464
  generateBlobFromElement(element: HTMLElement, blobOptions?: AXPDomToImageOptions): Promise<Blob>;
@@ -3842,5 +3669,5 @@ declare class AXMWorkflowErrorHandler implements AXPErrorHandler {
3842
3669
  static ɵprov: i0.ɵɵInjectableDeclaration<AXMWorkflowErrorHandler>;
3843
3670
  }
3844
3671
 
3845
- export { ALL_DEFAULT_OPERATORS, AXMWorkflowErrorHandler, AXPAppVersionService, AXPBackgroundOperationCompletionService, AXPBackgroundOperationEntityStoreService, AXPBackgroundOperationHandler, AXPBackgroundOperationNotificationService, AXPBackgroundOperationProvider, AXPBackgroundOperationRootConfig, AXPBackgroundOperationService, AXPBackgroundOperationSlotComponent, AXPCleanNestedFilters, AXPClipBoardService, AXPCommonModule, AXPCommonSettings, AXPCustomOperatorService, AXPCustomOperatorServiceImpl, AXPDataProvider, AXPDebugService, AXPDefaultMultiLanguageConfigService, AXPDialogConfirmAction, AXPEntityCommandScope, AXPEntityQueryType, AXPEntityType, AXPErrorHandlerRegistryService, AXPExportService, AXPFileActionsService, AXPFileStorageEvaluatorScopeProvider, AXPFileStorageService, AXPFileStorageStatus, AXPFileTypeProviderService, AXPFilterOperatorMiddlewareService, AXPFilterOperatorMiddlewareServiceImpl, AXPFooterTextSlotComponent, AXPGlobalErrorHandler, AXPHomePageModule, AXPHomePageService, AXPKeyboardShortcutsHelpComponent, AXPKeyboardShortcutsHelpService, AXPLockService, AXPMenuItemsDataSourceDefinition, AXPMenuKeyboardShortcutService, AXPMenuMiddlewareRegistry, AXPMenuProviderService, AXPMenuRouteAccessService, AXPMenuRouteGuard, AXPMenuSearchDefinitionProvider, AXPMenuSearchProvider, AXPMenuService, AXPMenuVisibilityService, AXPNavBarSlotComponent, AXPNavigateWorkflow, AXPNotFoundCatchAllRoute, AXPNotFoundError, AXPOutputContractTranscriptSegmentService, AXPPlatformDefaultConfigs, AXPRedirectEvent, AXPRefreshEvent, AXPRegionalCalendarService, AXPRegionalSetting, AXPRelationshipCardinality, AXPRelationshipKind, AXPReloadAction, AXPReloadEvent, AXPSearchCommandProvider, AXPSearchDefinitionActionBuilder, AXPSearchDefinitionBuilder, AXPSearchDefinitionProviderContext, AXPSearchDefinitionProviderService, AXPSearchService, AXPSettingDefaultValuesAggregatorService, AXPSettingDefinitionGroupBuilder, AXPSettingDefinitionProviderContext, AXPSettingDefinitionProviderService, AXPSettingDefinitionSectionBuilder, AXPSettingsEvaluatorScopeProvider, AXPSettingsService, AXPStatusDefinitionProviderService, AXPStatusProvider, AXPStickyDirective, AXPSystemStatusType, AXPSystemStatuses, AXPToastAction, AXPTokenDefinitionService, AXPTokenEvaluatorScopeProvider, AXPUnsavedChangesConfirmService, AXPUnsavedChangesPopstateService, AXPVersioningService, AXPWorkflowNavigateAction, AXPWorkflowRouterNavigateAction, AXP_AGENT_OUTPUT_CONTRACT_DEFAULT_STRUCTURED_RETRIES, AXP_APP_VERSION_PROVIDER, AXP_BACKGROUND_OPERATION_ENTITY_STORAGE, AXP_BACKGROUND_OPERATION_HANDLERS, AXP_BACKGROUND_OPERATION_PROVIDERS, AXP_FILE_ACTION_PROVIDER, AXP_FILE_TYPE_INFO_PROVIDER, AXP_HOME_PAGES, AXP_HOME_PAGE_DEFAULT_KEY, AXP_IN_APP_NOTIFICATION_SERVICE, AXP_LOCALE_MANAGEMENT_PORT, AXP_MENU_MIDDLEWARE, AXP_MENU_PROVIDER, AXP_NOT_FOUND_CATCH_ALL_ROUTE, AXP_NOT_FOUND_ROUTE, AXP_OUTPUT_CONTRACT_TRANSCRIPT_SEGMENT_PROVIDER, AXP_PLATFORM_CONFIG_TOKEN, AXP_PROTECTED_ROUTE_GUARDS, AXP_ROOT_CONFIG_TOKEN, AXP_SEARCH_DEFINITION_PROVIDER, AXP_SEARCH_PROVIDER, AXP_SETTING_DEFAULT_VALUES_PROVIDERS, AXP_SETTING_DEFINITION_PROVIDER, AXP_SETTING_VALUE_PROVIDER, AXP_STATUS_PROVIDERS, AXP_TOKEN_DEFINITION_PROVIDER, AXP_UNAUTHORIZED_ROUTE, AXVChangeType, BETWEEN_OPER, BOOLEAN_OPERATORS, CONTAINS_OPER, DATE_OPERATORS, DEFAULT_DATE_FILTER_PRESETS, DEFAULT_MULTILANGUAGE_FIELD_NAMES, ENDS_WITH_OPER, ENVIRONMENT, EQ_OPER, GTE_OPER, GT_OPER, IN_OPER, IS_EMPTY_OPER, IS_NOT_EMPTY_OPER, LTE_OPER, LT_OPER, MENU_ITEMS_DATASOURCE_NAME, MULTILANGUAGE_CAPABLE_WIDGET_TYPES, NOT_CONTAINS_OPER, NOT_EQ_OPER, NUMBER_OPERATORS, STARTS_WITH_OPER, STRING_OPERATORS, UploadFromComputerActionProvider, applyDateFilterPreset, axpBackgroundOperationCapabilities, axpBackgroundOperationDisplayTime, axpBackgroundOperationEntityName, axpBackgroundOperationEstimateEndDate, axpBackgroundOperationFailurePolicy, axpBackgroundOperationFromEntityModel, axpBackgroundOperationRemainingMs, axpBackgroundOperationToEntityModel, axpBuildBackgroundOperation, axpCoerceBackgroundOperationDate, axpCreateBackgroundOperationId, axpFindMenuItemByRoute, axpIsActiveBackgroundOperationStatus, axpIsCompletedBackgroundOperationStatus, axpIsEntityDetailsPath, axpIsEntityDetailsViewRoute, axpIsEntityListPath, axpIsEntityListRoute, axpIsEntityRecordNotFound, axpMenuPathsMatch, axpNavigateAppPath, axpParseAppPath, axpRedirectToNotFound, axpRedirectToUnauthorized, axpReplaceEntityListRouteQueryParams, backgroundOperationEntityFactory, buildEntitySearchTitleContext, coerceAXPSettingRawValue, coerceAXPSettingRawValueByKind, configPlatform, createAllQueryView, createBackgroundOperationStore, createEntityCommandOptions, createEntityRowExpressionScope, createEntitySearchCommand, createMenuContext, createMenuMiddleware, createQueryView, createUnsavedChangesCanDeactivateGuard, evaluateEntityDisplayTemplate, findManualPresetIdByOperation, getEntityInfo, getStatusInfo, getSystemStatus, inferSettingCoercionKind, isCardFieldBadgeDisplay, isMeaningfulEntityDisplayTitle, isUnresolvedEntityDisplayTemplate, normalizeEntityDisplayTemplate, peelSettingValueKey, provideDynamicHomePage, provideMenuMiddleware, resolveCardFieldBadgeColor, resolveDateFilterPresets, resolveDefaultMasterListLayout, resolveEnabledMasterListLayouts, resolveEntityRowTitleTemplate, resolveEntitySearchTitleFallback, resolveQueryMatchingDisplayText, resolveSearchDisplayTemplate, resolveSearchableText, resolveStatusLook, sanitizeResolvedEntityDisplayTitle, searchInRecordValues, searchInSearchableValue, shouldApplyDefaultMultiLanguageToEntityProperty, shouldApplyDefaultMultiLanguageToWidgetNode, shouldApplyDefaultMultiLanguageToWidgetProperty, systemStatusToDefinition, withDefaultMultiLanguageOnWidgetNodeTree, withDefaultMultiLanguageOnWidgetProperty };
3846
- export type { AXCFileUploaderAction, AXCFileUploaderActionsPayload, AXCFileUploaderCapabilities, AXEntityPropertyWidget, AXPAgentOutputContract, AXPAgentOutputKind, AXPAgentResponseFormat, AXPAggregate, AXPAppPathParts, AXPAppVersion, AXPAppVersionProvider, AXPApplication, AXPBackgroundOperation, AXPBackgroundOperationActionKey, AXPBackgroundOperationCapabilities, AXPBackgroundOperationCreateRequest, AXPBackgroundOperationEntityModel, AXPBackgroundOperationEntityStorageAdapter, AXPBackgroundOperationError, AXPBackgroundOperationFailureMode, AXPBackgroundOperationFailurePolicy, AXPBackgroundOperationProviderStore, AXPBackgroundOperationStatus, AXPCardBadgeColor, AXPCardBadgeDisplay, AXPCardBadgeDisplayOptions, AXPCardField, AXPCardFieldDisplay, AXPCardFieldDisplayConfig, AXPCategoryEntity, AXPColumnAlign, AXPColumnContentAlign, AXPCommandActionCallback, AXPCommandActionDisplay, AXPCommandActionLook, AXPCommandActionPriority, AXPCommandActionType, AXPCommonModuleConfigs, AXPCurrency, AXPDateTimeFilterPreset, AXPDateTimeFilterPresetKind, AXPDateTimeFilterValue, AXPDomToImageOptions, AXPEntity, AXPEntityAction, AXPEntityCommand, AXPEntityDetailListView, AXPEntityDisplayField, AXPEntityMasterCreateLayoutView, AXPEntityMasterLayoutView, AXPEntityMasterListDisplayMode, AXPEntityMasterListLayoutOption, AXPEntityMasterListLayoutType, AXPEntityMasterListView, AXPEntityMasterSingleLayoutView, AXPEntityMasterUpdateLayoutView, AXPEntityPage, AXPEntityProperty, AXPEntityPropertyCreateView, AXPEntityPropertyGroup, AXPEntityPropertyLayoutConfig, AXPEntityPropertyUpdateView, AXPEntityPropertyView, AXPEntityQuery, AXPEntityQuickCreate, AXPEntitySearchTitleContext, AXPEntitySectionView, AXPEntityTableColumn, AXPEntityV2, AXPEntityVersionHistory, AXPErrorHandler, AXPFileActionProvider, AXPFileActionProviderToken, AXPFileExtension, AXPFileManyStorageInfo, AXPFileStorageCreateRequest, AXPFileStorageFindRequest, AXPFileStorageInfo, AXPFileStorageUpdateRequest, AXPFileType, AXPFileTypeInfoProvider, AXPFilterOperator, AXPGeoLocation, AXPGroupSearchResult, AXPHomePageDefinition, AXPInAppNotificationCreateRequest, AXPInAppNotificationPriority, AXPInAppNotificationService, AXPJsonSchemaLike, AXPLanguage, AXPLocaleManagementPort, AXPLocaleProfile, AXPLockGetInfoRequest, AXPLockInfo, AXPLockRequest, AXPLockType, AXPMenuFinderResult, AXPMenuInsertion, AXPMenuItem, AXPMenuItemCommand, AXPMenuItemFinder, AXPMenuItemWithParent, AXPMenuMiddleware, AXPMenuMiddlewareContext, AXPMenuMiddlewareProvider, AXPMenuProvider, AXPMenuProviderContext, AXPMenuRouteMatchResult, AXPMenuType, AXPModule, AXPOutputContractTranscriptSegmentDefinition, AXPOutputContractTranscriptSegmentProvider, AXPOutputContractTranscriptSegmentProviderToken, AXPOutputTranscriptSegmentId, AXPPlatformConfigs, AXPQueryFilter, AXPQuerySort, AXPQueryView, AXPRelatedEntity, AXPRelationship, AXPRootConfigs, AXPSearchAction, AXPSearchDefinition, AXPSearchDefinitionDisplayFormat, AXPSearchDefinitionProvider, AXPSearchDisplayGroupResult, AXPSearchDisplayResult, AXPSearchDisplayResultForSave, AXPSearchParentResult, AXPSearchProvider, AXPSearchResult, AXPSettingChangedEvent, AXPSettingCoercionKind, AXPSettingDefaultValuesProvider, AXPSettingDefinition, AXPSettingDefinitionGroup, AXPSettingDefinitionProvider, AXPSettingDefinitionSection, AXPSettingLayoutOptions, AXPSettingMergedDefaults, AXPSettingValue, AXPSettingValueProvider, AXPSettingsServiceInterface, AXPStatusDefinition, AXPStatusTransition, AXPTimeZone, AXPTokenDefinition, AXPTokenDefinitionProvider, AXPTokenDefinitionProviderToken, AXPUnLockRequest, AXPUnsavedChangesCanDeactivate, AXPUnsavedChangesConfirmOptions, AXPUnsavedChangesPopstateSource, AXPVersionChange, AXPVersionEntry, AXPVersionStream, CanonicalChange, CanonicalChangeOp, VersionedFileInfo };
3672
+ export { ALL_DEFAULT_OPERATORS, AXMWorkflowErrorHandler, AXPAppVersionService, AXPBackgroundOperationCompletionService, AXPBackgroundOperationEntityStoreService, AXPBackgroundOperationHandler, AXPBackgroundOperationNotificationService, AXPBackgroundOperationProvider, AXPBackgroundOperationRootConfig, AXPBackgroundOperationService, AXPBackgroundOperationSlotComponent, AXPCleanNestedFilters, AXPClipBoardService, AXPCommonModule, AXPCommonSettings, AXPCustomOperatorService, AXPCustomOperatorServiceImpl, AXPDataProvider, AXPDebugService, AXPDefaultMultiLanguageConfigService, AXPDialogConfirmAction, AXPEntityCommandScope, AXPEntityQueryType, AXPEntityType, AXPErrorHandlerRegistryService, AXPExportService, AXPFileActionsService, AXPFileStorageEvaluatorScopeProvider, AXPFileStorageService, AXPFileTypeProviderService, AXPFilterOperatorMiddlewareService, AXPFilterOperatorMiddlewareServiceImpl, AXPFooterTextSlotComponent, AXPGlobalErrorHandler, AXPHomePageModule, AXPHomePageService, AXPKeyboardShortcutsHelpComponent, AXPKeyboardShortcutsHelpService, AXPLockService, AXPMenuItemsDataSourceDefinition, AXPMenuKeyboardShortcutService, AXPMenuMiddlewareRegistry, AXPMenuProviderService, AXPMenuRouteAccessService, AXPMenuRouteGuard, AXPMenuSearchDefinitionProvider, AXPMenuSearchProvider, AXPMenuService, AXPMenuVisibilityService, AXPNavBarSlotComponent, AXPNavigateWorkflow, AXPNotFoundCatchAllRoute, AXPNotFoundError, AXPOutputContractTranscriptSegmentService, AXPPlatformCommonDataSourceKeys, AXPPlatformDefaultConfigs, AXPRedirectEvent, AXPRefreshEvent, AXPRegionalCalendarService, AXPRegionalSetting, AXPRelationshipCardinality, AXPRelationshipKind, AXPReloadAction, AXPReloadEvent, AXPSearchCommandProvider, AXPSearchDefinitionActionBuilder, AXPSearchDefinitionBuilder, AXPSearchDefinitionProviderContext, AXPSearchDefinitionProviderService, AXPSearchService, AXPSettingDefaultValuesAggregatorService, AXPSettingDefinitionGroupBuilder, AXPSettingDefinitionProviderContext, AXPSettingDefinitionProviderService, AXPSettingDefinitionSectionBuilder, AXPSettingsEvaluatorScopeProvider, AXPSettingsService, AXPStatusDefinitionProviderService, AXPStatusProvider, AXPStickyDirective, AXPSystemStatusType, AXPSystemStatuses, AXPToastAction, AXPTokenDefinitionService, AXPTokenEvaluatorScopeProvider, AXPUnsavedChangesConfirmService, AXPUnsavedChangesPopstateService, AXPVersioningService, AXPWorkflowNavigateAction, AXPWorkflowRouterNavigateAction, AXP_AGENT_OUTPUT_CONTRACT_DEFAULT_STRUCTURED_RETRIES, AXP_APP_VERSION_PROVIDER, AXP_BACKGROUND_OPERATION_ENTITY_STORAGE, AXP_BACKGROUND_OPERATION_HANDLERS, AXP_BACKGROUND_OPERATION_PROVIDERS, AXP_FILE_ACTION_PROVIDER, AXP_FILE_TYPE_INFO_PROVIDER, AXP_HOME_PAGES, AXP_HOME_PAGE_DEFAULT_KEY, AXP_IN_APP_NOTIFICATION_SERVICE, AXP_LOCALE_MANAGEMENT_PORT, AXP_MENU_MIDDLEWARE, AXP_MENU_PROVIDER, AXP_NOT_FOUND_CATCH_ALL_ROUTE, AXP_NOT_FOUND_ROUTE, AXP_OUTPUT_CONTRACT_TRANSCRIPT_SEGMENT_PROVIDER, AXP_PLATFORM_CONFIG_TOKEN, AXP_PROTECTED_ROUTE_GUARDS, AXP_ROOT_CONFIG_TOKEN, AXP_SEARCH_DEFINITION_PROVIDER, AXP_SEARCH_PROVIDER, AXP_SETTING_DEFAULT_VALUES_PROVIDERS, AXP_SETTING_DEFINITION_PROVIDER, AXP_SETTING_VALUE_PROVIDER, AXP_STATUS_PROVIDERS, AXP_TOKEN_DEFINITION_PROVIDER, AXP_UNAUTHORIZED_ROUTE, AXVChangeType, BETWEEN_OPER, BOOLEAN_OPERATORS, CONTAINS_OPER, DATE_OPERATORS, DEFAULT_DATE_FILTER_PRESETS, DEFAULT_MULTILANGUAGE_FIELD_NAMES, ENDS_WITH_OPER, ENTITY_LAYOUT_SINGLE_TITLE_PATH, ENTITY_ROW_POPUP_TITLE_OPTION, ENTITY_ROW_TITLE_TEMPLATE_OPTION, ENVIRONMENT, EQ_OPER, GTE_OPER, GT_OPER, IN_OPER, IS_EMPTY_OPER, IS_NOT_EMPTY_OPER, LTE_OPER, LT_OPER, MULTILANGUAGE_CAPABLE_WIDGET_TYPES, NOT_CONTAINS_OPER, NOT_EQ_OPER, NUMBER_OPERATORS, STARTS_WITH_OPER, STRING_OPERATORS, UploadFromComputerActionProvider, applyDateFilterPreset, axpBackgroundOperationCapabilities, axpBackgroundOperationDisplayTime, axpBackgroundOperationEntityName, axpBackgroundOperationEstimateEndDate, axpBackgroundOperationFailurePolicy, axpBackgroundOperationFromEntityModel, axpBackgroundOperationRemainingMs, axpBackgroundOperationToEntityModel, axpBuildBackgroundOperation, axpCoerceBackgroundOperationDate, axpCreateBackgroundOperationId, axpFindMenuItemByRoute, axpIsActiveBackgroundOperationStatus, axpIsCompletedBackgroundOperationStatus, axpIsEntityDetailsPath, axpIsEntityDetailsViewRoute, axpIsEntityListPath, axpIsEntityListRoute, axpIsEntityRecordNotFound, axpMenuPathsMatch, axpNavigateAppPath, axpParseAppPath, axpRedirectToNotFound, axpRedirectToUnauthorized, axpReplaceEntityListRouteQueryParams, backgroundOperationEntityFactory, buildEntitySearchTitleContext, coerceAXPSettingRawValue, coerceAXPSettingRawValueByKind, configPlatform, createAllQueryView, createBackgroundOperationStore, createEntityCommandOptions, createEntityRowExpressionScope, createEntitySearchCommand, createMenuContext, createMenuMiddleware, createQueryView, createUnsavedChangesCanDeactivateGuard, downloadGraphicFromElement, evaluateEntityDisplayTemplate, findManualPresetIdByOperation, formatEntityRowDisplayTitle, getEntityInfo, getStatusInfo, getSystemStatus, inferSettingCoercionKind, isCardFieldBadgeDisplay, isMeaningfulEntityDisplayTitle, isUnresolvedEntityDisplayTemplate, normalizeEntityDisplayTemplate, normalizePositiveNumberOption, peelSettingValueKey, printGraphicFromElement, provideDynamicHomePage, provideMenuMiddleware, resolveCardFieldBadgeColor, resolveDateFilterPresets, resolveDefaultMasterListLayout, resolveEnabledMasterListLayouts, resolveEntityRowDisplayText, resolveEntityRowDisplayTitle, resolveEntityRowDisplayTitleFromColumnContext, resolveEntityRowTitleTemplate, resolveEntitySearchTitleFallback, resolveGraphicElementSize, resolveGraphicPrintContent, resolveQueryMatchingDisplayText, resolveSearchDisplayTemplate, resolveSearchableText, resolveStatusLook, sanitizeResolvedEntityDisplayTitle, searchInRecordValues, searchInSearchableValue, serializeSvgElement, shouldApplyDefaultMultiLanguageToEntityProperty, shouldApplyDefaultMultiLanguageToWidgetNode, shouldApplyDefaultMultiLanguageToWidgetProperty, systemStatusToDefinition, triggerBrowserDownload, withDefaultMultiLanguageOnWidgetNodeTree, withDefaultMultiLanguageOnWidgetProperty };
3673
+ export type { AXCFileUploaderAction, AXCFileUploaderActionsPayload, AXCFileUploaderCapabilities, AXEntityPropertyWidget, AXPAgentOutputContract, AXPAgentOutputKind, AXPAgentResponseFormat, AXPAggregate, AXPAppPathParts, AXPAppVersion, AXPAppVersionProvider, AXPApplication, AXPBackgroundOperation, AXPBackgroundOperationActionKey, AXPBackgroundOperationCapabilities, AXPBackgroundOperationCreateRequest, AXPBackgroundOperationEntityModel, AXPBackgroundOperationEntityStorageAdapter, AXPBackgroundOperationError, AXPBackgroundOperationFailureMode, AXPBackgroundOperationFailurePolicy, AXPBackgroundOperationProviderStore, AXPBackgroundOperationStatus, AXPCardBadgeColor, AXPCardBadgeDisplay, AXPCardBadgeDisplayOptions, AXPCardField, AXPCardFieldDisplay, AXPCardFieldDisplayConfig, AXPCategoryEntity, AXPColumnAlign, AXPColumnContentAlign, AXPCommandActionCallback, AXPCommandActionDisplay, AXPCommandActionLook, AXPCommandActionPriority, AXPCommandActionType, AXPCommonModuleConfigs, AXPCurrency, AXPDateTimeFilterPreset, AXPDateTimeFilterPresetKind, AXPDateTimeFilterValue, AXPDomToImageOptions, AXPEntity, AXPEntityAction, AXPEntityCommand, AXPEntityDetailListView, AXPEntityDisplayField, AXPEntityMasterCreateLayoutView, AXPEntityMasterLayoutView, AXPEntityMasterListDisplayMode, AXPEntityMasterListLayoutOption, AXPEntityMasterListLayoutType, AXPEntityMasterListView, AXPEntityMasterSingleLayoutView, AXPEntityMasterUpdateLayoutView, AXPEntityPage, AXPEntityProperty, AXPEntityPropertyCreateView, AXPEntityPropertyGroup, AXPEntityPropertyLayoutConfig, AXPEntityPropertyUpdateView, AXPEntityPropertyView, AXPEntityQuery, AXPEntityQuickCreate, AXPEntitySearchTitleContext, AXPEntitySectionView, AXPEntityTableColumn, AXPEntityV2, AXPEntityVersionHistory, AXPErrorHandler, AXPFileActionProvider, AXPFileActionProviderToken, AXPFileExtension, AXPFileType, AXPFileTypeInfoProvider, AXPFilterOperator, AXPGeoLocation, AXPGraphicDownloadFormat, AXPGraphicDownloadOptions, AXPGraphicPrintContent, AXPGroupSearchResult, AXPHomePageDefinition, AXPInAppNotificationCreateRequest, AXPInAppNotificationPriority, AXPInAppNotificationService, AXPJsonSchemaLike, AXPLanguage, AXPLocaleManagementPort, AXPLocaleProfile, AXPLockGetInfoRequest, AXPLockInfo, AXPLockRequest, AXPLockType, AXPMenuFinderResult, AXPMenuInsertion, AXPMenuItem, AXPMenuItemCommand, AXPMenuItemFinder, AXPMenuItemWithParent, AXPMenuMiddleware, AXPMenuMiddlewareContext, AXPMenuMiddlewareProvider, AXPMenuProvider, AXPMenuProviderContext, AXPMenuRouteMatchResult, AXPMenuType, AXPModule, AXPOutputContractTranscriptSegmentDefinition, AXPOutputContractTranscriptSegmentProvider, AXPOutputContractTranscriptSegmentProviderToken, AXPOutputTranscriptSegmentId, AXPPlatformConfigs, AXPPrintGraphicOptions, AXPQueryFilter, AXPQuerySort, AXPQueryView, AXPRelatedEntity, AXPRelationship, AXPResolveEntityRowDisplayTitleOptions, AXPRootConfigs, AXPSearchAction, AXPSearchDefinition, AXPSearchDefinitionDisplayFormat, AXPSearchDefinitionProvider, AXPSearchDisplayGroupResult, AXPSearchDisplayResult, AXPSearchDisplayResultForSave, AXPSearchParentResult, AXPSearchProvider, AXPSearchResult, AXPSettingChangedEvent, AXPSettingCoercionKind, AXPSettingDefaultValuesProvider, AXPSettingDefinition, AXPSettingDefinitionGroup, AXPSettingDefinitionProvider, AXPSettingDefinitionSection, AXPSettingLayoutOptions, AXPSettingMergedDefaults, AXPSettingValue, AXPSettingValueProvider, AXPSettingsServiceInterface, AXPStatusDefinition, AXPStatusTransition, AXPTimeZone, AXPTokenDefinition, AXPTokenDefinitionProvider, AXPTokenDefinitionProviderToken, AXPUnLockRequest, AXPUnsavedChangesCanDeactivate, AXPUnsavedChangesConfirmOptions, AXPUnsavedChangesPopstateSource, AXPVersionChange, AXPVersionEntry, AXPVersionStream, CanonicalChange, CanonicalChangeOp, VersionedFileInfo };