@acorex/platform 21.0.0-next.73 → 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/platform",
3
- "version": "21.0.0-next.73",
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",
@@ -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';
@@ -1489,260 +1490,6 @@ declare class AXPFileActionsService {
1489
1490
 
1490
1491
  declare const UploadFromComputerActionProvider: AXPFileActionProvider;
1491
1492
 
1492
- declare enum AXPFileStorageStatus {
1493
- Temporary = "temporary",// File is not yet associated with a parent entity
1494
- Committed = "committed",// File is fully associated and in use
1495
- PendingDeletion = "pendingDeletion",// File is marked for deletion but not yet removed
1496
- Archived = "archived",// File is archived and no longer actively used
1497
- Error = "error"
1498
- }
1499
- /**
1500
- * Interface representing a file storage request in the Acorex platform.
1501
- */
1502
- interface AXPFileStorageCreateRequest {
1503
- /**
1504
- * The file to be stored.
1505
- */
1506
- file: File;
1507
- /**
1508
- * The name of the file.
1509
- */
1510
- name?: string;
1511
- /**
1512
- * The unique identifier of referenced entity.
1513
- */
1514
- refId: string;
1515
- /**
1516
- * The type of the referenced entity.
1517
- */
1518
- refType: string;
1519
- /**
1520
- * The category of the file. profile-picture, company-logo, policy, document, etc.
1521
- */
1522
- category: string;
1523
- /**
1524
- * The folder path where the file should be stored.
1525
- * If null, the service will resolve the path based on metadata, user, tenant, or default rules.
1526
- */
1527
- path?: string;
1528
- /**
1529
- * Metadata associated with the file.
1530
- */
1531
- metadata?: AXPMetaData;
1532
- /**
1533
- * Indicates whether the file is primary or not.
1534
- */
1535
- isPrimary?: boolean;
1536
- /**
1537
- * Indicates the status of the file.
1538
- */
1539
- status?: AXPFileStorageStatus;
1540
- }
1541
- interface AXPFileStorageUpdateRequest {
1542
- /**
1543
- * The unique identifier for the stored file.
1544
- */
1545
- fileId: string;
1546
- /**
1547
- * The folder path where the file should be stored.
1548
- * If null, the service will resolve the path based on metadata, user, tenant, or default rules.
1549
- */
1550
- path?: string;
1551
- /**
1552
- * The name of the file.
1553
- */
1554
- name?: string;
1555
- /**
1556
- * Metadata associated with the file.
1557
- */
1558
- metadata: AXPMetaData;
1559
- /**
1560
- * Indicates whether the file is primary or not.
1561
- */
1562
- isPrimary?: boolean;
1563
- }
1564
- interface AXPFileManyStorageInfo {
1565
- /**
1566
- * The unique identifier for the stored file.
1567
- */
1568
- id?: string;
1569
- /**
1570
- * The unique identifier for the stored file.
1571
- */
1572
- fileId: string;
1573
- /**
1574
- * The unique identifier of referenced entity.
1575
- */
1576
- refId: string;
1577
- /**
1578
- * The type of the referenced entity.
1579
- */
1580
- refType: string;
1581
- /**
1582
- * The size of the file in bytes.
1583
- */
1584
- size: number;
1585
- /**
1586
- * The name of the file.
1587
- */
1588
- name?: string;
1589
- /**
1590
- * The URL where the file can be accessed.
1591
- */
1592
- url?: string;
1593
- /**
1594
- * Optional title (e.g. for display in file list).
1595
- */
1596
- title?: string;
1597
- /**
1598
- * Optional description (e.g. for display in file list).
1599
- */
1600
- description?: string;
1601
- }
1602
- /**
1603
- * Represents information about a file stored in the AXP file storage system.
1604
- */
1605
- interface AXPFileStorageInfo {
1606
- /**
1607
- * The unique identifier for the stored file.
1608
- */
1609
- id?: string;
1610
- /**
1611
- * The unique identifier for the stored file.
1612
- */
1613
- fileId: string;
1614
- /**
1615
- * The unique identifier of referenced entity.
1616
- */
1617
- refId: string;
1618
- /**
1619
- * The type of the referenced entity.
1620
- */
1621
- refType: string;
1622
- /**
1623
- * The category of the file. profile-picture, company-logo, policy, document, etc.
1624
- */
1625
- category: string;
1626
- /**
1627
- * The URL where the file can be accessed.
1628
- */
1629
- url?: string;
1630
- /**
1631
- * The size of the file in bytes.
1632
- */
1633
- size: number;
1634
- /**
1635
- * The name of the file.
1636
- */
1637
- name?: string;
1638
- /**
1639
- * The MIME type of the file.
1640
- */
1641
- mimeType: string;
1642
- /**
1643
- * The date and time when the file was uploaded.
1644
- */
1645
- uploadedAt: Date;
1646
- /**
1647
- * Indicates whether the file is public or private.
1648
- */
1649
- isPublic: boolean;
1650
- /**
1651
- * Indicates whether the file is primary or not.
1652
- */
1653
- isPrimary?: boolean;
1654
- status: AXPFileStorageStatus;
1655
- binary: File;
1656
- }
1657
- interface AXPFileStorageInfo {
1658
- /**
1659
- * The unique identifier for the stored file.
1660
- */
1661
- id?: string;
1662
- /**
1663
- * The unique identifier for the stored file.
1664
- */
1665
- fileId: string;
1666
- /**
1667
- * The unique identifier of referenced entity.
1668
- */
1669
- refId: string;
1670
- /**
1671
- * The type of the referenced entity.
1672
- */
1673
- refType: string;
1674
- /**
1675
- * The category of the file. profile-picture, company-logo, policy, document, etc.
1676
- */
1677
- category: string;
1678
- /**
1679
- * The URL where the file can be accessed.
1680
- */
1681
- url?: string;
1682
- /**
1683
- * The size of the file in bytes.
1684
- */
1685
- size: number;
1686
- /**
1687
- * The name of the file.
1688
- */
1689
- name?: string;
1690
- /**
1691
- * The MIME type of the file.
1692
- */
1693
- mimeType: string;
1694
- /**
1695
- * The date and time when the file was uploaded.
1696
- */
1697
- uploadedAt: Date;
1698
- /**
1699
- * Indicates whether the file is public or private.
1700
- */
1701
- isPublic: boolean;
1702
- /**
1703
- * Indicates whether the file is primary or not.
1704
- */
1705
- isPrimary?: boolean;
1706
- status: AXPFileStorageStatus;
1707
- binary: File;
1708
- }
1709
- /**
1710
- * Represents information about a file stored in the AXP file storage system.
1711
- */
1712
- interface AXPFileStorageFindRequest {
1713
- /**
1714
- * The unique identifier of referenced entity.
1715
- */
1716
- refId?: string;
1717
- /**
1718
- * The type of the referenced entity.
1719
- */
1720
- refType?: string;
1721
- /**
1722
- * The category of the file. profile-picture, company-logo, policy, document, etc.
1723
- */
1724
- category?: string;
1725
- /**
1726
- * The MIME type of the file.
1727
- */
1728
- mimeType?: string;
1729
- /**
1730
- * Indicates whether the file is public or private.
1731
- */
1732
- isPublic?: boolean;
1733
- /**
1734
- * Indicates whether the file is primary or not.
1735
- */
1736
- isPrimary?: boolean;
1737
- /**
1738
- * The date and time range when the file was uploaded.
1739
- */
1740
- uploadedAtRange?: {
1741
- from: Date;
1742
- to: Date;
1743
- };
1744
- }
1745
-
1746
1493
  declare abstract class AXPFileStorageService {
1747
1494
  abstract save(request: AXPFileStorageCreateRequest): Promise<AXPFileStorageInfo>;
1748
1495
  abstract update(request: AXPFileStorageUpdateRequest): Promise<AXPFileStorageInfo>;
@@ -2515,6 +2262,38 @@ declare function resolveEntityRowTitleTemplate(entity: AXPEntity | null | undefi
2515
2262
  */
2516
2263
  declare function resolveEntitySearchTitleFallback(format: Pick<AXPSearchDefinitionDisplayFormat, 'titleFallbackTemplates' | 'titleFallbackFields'>, data: unknown, locale: string, translationService: AXTranslationService, formatService: AXFormatService, expressionEvaluator: AXPExpressionEvaluatorService): Promise<string>;
2517
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
+
2518
2297
  /**
2519
2298
  * Shared utility for creating Entity:Create command options used in search command providers.
2520
2299
  * Use with command: { name: 'Entity:Create', options: createEntityCommandOptions(...) }
@@ -3633,6 +3412,53 @@ declare class AXPDebugService {
3633
3412
  static ɵprov: i0.ɵɵInjectableDeclaration<AXPDebugService>;
3634
3413
  }
3635
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
+
3636
3462
  declare class AXPExportService {
3637
3463
  popupService: AXPopupService;
3638
3464
  generateBlobFromElement(element: HTMLElement, blobOptions?: AXPDomToImageOptions): Promise<Blob>;
@@ -3843,5 +3669,5 @@ declare class AXMWorkflowErrorHandler implements AXPErrorHandler {
3843
3669
  static ɵprov: i0.ɵɵInjectableDeclaration<AXMWorkflowErrorHandler>;
3844
3670
  }
3845
3671
 
3846
- 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, 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, 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, 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 };
3847
- 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 };