@acorex/platform 20.6.0-next.10 → 20.6.0-next.12

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 (44) hide show
  1. package/common/index.d.ts +3 -0
  2. package/core/index.d.ts +102 -32
  3. package/fesm2022/acorex-platform-common.mjs.map +1 -1
  4. package/fesm2022/acorex-platform-core.mjs +44 -22
  5. package/fesm2022/acorex-platform-core.mjs.map +1 -1
  6. package/fesm2022/acorex-platform-domain.mjs +49 -4
  7. package/fesm2022/acorex-platform-domain.mjs.map +1 -1
  8. package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
  9. package/fesm2022/acorex-platform-layout-components.mjs +873 -140
  10. package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
  11. package/fesm2022/acorex-platform-layout-designer.mjs +2 -2
  12. package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
  13. package/fesm2022/{acorex-platform-layout-entity-create-entity.command-DGeylNSY.mjs → acorex-platform-layout-entity-create-entity.command-Bui87lV1.mjs} +37 -6
  14. package/fesm2022/acorex-platform-layout-entity-create-entity.command-Bui87lV1.mjs.map +1 -0
  15. package/fesm2022/acorex-platform-layout-entity.mjs +528 -118
  16. package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
  17. package/fesm2022/acorex-platform-layout-views.mjs +7 -7
  18. package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
  19. package/fesm2022/acorex-platform-layout-widget-core.mjs +2 -8
  20. package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
  21. package/fesm2022/acorex-platform-layout-widgets.mjs +801 -421
  22. package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
  23. package/fesm2022/acorex-platform-runtime.mjs +79 -3
  24. package/fesm2022/acorex-platform-runtime.mjs.map +1 -1
  25. package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-CD7rJIMh.mjs → acorex-platform-themes-default-entity-master-list-view.component-xq3eQ6t2.mjs} +3 -3
  26. package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-xq3eQ6t2.mjs.map +1 -0
  27. package/fesm2022/acorex-platform-themes-default.mjs +112 -11
  28. package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
  29. package/fesm2022/acorex-platform-themes-shared-icon-chooser-column.component-C0EpfU2k.mjs +55 -0
  30. package/fesm2022/acorex-platform-themes-shared-icon-chooser-column.component-C0EpfU2k.mjs.map +1 -0
  31. package/fesm2022/acorex-platform-themes-shared.mjs +3 -3
  32. package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
  33. package/fesm2022/acorex-platform-workflow.mjs +277 -38
  34. package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
  35. package/layout/components/index.d.ts +248 -11
  36. package/layout/entity/index.d.ts +57 -9
  37. package/layout/widget-core/index.d.ts +4 -5
  38. package/layout/widgets/index.d.ts +59 -36
  39. package/package.json +1 -1
  40. package/runtime/index.d.ts +36 -8
  41. package/themes/default/index.d.ts +25 -2
  42. package/workflow/index.d.ts +38 -37
  43. package/fesm2022/acorex-platform-layout-entity-create-entity.command-DGeylNSY.mjs.map +0 -1
  44. package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-CD7rJIMh.mjs.map +0 -1
package/common/index.d.ts CHANGED
@@ -86,6 +86,7 @@ interface AXPEntityPropertyGroup {
86
86
  title: string;
87
87
  description?: string;
88
88
  permissions?: string[];
89
+ icon?: string;
89
90
  }
90
91
  interface AXPEntityPropertyView {
91
92
  name: string;
@@ -100,6 +101,7 @@ interface AXPEntityPropertyCreateView extends AXPEntityPropertyView {
100
101
  }
101
102
  interface AXPEntitySectionView {
102
103
  id: string;
104
+ icon?: string;
103
105
  description?: string;
104
106
  order?: number;
105
107
  collapsed?: boolean;
@@ -201,6 +203,7 @@ interface AXPCommandActionDisplay extends Partial<AXPCommandActionLook> {
201
203
  hidden?: boolean | string;
202
204
  disabled?: boolean | string;
203
205
  default?: boolean;
206
+ order?: number;
204
207
  }
205
208
  interface AXPEntityAction extends AXPCommandActionDisplay {
206
209
  scope: AXPEntityCommandScope;
package/core/index.d.ts CHANGED
@@ -767,7 +767,6 @@ declare const AXPSystemActions: Readonly<{
767
767
  readonly key: AXPSystemActionType.Cancel;
768
768
  readonly title: string;
769
769
  readonly icon: "fa-light fa-xmark";
770
- readonly color: "danger";
771
770
  readonly critical: true;
772
771
  readonly descriptions: {
773
772
  readonly title: string;
@@ -963,7 +962,10 @@ interface AXPCategoryEntity<TKey = string> {
963
962
  title: string;
964
963
  description?: string;
965
964
  parentId?: TKey;
966
- childCount: number;
965
+ childrenCount: number;
966
+ itemsCount?: number;
967
+ totalChildren?: number;
968
+ totalItems?: number;
967
969
  }
968
970
  interface AXPCategoryEntityWithItems<T> extends AXPCategoryEntity {
969
971
  items: T[];
@@ -1055,6 +1057,12 @@ type AXPBadge = {
1055
1057
  description?: string;
1056
1058
  color?: 'primary' | 'success' | 'warning' | 'danger';
1057
1059
  };
1060
+ interface AXPCommandMessage {
1061
+ type?: 'info' | 'success' | 'warning' | 'error';
1062
+ code?: string;
1063
+ text: string;
1064
+ details?: unknown;
1065
+ }
1058
1066
  type AXPExecuteCommand = {
1059
1067
  name: string;
1060
1068
  options?: AXPMetaData;
@@ -1062,22 +1070,18 @@ type AXPExecuteCommand = {
1062
1070
  };
1063
1071
  interface AXPExecuteCommandResult<T = any> {
1064
1072
  success: boolean;
1065
- result?: T;
1066
- error?: {
1067
- code?: string;
1068
- message?: string;
1069
- details?: any;
1070
- };
1073
+ data?: T;
1074
+ message?: AXPCommandMessage;
1071
1075
  }
1072
1076
  interface AXPQueryFetchResult<T = any> {
1073
1077
  success: boolean;
1074
- result?: {
1078
+ data?: {
1075
1079
  items?: T[];
1076
1080
  total?: number;
1077
1081
  };
1078
- error?: {
1082
+ message?: {
1079
1083
  code?: string;
1080
- message?: string;
1084
+ text?: string;
1081
1085
  details?: any;
1082
1086
  };
1083
1087
  }
@@ -1796,6 +1800,7 @@ declare const AXPAppStartUpProvider: i0.EnvironmentProviders;
1796
1800
  * Status Definition Types
1797
1801
  * Defines the structure for status definitions and their transitions
1798
1802
  */
1803
+
1799
1804
  /**
1800
1805
  * Status definition with metadata
1801
1806
  */
@@ -1836,6 +1841,10 @@ interface AXPStatusDefinition {
1836
1841
  * Whether this is an initial status (starting state)
1837
1842
  */
1838
1843
  isInitial?: boolean;
1844
+ /**
1845
+ * Whether list views should be automatically generated for this status
1846
+ */
1847
+ generateView?: boolean;
1839
1848
  }
1840
1849
  /**
1841
1850
  * Status transition definition
@@ -1904,6 +1913,53 @@ declare abstract class AXPStatusProvider {
1904
1913
  * Optional default status name
1905
1914
  */
1906
1915
  abstract readonly defaultStatus?: string;
1916
+ /**
1917
+ * Optional workflow actions that should be exposed on entity lists/records
1918
+ */
1919
+ readonly workflowActions?: AXPStatusWorkflowAction[];
1920
+ }
1921
+ type AXPStatusActionPriority = 'primary' | 'secondary';
1922
+ type AXPStatusActionScope = 'individual' | 'selected' | 'typeLevel' | 'section';
1923
+ interface AXPStatusWorkflowAction {
1924
+ /**
1925
+ * Unique action name
1926
+ */
1927
+ name: string;
1928
+ /**
1929
+ * Localized title key
1930
+ */
1931
+ title: string;
1932
+ /**
1933
+ * Command descriptor to execute
1934
+ */
1935
+ command: {
1936
+ name: string;
1937
+ options?: Record<string, unknown>;
1938
+ };
1939
+ /**
1940
+ * Optional hidden expression
1941
+ */
1942
+ hidden?: string;
1943
+ /**
1944
+ * Action priority (primary/secondary)
1945
+ */
1946
+ priority?: AXPStatusActionPriority;
1947
+ /**
1948
+ * System action type for telemetry/audit
1949
+ */
1950
+ type?: AXPSystemActionType;
1951
+ /**
1952
+ * Command scope (individual, selected, typeLevel, section)
1953
+ */
1954
+ scope?: AXPStatusActionScope;
1955
+ /**
1956
+ * Whether action should be rendered separated from others
1957
+ */
1958
+ separated?: boolean;
1959
+ /**
1960
+ * Optional icon representation
1961
+ */
1962
+ icon?: string;
1907
1963
  }
1908
1964
 
1909
1965
  /**
@@ -1994,7 +2050,8 @@ declare enum AXPSystemStatusType {
1994
2050
  Pending = "pending",
1995
2051
  Completed = "completed",
1996
2052
  Suspended = "suspended",
1997
- Failed = "failed"
2053
+ Failed = "failed",
2054
+ Review = "review"
1998
2055
  }
1999
2056
  /**
2000
2057
  * Standard system status definitions
@@ -2006,7 +2063,7 @@ declare const AXPSystemStatuses: Readonly<{
2006
2063
  readonly name: AXPSystemStatusType.Todo;
2007
2064
  readonly title: string;
2008
2065
  readonly icon: "fa-light fa-circle";
2009
- readonly color: "#6b7280";
2066
+ readonly color: "secondary";
2010
2067
  readonly description: string;
2011
2068
  readonly order: 1;
2012
2069
  readonly isActive: true;
@@ -2017,7 +2074,7 @@ declare const AXPSystemStatuses: Readonly<{
2017
2074
  readonly name: AXPSystemStatusType.InProgress;
2018
2075
  readonly title: string;
2019
2076
  readonly icon: "fa-light fa-play";
2020
- readonly color: "#3b82f6";
2077
+ readonly color: "info";
2021
2078
  readonly description: string;
2022
2079
  readonly order: 2;
2023
2080
  readonly isActive: true;
@@ -2028,7 +2085,7 @@ declare const AXPSystemStatuses: Readonly<{
2028
2085
  readonly name: AXPSystemStatusType.InReview;
2029
2086
  readonly title: string;
2030
2087
  readonly icon: "fa-light fa-eye";
2031
- readonly color: "#8b5cf6";
2088
+ readonly color: "info";
2032
2089
  readonly description: string;
2033
2090
  readonly order: 3;
2034
2091
  readonly isActive: true;
@@ -2039,7 +2096,7 @@ declare const AXPSystemStatuses: Readonly<{
2039
2096
  readonly name: AXPSystemStatusType.Blocked;
2040
2097
  readonly title: string;
2041
2098
  readonly icon: "fa-light fa-ban";
2042
- readonly color: "#ef4444";
2099
+ readonly color: "danger";
2043
2100
  readonly description: string;
2044
2101
  readonly order: 4;
2045
2102
  readonly isActive: true;
@@ -2050,7 +2107,7 @@ declare const AXPSystemStatuses: Readonly<{
2050
2107
  readonly name: AXPSystemStatusType.Done;
2051
2108
  readonly title: string;
2052
2109
  readonly icon: "fa-light fa-check-circle";
2053
- readonly color: "#10b981";
2110
+ readonly color: "success";
2054
2111
  readonly description: string;
2055
2112
  readonly order: 5;
2056
2113
  readonly isActive: true;
@@ -2061,7 +2118,7 @@ declare const AXPSystemStatuses: Readonly<{
2061
2118
  readonly name: AXPSystemStatusType.Cancelled;
2062
2119
  readonly title: string;
2063
2120
  readonly icon: "fa-light fa-times-circle";
2064
- readonly color: "#64748b";
2121
+ readonly color: "neutral";
2065
2122
  readonly description: string;
2066
2123
  readonly order: 6;
2067
2124
  readonly isActive: true;
@@ -2072,7 +2129,7 @@ declare const AXPSystemStatuses: Readonly<{
2072
2129
  readonly name: AXPSystemStatusType.Draft;
2073
2130
  readonly title: string;
2074
2131
  readonly icon: "fa-light fa-file-pen";
2075
- readonly color: "#6b7280";
2132
+ readonly color: "neutral";
2076
2133
  readonly description: string;
2077
2134
  readonly order: 1;
2078
2135
  readonly isActive: true;
@@ -2083,7 +2140,7 @@ declare const AXPSystemStatuses: Readonly<{
2083
2140
  readonly name: AXPSystemStatusType.PendingReview;
2084
2141
  readonly title: string;
2085
2142
  readonly icon: "fa-light fa-clock";
2086
- readonly color: "#f59e0b";
2143
+ readonly color: "warning";
2087
2144
  readonly description: string;
2088
2145
  readonly order: 2;
2089
2146
  readonly isActive: true;
@@ -2094,7 +2151,7 @@ declare const AXPSystemStatuses: Readonly<{
2094
2151
  readonly name: AXPSystemStatusType.Approved;
2095
2152
  readonly title: string;
2096
2153
  readonly icon: "fa-light fa-check-circle";
2097
- readonly color: "#10b981";
2154
+ readonly color: "success";
2098
2155
  readonly description: string;
2099
2156
  readonly order: 3;
2100
2157
  readonly isActive: true;
@@ -2105,7 +2162,7 @@ declare const AXPSystemStatuses: Readonly<{
2105
2162
  readonly name: AXPSystemStatusType.Published;
2106
2163
  readonly title: string;
2107
2164
  readonly icon: "fa-light fa-globe";
2108
- readonly color: "#3b82f6";
2165
+ readonly color: "primary";
2109
2166
  readonly description: string;
2110
2167
  readonly order: 4;
2111
2168
  readonly isActive: true;
@@ -2116,7 +2173,7 @@ declare const AXPSystemStatuses: Readonly<{
2116
2173
  readonly name: AXPSystemStatusType.Archived;
2117
2174
  readonly title: string;
2118
2175
  readonly icon: "fa-light fa-archive";
2119
- readonly color: "#64748b";
2176
+ readonly color: "neutral";
2120
2177
  readonly description: string;
2121
2178
  readonly order: 5;
2122
2179
  readonly isActive: true;
@@ -2127,7 +2184,7 @@ declare const AXPSystemStatuses: Readonly<{
2127
2184
  readonly name: AXPSystemStatusType.Rejected;
2128
2185
  readonly title: string;
2129
2186
  readonly icon: "fa-light fa-times-circle";
2130
- readonly color: "#ef4444";
2187
+ readonly color: "danger";
2131
2188
  readonly description: string;
2132
2189
  readonly order: 6;
2133
2190
  readonly isActive: true;
@@ -2138,7 +2195,7 @@ declare const AXPSystemStatuses: Readonly<{
2138
2195
  readonly name: AXPSystemStatusType.Active;
2139
2196
  readonly title: string;
2140
2197
  readonly icon: "fa-light fa-check-circle";
2141
- readonly color: "#10b981";
2198
+ readonly color: "success";
2142
2199
  readonly description: string;
2143
2200
  readonly order: 1;
2144
2201
  readonly isActive: true;
@@ -2149,7 +2206,7 @@ declare const AXPSystemStatuses: Readonly<{
2149
2206
  readonly name: AXPSystemStatusType.Inactive;
2150
2207
  readonly title: string;
2151
2208
  readonly icon: "fa-light fa-circle";
2152
- readonly color: "#6b7280";
2209
+ readonly color: "secondary";
2153
2210
  readonly description: string;
2154
2211
  readonly order: 2;
2155
2212
  readonly isActive: true;
@@ -2160,7 +2217,7 @@ declare const AXPSystemStatuses: Readonly<{
2160
2217
  readonly name: AXPSystemStatusType.Pending;
2161
2218
  readonly title: string;
2162
2219
  readonly icon: "fa-light fa-clock";
2163
- readonly color: "#f59e0b";
2220
+ readonly color: "warning";
2164
2221
  readonly description: string;
2165
2222
  readonly order: 1;
2166
2223
  readonly isActive: true;
@@ -2171,7 +2228,7 @@ declare const AXPSystemStatuses: Readonly<{
2171
2228
  readonly name: AXPSystemStatusType.Completed;
2172
2229
  readonly title: string;
2173
2230
  readonly icon: "fa-light fa-check-circle";
2174
- readonly color: "#10b981";
2231
+ readonly color: "success";
2175
2232
  readonly description: string;
2176
2233
  readonly order: 10;
2177
2234
  readonly isActive: true;
@@ -2182,7 +2239,7 @@ declare const AXPSystemStatuses: Readonly<{
2182
2239
  readonly name: AXPSystemStatusType.Suspended;
2183
2240
  readonly title: string;
2184
2241
  readonly icon: "fa-light fa-pause-circle";
2185
- readonly color: "#f59e0b";
2242
+ readonly color: "neutral";
2186
2243
  readonly description: string;
2187
2244
  readonly order: 5;
2188
2245
  readonly isActive: true;
@@ -2193,13 +2250,22 @@ declare const AXPSystemStatuses: Readonly<{
2193
2250
  readonly name: AXPSystemStatusType.Failed;
2194
2251
  readonly title: string;
2195
2252
  readonly icon: "fa-light fa-xmark-circle";
2196
- readonly color: "#ef4444";
2253
+ readonly color: "danger";
2197
2254
  readonly description: string;
2198
2255
  readonly order: 10;
2199
2256
  readonly isActive: true;
2200
2257
  readonly isInitial: false;
2201
2258
  readonly isFinal: true;
2202
2259
  };
2260
+ readonly Review: {
2261
+ readonly name: AXPSystemStatusType.Review;
2262
+ readonly title: string;
2263
+ readonly icon: "fa-light fa-eye";
2264
+ readonly color: "info";
2265
+ readonly description: string;
2266
+ readonly order: 3;
2267
+ readonly isActive: true;
2268
+ };
2203
2269
  }>;
2204
2270
  /**
2205
2271
  * Get system status definition by type
@@ -2414,6 +2480,10 @@ declare class AXHighlightService {
2414
2480
  }
2415
2481
 
2416
2482
  declare function extractTextFromHtml(value: string): string;
2483
+ /**
2484
+ * Generate kebab-case group name from title
2485
+ */
2486
+ declare function generateKebabCase(title: string): string;
2417
2487
 
2418
- export { AXHighlightService, AXPActivityLogProvider, AXPActivityLogService, AXPAppStartUpProvider, AXPAppStartUpService, AXPBroadcastEventService, AXPColorPaletteProvider, AXPColorPaletteService, AXPComponentLogoConfig, AXPContentCheckerDirective, AXPContextChangeEvent, AXPContextStore, AXPCountdownPipe, AXPDataGenerator, AXPDataSourceDefinitionProviderService, AXPDblClickDirective, AXPDefaultColorPalettesProvider, AXPDistributedEventListenerService, AXPElementDataDirective, AXPExportTemplateToken, AXPExpressionEvaluatorScopeProviderContext, AXPExpressionEvaluatorScopeProviderService, AXPExpressionEvaluatorService, AXPGridLayoutDirective, AXPHookService, AXPImageUrlLogoConfig, AXPPlatformScope, AXPStatusDefinitionProviderService, AXPStatusProvider, AXPSystemActionType, AXPSystemActions, AXPSystemStatusType, AXPSystemStatuses, AXPTagProvider, AXPTagService, AXP_ACTIVITY_LOG_PROVIDER, AXP_COLOR_PALETTE_PROVIDER, AXP_DATASOURCE_DEFINITION_PROVIDER, AXP_DISTRIBUTED_EVENT_LISTENER_PROVIDER, AXP_EXPRESSION_EVALUATOR_SCOPE_PROVIDER, AXP_STATUS_PROVIDERS, AXP_TAG_PROVIDER, applyFilterArray, applyPagination, applyQueryArray, applySortArray, applySystemActionDefault, cleanDeep, extractNestedFieldsWildcard, extractTextFromHtml, extractValue, getActionButton, getChangedPaths, getDetailedChanges, getEnumValues, getNestedKeys, getSmart, getStatusInfo, getSystemActions, getSystemStatus, objectKeyValueTransforms, resolveActionLook, resolvePlatformScopeKey, resolvePlatformScopeName, resolveStatusLook, setSmart, systemStatusToDefinition };
2419
- export type { AXPActionMenuItem, AXPActivityLog, AXPActivityLogChange, AXPApplicationUserReference, AXPBackButton, AXPBadge, AXPBreadcrumbItem, AXPCategorizedEntity, AXPCategorizedEntityDto, AXPCategoryEntity, AXPCategoryEntityWithItems, AXPColorPalette, AXPColorPaletteFilterOptions, AXPColumnQuery, AXPContent, AXPContentDirection, AXPContentType, AXPContextData, AXPContextState, AXPDataSource, AXPDataSourceDataFieldDefinition, AXPDataSourceDefinition, AXPDataSourceDefinitionProvider, AXPDataType, AXPDistributedEventListenerProvider, AXPDistributedEventListenerProviderToken, AXPEntityReference, AXPEqualValidationRule, AXPExecuteCommand, AXPExecuteCommandResult, AXPExportCsvOptions, AXPExportExcelOptions, AXPExportOptions, AXPExportPdfOptions, AXPExportPrintOptions, AXPExpression, AXPExpressionEvaluatorScope, AXPExpressionEvaluatorScopeProvider, AXPExpressionEvaluatorScopeProviders, AXPFileListItem, AXPFileSource, AXPFileStatus, AXPFilterDefinition, AXPFilterLogic, AXPFilterOperation, AXPFilterQuery, AXPFlowDirection, AXPGridLayoutOptions, AXPGridPlacement, AXPLogoConfig, AXPMaxLengthValidationRule, AXPMetaData, AXPMiddlewareErrorResponse, AXPMinLengthValidationRule, AXPNavigateActionCommand, AXPNavigateActionOptions, AXPOptionsData, AXPPagedListResult, AXPPartialNested, AXPPlatformScopeKey, AXPQueryFetchResult, AXPQueryRequest, AXPReqexValidationRule, AXPRequiredValidationRule, AXPSortDefinition, AXPSortQuery, AXPStartUpTask, AXPStatusDefinition, AXPStatusTransition, AXPStringValidationRules, AXPSystemAction, AXPTag, AXPTagFilterOptions, AXPUserReference, AXPValidationRule, AXPValidationRules, AXPValueTransformerFunction, AXPValueTransformerFunctions, AXPValueUnit, AXPValueUnits, AXPViewBlockDefinition, AXPViewDefinition, AXPViewFieldDefinition, AXPViewQuery, AXPWidgetTrigger, AXPWidgetTriggers };
2488
+ export { AXHighlightService, AXPActivityLogProvider, AXPActivityLogService, AXPAppStartUpProvider, AXPAppStartUpService, AXPBroadcastEventService, AXPColorPaletteProvider, AXPColorPaletteService, AXPComponentLogoConfig, AXPContentCheckerDirective, AXPContextChangeEvent, AXPContextStore, AXPCountdownPipe, AXPDataGenerator, AXPDataSourceDefinitionProviderService, AXPDblClickDirective, AXPDefaultColorPalettesProvider, AXPDistributedEventListenerService, AXPElementDataDirective, AXPExportTemplateToken, AXPExpressionEvaluatorScopeProviderContext, AXPExpressionEvaluatorScopeProviderService, AXPExpressionEvaluatorService, AXPGridLayoutDirective, AXPHookService, AXPImageUrlLogoConfig, AXPPlatformScope, AXPStatusDefinitionProviderService, AXPStatusProvider, AXPSystemActionType, AXPSystemActions, AXPSystemStatusType, AXPSystemStatuses, AXPTagProvider, AXPTagService, AXP_ACTIVITY_LOG_PROVIDER, AXP_COLOR_PALETTE_PROVIDER, AXP_DATASOURCE_DEFINITION_PROVIDER, AXP_DISTRIBUTED_EVENT_LISTENER_PROVIDER, AXP_EXPRESSION_EVALUATOR_SCOPE_PROVIDER, AXP_STATUS_PROVIDERS, AXP_TAG_PROVIDER, applyFilterArray, applyPagination, applyQueryArray, applySortArray, applySystemActionDefault, cleanDeep, extractNestedFieldsWildcard, extractTextFromHtml, extractValue, generateKebabCase, getActionButton, getChangedPaths, getDetailedChanges, getEnumValues, getNestedKeys, getSmart, getStatusInfo, getSystemActions, getSystemStatus, objectKeyValueTransforms, resolveActionLook, resolvePlatformScopeKey, resolvePlatformScopeName, resolveStatusLook, setSmart, systemStatusToDefinition };
2489
+ export type { AXPActionMenuItem, AXPActivityLog, AXPActivityLogChange, AXPApplicationUserReference, AXPBackButton, AXPBadge, AXPBreadcrumbItem, AXPCategorizedEntity, AXPCategorizedEntityDto, AXPCategoryEntity, AXPCategoryEntityWithItems, AXPColorPalette, AXPColorPaletteFilterOptions, AXPColumnQuery, AXPCommandMessage, AXPContent, AXPContentDirection, AXPContentType, AXPContextData, AXPContextState, AXPDataSource, AXPDataSourceDataFieldDefinition, AXPDataSourceDefinition, AXPDataSourceDefinitionProvider, AXPDataType, AXPDistributedEventListenerProvider, AXPDistributedEventListenerProviderToken, AXPEntityReference, AXPEqualValidationRule, AXPExecuteCommand, AXPExecuteCommandResult, AXPExportCsvOptions, AXPExportExcelOptions, AXPExportOptions, AXPExportPdfOptions, AXPExportPrintOptions, AXPExpression, AXPExpressionEvaluatorScope, AXPExpressionEvaluatorScopeProvider, AXPExpressionEvaluatorScopeProviders, AXPFileListItem, AXPFileSource, AXPFileStatus, AXPFilterDefinition, AXPFilterLogic, AXPFilterOperation, AXPFilterQuery, AXPFlowDirection, AXPGridLayoutOptions, AXPGridPlacement, AXPLogoConfig, AXPMaxLengthValidationRule, AXPMetaData, AXPMiddlewareErrorResponse, AXPMinLengthValidationRule, AXPNavigateActionCommand, AXPNavigateActionOptions, AXPOptionsData, AXPPagedListResult, AXPPartialNested, AXPPlatformScopeKey, AXPQueryFetchResult, AXPQueryRequest, AXPReqexValidationRule, AXPRequiredValidationRule, AXPSortDefinition, AXPSortQuery, AXPStartUpTask, AXPStatusActionPriority, AXPStatusActionScope, AXPStatusDefinition, AXPStatusTransition, AXPStatusWorkflowAction, AXPStringValidationRules, AXPSystemAction, AXPTag, AXPTagFilterOptions, AXPUserReference, AXPValidationRule, AXPValidationRules, AXPValueTransformerFunction, AXPValueTransformerFunctions, AXPValueUnit, AXPValueUnits, AXPViewBlockDefinition, AXPViewDefinition, AXPViewFieldDefinition, AXPViewQuery, AXPWidgetTrigger, AXPWidgetTriggers };