@acorex/platform 21.0.0-next.37 → 21.0.0-next.39
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/fesm2022/acorex-platform-common.mjs +19 -1
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +11 -172
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +7 -8
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +39 -29
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-designer.mjs +8 -9
- package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +468 -255
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +171 -86
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +36 -13
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/{acorex-platform-layout-widgets-file-list-popup.component-9uCkMxcc.mjs → acorex-platform-layout-widgets-file-list-popup.component-CDYAGBku.mjs} +5 -60
- package/fesm2022/acorex-platform-layout-widgets-file-list-popup.component-CDYAGBku.mjs.map +1 -0
- package/fesm2022/acorex-platform-layout-widgets.mjs +101 -128
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default.mjs +16 -4
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +25 -5
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/package.json +1 -1
- package/types/acorex-platform-common.d.ts +11 -6
- package/types/acorex-platform-core.d.ts +56 -101
- package/types/acorex-platform-layout-builder.d.ts +0 -1
- package/types/acorex-platform-layout-components.d.ts +4 -3
- package/types/acorex-platform-layout-designer.d.ts +1 -1
- package/types/acorex-platform-layout-entity.d.ts +36 -30
- package/types/acorex-platform-layout-views.d.ts +31 -29
- package/types/acorex-platform-layout-widget-core.d.ts +30 -14
- package/types/acorex-platform-layout-widgets.d.ts +17 -11
- package/types/acorex-platform-themes-default.d.ts +1 -0
- package/types/acorex-platform-workflow.d.ts +28 -51
- package/fesm2022/acorex-platform-layout-widgets-file-list-popup.component-9uCkMxcc.mjs.map +0 -1
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ import { AXDataSourceOperator, AXStyleColorType, AXDataSourceFilterOption } from
|
|
|
4
4
|
import * as i2 from '@acorex/components/popup';
|
|
5
5
|
import { AXPopupSizeType, AXPopupService } from '@acorex/components/popup';
|
|
6
6
|
import * as i5 from '@acorex/platform/core';
|
|
7
|
-
import { AXPValueTransformerFunctions, AXPOptionsData, AXPExpression, AXPFilterDefinition, AXPMetaData, AXPSystemActionType, AXPValidationRules, AXPGridLayoutOptions, AXPLogoConfig, AXPFileListItem, AXPDataSourceDefinitionProvider, AXPDataSourceDefinition, AXPNavigateActionCommand, AXPExecuteCommand, AXPApplicationUserReference, AXPEntityReference, AXPPlatformScopeKey, AXPPlatformScope, AXPWidgetTriggers, AXPExpressionEvaluatorScopeProvider, AXPExpressionEvaluatorScopeProviderContext } from '@acorex/platform/core';
|
|
7
|
+
import { AXPValueTransformerFunctions, AXPMultiLanguageString, AXPOptionsData, AXPExpression, AXPFilterDefinition, AXPMetaData, AXPSystemActionType, AXPValidationRules, AXPGridLayoutOptions, AXPLogoConfig, AXPFileListItem, AXPDataSourceDefinitionProvider, AXPDataSourceDefinition, AXPNavigateActionCommand, AXPExecuteCommand, AXPApplicationUserReference, AXPEntityReference, AXPPlatformScopeKey, AXPPlatformScope, AXPWidgetTriggers, AXPExpressionEvaluatorScopeProvider, AXPExpressionEvaluatorScopeProviderContext } from '@acorex/platform/core';
|
|
8
8
|
import { AXPWidgetTypesMap, AXPMetaDataDefinition, AXPWidgetNode, AXPWidgetProperty } from '@acorex/platform/layout/widget-core';
|
|
9
9
|
import * as i6 from '@angular/router';
|
|
10
10
|
import { Route, Routes } from '@angular/router';
|
|
@@ -80,6 +80,7 @@ interface AXPEntityPropertyLayoutConfig extends AXPGridLayoutOptions {
|
|
|
80
80
|
visible?: boolean;
|
|
81
81
|
};
|
|
82
82
|
order?: number;
|
|
83
|
+
visible?: boolean | AXPExpression;
|
|
83
84
|
}
|
|
84
85
|
interface AXPEntityPropertyGroup {
|
|
85
86
|
id: string;
|
|
@@ -360,7 +361,7 @@ interface AXPEntityPage {
|
|
|
360
361
|
/**
|
|
361
362
|
* Title of the page (displayed in navigation)
|
|
362
363
|
*/
|
|
363
|
-
title?:
|
|
364
|
+
title?: AXPMultiLanguageString;
|
|
364
365
|
/**
|
|
365
366
|
* Icon for the page (displayed in navigation)
|
|
366
367
|
*/
|
|
@@ -368,7 +369,7 @@ interface AXPEntityPage {
|
|
|
368
369
|
/**
|
|
369
370
|
* Description of the page
|
|
370
371
|
*/
|
|
371
|
-
description?:
|
|
372
|
+
description?: AXPMultiLanguageString;
|
|
372
373
|
/**
|
|
373
374
|
* Layout configuration for page positioning
|
|
374
375
|
*/
|
|
@@ -408,18 +409,18 @@ interface AXPEntityVersionHistory {
|
|
|
408
409
|
interface AXPAggregate {
|
|
409
410
|
id: string;
|
|
410
411
|
name: string;
|
|
411
|
-
title:
|
|
412
|
+
title: AXPMultiLanguageString;
|
|
412
413
|
entities: AXPEntity[];
|
|
413
414
|
}
|
|
414
415
|
interface AXPModule {
|
|
415
416
|
name: string;
|
|
416
|
-
title:
|
|
417
|
+
title: AXPMultiLanguageString;
|
|
417
418
|
aggregates: AXPAggregate[];
|
|
418
419
|
relationships?: AXPRelationship[];
|
|
419
420
|
}
|
|
420
421
|
interface AXPApplication {
|
|
421
422
|
name: string;
|
|
422
|
-
title:
|
|
423
|
+
title: AXPMultiLanguageString;
|
|
423
424
|
modules: AXPModule[];
|
|
424
425
|
}
|
|
425
426
|
interface AXPEntityMasterLayoutView {
|
|
@@ -2356,6 +2357,10 @@ declare class AXPStatusDefinitionProviderService {
|
|
|
2356
2357
|
* Checks if the transition exists in the provider's transitions list
|
|
2357
2358
|
*/
|
|
2358
2359
|
private isValidTransition;
|
|
2360
|
+
/**
|
|
2361
|
+
* Best-effort plain string for {@link Error} messages (no i18n lookup).
|
|
2362
|
+
*/
|
|
2363
|
+
private commandMessageTextForError;
|
|
2359
2364
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPStatusDefinitionProviderService, never>;
|
|
2360
2365
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXPStatusDefinitionProviderService>;
|
|
2361
2366
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Type, InjectionToken, OnInit, ViewContainerRef, ModuleWithProviders, ElementRef, EventEmitter, OnChanges, Renderer2, SimpleChanges, OnDestroy, Injector, PipeTransform, Provider } from '@angular/core';
|
|
3
3
|
import { AXStyleColorType, AXDataSource, AXDataSourceSortOption, AXDataSourceFilterOption, AXDataSourceQuery, AXDataSourceCallbackResult } from '@acorex/cdk/common';
|
|
4
|
+
import { AXMultiLanguageString } from '@acorex/core/translation';
|
|
4
5
|
import * as _ngrx_signals from '@ngrx/signals';
|
|
5
6
|
import * as _acorex_platform_core from '@acorex/platform/core';
|
|
6
7
|
import { Observable } from 'rxjs';
|
|
@@ -918,7 +919,7 @@ type AXPExpression = string;
|
|
|
918
919
|
* @example Per-locale map (e.g. after multi-language editor save)
|
|
919
920
|
* `{ "en-US": "<p>Pick one</p>", "fa-IR": "<p>یکی را انتخاب کنید</p>" }`
|
|
920
921
|
*/
|
|
921
|
-
type AXPMultiLanguageString =
|
|
922
|
+
type AXPMultiLanguageString = AXMultiLanguageString;
|
|
922
923
|
type AXPMetaData = Record<string, any>;
|
|
923
924
|
type AXPOptionsData<T extends Record<string, unknown> = Record<string, any>> = T;
|
|
924
925
|
interface AXPValueUnit {
|
|
@@ -1183,7 +1184,7 @@ interface AXPFilterQuery extends Pick<AXPFilterDefinition, 'field' | 'value' | '
|
|
|
1183
1184
|
|
|
1184
1185
|
type AXPActionMenuItem = {
|
|
1185
1186
|
name?: string;
|
|
1186
|
-
title:
|
|
1187
|
+
title: AXPMultiLanguageString;
|
|
1187
1188
|
icon?: string;
|
|
1188
1189
|
iconOnly?: boolean;
|
|
1189
1190
|
color?: string;
|
|
@@ -1195,11 +1196,11 @@ type AXPActionMenuItem = {
|
|
|
1195
1196
|
policy?: string;
|
|
1196
1197
|
};
|
|
1197
1198
|
type AXPBackButton = {
|
|
1198
|
-
title:
|
|
1199
|
+
title: AXPMultiLanguageString;
|
|
1199
1200
|
};
|
|
1200
1201
|
type AXPBreadcrumbItem = {
|
|
1201
1202
|
name?: string;
|
|
1202
|
-
title:
|
|
1203
|
+
title: AXPMultiLanguageString;
|
|
1203
1204
|
icon?: string;
|
|
1204
1205
|
command?: AXPExecuteCommand;
|
|
1205
1206
|
};
|
|
@@ -1217,7 +1218,7 @@ type AXPPageStatus = {
|
|
|
1217
1218
|
interface AXPCommandMessage {
|
|
1218
1219
|
type?: 'info' | 'success' | 'warning' | 'error';
|
|
1219
1220
|
code?: string;
|
|
1220
|
-
text:
|
|
1221
|
+
text: AXPMultiLanguageString;
|
|
1221
1222
|
details?: unknown;
|
|
1222
1223
|
}
|
|
1223
1224
|
type AXPExecuteCommand = {
|
|
@@ -1239,7 +1240,7 @@ interface AXPQueryFetchResult<T = any> {
|
|
|
1239
1240
|
};
|
|
1240
1241
|
message?: {
|
|
1241
1242
|
code?: string;
|
|
1242
|
-
text?:
|
|
1243
|
+
text?: AXPMultiLanguageString;
|
|
1243
1244
|
details?: any;
|
|
1244
1245
|
};
|
|
1245
1246
|
}
|
|
@@ -1252,7 +1253,7 @@ type AXPNavigateActionOptions = {
|
|
|
1252
1253
|
};
|
|
1253
1254
|
modal: {
|
|
1254
1255
|
component: Type<any>;
|
|
1255
|
-
title:
|
|
1256
|
+
title: AXPMultiLanguageString;
|
|
1256
1257
|
options?: any;
|
|
1257
1258
|
};
|
|
1258
1259
|
};
|
|
@@ -1304,23 +1305,6 @@ declare class AXPIconLogoConfig implements AXPLogoConfig {
|
|
|
1304
1305
|
constructor(icon: string, color?: string | undefined);
|
|
1305
1306
|
}
|
|
1306
1307
|
|
|
1307
|
-
type AXPPlatformScopeKey = 'P' | 'T' | 'U';
|
|
1308
|
-
declare enum AXPPlatformScope {
|
|
1309
|
-
Platform = "P",
|
|
1310
|
-
Tenant = "T",
|
|
1311
|
-
User = "U"
|
|
1312
|
-
}
|
|
1313
|
-
declare function resolvePlatformScopeKey(name: string): AXPPlatformScopeKey;
|
|
1314
|
-
declare function resolvePlatformScopeName(scope: AXPPlatformScopeKey): string;
|
|
1315
|
-
|
|
1316
|
-
interface AXPSortDefinition {
|
|
1317
|
-
name: string;
|
|
1318
|
-
title: string;
|
|
1319
|
-
dir?: 'asc' | 'desc';
|
|
1320
|
-
}
|
|
1321
|
-
interface AXPSortQuery extends Pick<AXPSortDefinition, 'name' | 'dir'> {
|
|
1322
|
-
}
|
|
1323
|
-
|
|
1324
1308
|
type AXPValidationRule = {
|
|
1325
1309
|
rule: string;
|
|
1326
1310
|
message?: string;
|
|
@@ -1357,6 +1341,52 @@ interface AXPReqexValidationRule extends AXPValidationRule {
|
|
|
1357
1341
|
}
|
|
1358
1342
|
type AXPStringValidationRules = (AXPRequiredValidationRule | AXPMinLengthValidationRule | AXPMaxLengthValidationRule | AXPEqualValidationRule<string> | AXPReqexValidationRule)[];
|
|
1359
1343
|
|
|
1344
|
+
interface AXPPropertyGroup {
|
|
1345
|
+
name: string;
|
|
1346
|
+
title: AXPMultiLanguageString;
|
|
1347
|
+
icon?: string;
|
|
1348
|
+
description?: AXPMultiLanguageString;
|
|
1349
|
+
order?: number;
|
|
1350
|
+
}
|
|
1351
|
+
interface AXPPropertyInterface {
|
|
1352
|
+
type: string;
|
|
1353
|
+
options: AXPOptionsData;
|
|
1354
|
+
triggers?: AXPWidgetTriggers;
|
|
1355
|
+
}
|
|
1356
|
+
/**
|
|
1357
|
+
* Platform property bag (entity fields, workflow inputs, etc.).
|
|
1358
|
+
*
|
|
1359
|
+
* For property viewer rows, use `mapAXPPropertyToWidgetProperty` from `@acorex/platform/layout/widget-core`
|
|
1360
|
+
* (keeps `platform/core` free of a dependency on `layout/widget-core`).
|
|
1361
|
+
*/
|
|
1362
|
+
interface AXPProperty {
|
|
1363
|
+
name: string;
|
|
1364
|
+
title: AXPMultiLanguageString;
|
|
1365
|
+
description?: AXPMultiLanguageString;
|
|
1366
|
+
dataType: AXPDataType;
|
|
1367
|
+
validations?: AXPValidationRules;
|
|
1368
|
+
group?: AXPPropertyGroup | string;
|
|
1369
|
+
order?: number;
|
|
1370
|
+
interface: AXPPropertyInterface;
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
type AXPPlatformScopeKey = 'P' | 'T' | 'U';
|
|
1374
|
+
declare enum AXPPlatformScope {
|
|
1375
|
+
Platform = "P",
|
|
1376
|
+
Tenant = "T",
|
|
1377
|
+
User = "U"
|
|
1378
|
+
}
|
|
1379
|
+
declare function resolvePlatformScopeKey(name: string): AXPPlatformScopeKey;
|
|
1380
|
+
declare function resolvePlatformScopeName(scope: AXPPlatformScopeKey): string;
|
|
1381
|
+
|
|
1382
|
+
interface AXPSortDefinition {
|
|
1383
|
+
name: string;
|
|
1384
|
+
title: string;
|
|
1385
|
+
dir?: 'asc' | 'desc';
|
|
1386
|
+
}
|
|
1387
|
+
interface AXPSortQuery extends Pick<AXPSortDefinition, 'name' | 'dir'> {
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1360
1390
|
interface AXPViewQuery {
|
|
1361
1391
|
name: string;
|
|
1362
1392
|
fixed: boolean;
|
|
@@ -2510,61 +2540,6 @@ declare const AXP_SESSION_SERVICE: InjectionToken<AXPISessionService>;
|
|
|
2510
2540
|
*/
|
|
2511
2541
|
declare const AXP_MODULE_MANIFEST_PROVIDER: InjectionToken<AXPModuleManifest[]>;
|
|
2512
2542
|
|
|
2513
|
-
/**
|
|
2514
|
-
* Resolves {@link AXPMultiLanguageString} using the active app locale, and exposes
|
|
2515
|
-
* {@link currentLocale$} for code that prefers an observable (e.g. manual subscriptions).
|
|
2516
|
-
* Templates usually use {@link AXPResolveMultiLanguageStringPipe} instead.
|
|
2517
|
-
*/
|
|
2518
|
-
declare class AXPMultiLanguageStringResolverService {
|
|
2519
|
-
private readonly translation;
|
|
2520
|
-
/**
|
|
2521
|
-
* Emits the active locale on subscribe and whenever the language changes.
|
|
2522
|
-
*/
|
|
2523
|
-
readonly currentLocale$: Observable<string>;
|
|
2524
|
-
/**
|
|
2525
|
-
* Resolves multi-language content for an optional locale (defaults to active).
|
|
2526
|
-
*/
|
|
2527
|
-
resolve(content: AXPMultiLanguageString | null | undefined, locale?: string): string;
|
|
2528
|
-
/**
|
|
2529
|
-
* Checks if a value is a valid multi-language object map.
|
|
2530
|
-
* Key format must be `xx-XX` (e.g. en-US, fa-IR) or fallback `*-*`.
|
|
2531
|
-
* All values must be strings.
|
|
2532
|
-
*/
|
|
2533
|
-
isValidMultiLanguageObject(value: unknown): value is Record<string, string>;
|
|
2534
|
-
/**
|
|
2535
|
-
* Normalizes multi-language content to a locale map for editors (e.g. multi-language popup `values`).
|
|
2536
|
-
* If `content` is already a locale-to-string map, returns a shallow copy.
|
|
2537
|
-
* If it is a plain string or empty, wraps it as `{ [activeLocale]: text }`.
|
|
2538
|
-
*/
|
|
2539
|
-
toLocaleMap(content: AXPMultiLanguageString | null | undefined, activeLocale: string): Record<string, string>;
|
|
2540
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXPMultiLanguageStringResolverService, never>;
|
|
2541
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<AXPMultiLanguageStringResolverService>;
|
|
2542
|
-
}
|
|
2543
|
-
|
|
2544
|
-
/**
|
|
2545
|
-
* Resolves {@link AXPMultiLanguageString} via {@link AXPMultiLanguageStringResolverService}.
|
|
2546
|
-
* Impure and subscribes to {@link AXPMultiLanguageStringResolverService#currentLocale$} so
|
|
2547
|
-
* OnPush hosts (e.g. grid cells) still refresh when the language changes.
|
|
2548
|
-
*
|
|
2549
|
-
* Optional second argument: explicit locale (e.g. from a host `locale` input). When omitted or null/empty,
|
|
2550
|
-
* the active language is used.
|
|
2551
|
-
*
|
|
2552
|
-
* @example
|
|
2553
|
-
* ```html
|
|
2554
|
-
* {{ value | axpResolveMultiLanguageString }}
|
|
2555
|
-
* {{ value | axpResolveMultiLanguageString: locale() }}
|
|
2556
|
-
* ```
|
|
2557
|
-
*/
|
|
2558
|
-
declare class AXPResolveMultiLanguageStringPipe implements PipeTransform, OnDestroy {
|
|
2559
|
-
private readonly resolver;
|
|
2560
|
-
private readonly cdr;
|
|
2561
|
-
private readonly localeSubscription;
|
|
2562
|
-
transform(value: AXPMultiLanguageString | null | undefined, locale?: string | null): string;
|
|
2563
|
-
ngOnDestroy(): void;
|
|
2564
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXPResolveMultiLanguageStringPipe, never>;
|
|
2565
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<AXPResolveMultiLanguageStringPipe, "axpResolveMultiLanguageString", true>;
|
|
2566
|
-
}
|
|
2567
|
-
|
|
2568
2543
|
/**
|
|
2569
2544
|
* Locale-aware comparison of {@link AXPMultiLanguageString} values (plain string, `@scope:key`, or locale map).
|
|
2570
2545
|
* Resolves each side with {@link resolveMultiLanguageString} for `locale`, then compares with `String#localeCompare`.
|
|
@@ -2575,26 +2550,6 @@ declare function compareMultiLanguageStrings(a: AXPMultiLanguageString | null |
|
|
|
2575
2550
|
*/
|
|
2576
2551
|
declare function sortByMultiLanguageString<T>(items: readonly T[], getValue: (item: T) => AXPMultiLanguageString | null | undefined, locale: string, collatorOptions?: Intl.CollatorOptions): T[];
|
|
2577
2552
|
|
|
2578
|
-
/**
|
|
2579
|
-
* Checks whether value is a valid locale map (`xx-XX` or `*-*` keys, string values).
|
|
2580
|
-
*/
|
|
2581
|
-
declare function isValidMultiLanguageObject(value: unknown): value is Record<string, string>;
|
|
2582
|
-
/**
|
|
2583
|
-
* Resolves {@link AXPMultiLanguageString} to a single string for the given locale.
|
|
2584
|
-
* Fallback order: `currentLocale` → `en-US` → first map value.
|
|
2585
|
-
*/
|
|
2586
|
-
declare function resolveMultiLanguageString(content: AXPMultiLanguageString | null | undefined, currentLocale: string): string;
|
|
2587
|
-
/**
|
|
2588
|
-
* Creates an {@link AXPMultiLanguageString} with `en-US` and `fa-IR` entries.
|
|
2589
|
-
* Use for seed data, tests, and demos that supply English and Persian copy explicitly.
|
|
2590
|
-
*/
|
|
2591
|
-
declare function createMultiLanguageString(enUs: string, faIr: string): AXPMultiLanguageString;
|
|
2592
|
-
/**
|
|
2593
|
-
* True when there is no displayable text in any locale (plain string or ML map).
|
|
2594
|
-
* Pure helper for predicates (e.g. default section detection); prefer widgets / pipes for display.
|
|
2595
|
-
*/
|
|
2596
|
-
declare function isEffectivelyEmptyLocalizedValue(value: unknown): boolean;
|
|
2597
|
-
|
|
2598
2553
|
/**
|
|
2599
2554
|
* Represents a tag with text, color, and metadata
|
|
2600
2555
|
*/
|
|
@@ -2912,5 +2867,5 @@ declare function containsHtmlMarkup(value: string | null | undefined): boolean;
|
|
|
2912
2867
|
*/
|
|
2913
2868
|
declare function generateKebabCase(title: string): string;
|
|
2914
2869
|
|
|
2915
|
-
export { AXHighlightService, AXPActivityLogProvider, AXPActivityLogService, AXPAppStartUpProvider, AXPAppStartUpService, AXPBroadcastEventService, AXPColorPaletteProvider, AXPColorPaletteService, AXPColumnWidthService, AXPComponentLogoConfig, AXPComponentSlot, AXPComponentSlotDirective, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPContentCheckerDirective, AXPContextChangeEvent, AXPContextStore, AXPCountdownPipe, AXPDataGenerator, AXPDataSourceDefinitionProviderService, AXPDblClickDirective, AXPDefaultColorPalettesProvider, AXPDeviceService, AXPDeviceType, AXPDistributedEventListenerService, AXPElementDataDirective, AXPExportTemplateToken, AXPExpressionEvaluatorScopeProviderContext, AXPExpressionEvaluatorScopeProviderService, AXPExpressionEvaluatorService, AXPFeatureDefinitionProviderContext, AXPGridLayoutDirective, AXPHookService, AXPIconLogoConfig, AXPImageUrlLogoConfig, AXPModuleManifestModule, AXPModuleManifestRegistry, AXPModuleManifestsDataSourceDefinition,
|
|
2916
|
-
export type { AXPActionMenuItem, AXPActivityLog, AXPActivityLogChange, AXPApplicationUserReference, AXPBackButton, AXPBadge, AXPBreadcrumbItem, AXPCategorizedEntity, AXPCategorizedEntityDto, AXPCategoryEntity, AXPCategoryEntityWithItems, AXPCategoryListItem, AXPColorPalette, AXPColorPaletteFilterOptions, AXPColumnQuery, AXPColumnWidthMatcher, AXPColumnWidthProvider, AXPCommandMessage, AXPComponentSlotConfig, AXPComponentSlotModuleConfigs, AXPContent, AXPContentDirection, AXPContentType, AXPContextData, AXPContextState, AXPDataSource, AXPDataSourceArray, AXPDataSourceDataFieldDefinition, AXPDataSourceDefinition, AXPDataSourceDefinitionProvider, AXPDataSourceSample, AXPDataSourceType, AXPDataSourceValue, AXPDataType, AXPDistributedEventListenerProvider, AXPDistributedEventListenerProviderToken, AXPEntityOp, AXPEntityReference, AXPEqualValidationRule, AXPExecuteCommand, AXPExecuteCommandResult, AXPExportCsvOptions, AXPExportExcelOptions, AXPExportOptions, AXPExportPdfOptions, AXPExportPrintOptions, AXPExpression, AXPExpressionEvaluatorScope, AXPExpressionEvaluatorScopeProvider, AXPExpressionEvaluatorScopeProviders, AXPFeatureDefinition, AXPFeatureDefinitionProvider, AXPFeatureName, AXPFileListItem, AXPFileSource, AXPFileStatus, AXPFilterClause, AXPFilterDefinition, AXPFilterQuery, AXPFilterTriggerDefinition, AXPFlowDirection, AXPGridLayoutOptions, AXPGridPlacement, AXPISessionService, AXPLazyDataSource, AXPLogoConfig, AXPMaxLengthValidationRule, AXPMaybePromise, AXPMetaData, AXPMiddlewareErrorResponse, AXPMinLengthValidationRule, AXPModuleFeatureDefinition, AXPModuleFeatureDefinitionWithKey, AXPModuleManifest, AXPMultiLanguageString, AXPNavigateActionCommand, AXPNavigateActionOptions, AXPOptionsData, AXPPageStatus, AXPPagedListResult, AXPPartialNested, AXPPlatformScopeKey, AXPQueryFetchResult, AXPQueryRequest, AXPReqexValidationRule, AXPRequiredValidationRule, AXPSortDefinition, AXPSortQuery, AXPStartUpTask, AXPStringValidationRules, AXPSystemAction, AXPTag, AXPTagFilterOptions, AXPUserReference, AXPValidationRule, AXPValidationRules, AXPValueTransformerFunction, AXPValueTransformerFunctions, AXPValueUnit, AXPValueUnits, AXPViewBlockDefinition, AXPViewDefinition, AXPViewFieldDefinition, AXPViewQuery, AXPWidgetTrigger, AXPWidgetTriggers, ColumnNameMatcher, ColumnWidthValue, IColumnWithWidth, WidgetTypeMatcher };
|
|
2870
|
+
export { AXHighlightService, AXPActivityLogProvider, AXPActivityLogService, AXPAppStartUpProvider, AXPAppStartUpService, AXPBroadcastEventService, AXPColorPaletteProvider, AXPColorPaletteService, AXPColumnWidthService, AXPComponentLogoConfig, AXPComponentSlot, AXPComponentSlotDirective, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPContentCheckerDirective, AXPContextChangeEvent, AXPContextStore, AXPCountdownPipe, AXPDataGenerator, AXPDataSourceDefinitionProviderService, AXPDblClickDirective, AXPDefaultColorPalettesProvider, AXPDeviceService, AXPDeviceType, AXPDistributedEventListenerService, AXPElementDataDirective, AXPExportTemplateToken, AXPExpressionEvaluatorScopeProviderContext, AXPExpressionEvaluatorScopeProviderService, AXPExpressionEvaluatorService, AXPFeatureDefinitionProviderContext, AXPGridLayoutDirective, AXPHookService, AXPIconLogoConfig, AXPImageUrlLogoConfig, AXPModuleManifestModule, AXPModuleManifestRegistry, AXPModuleManifestsDataSourceDefinition, AXPPlatformScope, AXPScreenSize, AXPSystemActionType, AXPSystemActions, AXPTagProvider, AXPTagService, AXP_ACTIVITY_LOG_PROVIDER, AXP_COLOR_PALETTE_PROVIDER, AXP_COLUMN_WIDTH_PROVIDER, AXP_DATASOURCE_DEFINITION_PROVIDER, AXP_DISTRIBUTED_EVENT_LISTENER_PROVIDER, AXP_EXPRESSION_EVALUATOR_SCOPE_PROVIDER, AXP_FEATURE_DEFINITION_PROVIDER, AXP_MODULE_MANIFEST_PROVIDER, AXP_SESSION_SERVICE, AXP_TAG_PROVIDER, MODULE_MANIFESTS_DATASOURCE_NAME, applyFilterArray, applyPagination, applyQueryArray, applySortArray, applySystemActionDefault, cleanDeep, compareMultiLanguageStrings, containsHtmlMarkup, createProviderWithInjectionContext, defaultColumnWidthProvider, extractNestedFieldsWildcard, extractTextFromHtml, extractValue, generateKebabCase, getActionButton, getChangedPaths, getDetailedChanges, getEnumValues, getNestedKeys, getSmart, getSystemActions, objectKeyValueTransforms, provideLazyProvider, resolveActionLook, resolvePlatformScopeKey, resolvePlatformScopeName, setSmart, sortByMultiLanguageString };
|
|
2871
|
+
export type { AXPActionMenuItem, AXPActivityLog, AXPActivityLogChange, AXPApplicationUserReference, AXPBackButton, AXPBadge, AXPBreadcrumbItem, AXPCategorizedEntity, AXPCategorizedEntityDto, AXPCategoryEntity, AXPCategoryEntityWithItems, AXPCategoryListItem, AXPColorPalette, AXPColorPaletteFilterOptions, AXPColumnQuery, AXPColumnWidthMatcher, AXPColumnWidthProvider, AXPCommandMessage, AXPComponentSlotConfig, AXPComponentSlotModuleConfigs, AXPContent, AXPContentDirection, AXPContentType, AXPContextData, AXPContextState, AXPDataSource, AXPDataSourceArray, AXPDataSourceDataFieldDefinition, AXPDataSourceDefinition, AXPDataSourceDefinitionProvider, AXPDataSourceSample, AXPDataSourceType, AXPDataSourceValue, AXPDataType, AXPDistributedEventListenerProvider, AXPDistributedEventListenerProviderToken, AXPEntityOp, AXPEntityReference, AXPEqualValidationRule, AXPExecuteCommand, AXPExecuteCommandResult, AXPExportCsvOptions, AXPExportExcelOptions, AXPExportOptions, AXPExportPdfOptions, AXPExportPrintOptions, AXPExpression, AXPExpressionEvaluatorScope, AXPExpressionEvaluatorScopeProvider, AXPExpressionEvaluatorScopeProviders, AXPFeatureDefinition, AXPFeatureDefinitionProvider, AXPFeatureName, AXPFileListItem, AXPFileSource, AXPFileStatus, AXPFilterClause, AXPFilterDefinition, AXPFilterQuery, AXPFilterTriggerDefinition, AXPFlowDirection, AXPGridLayoutOptions, AXPGridPlacement, AXPISessionService, AXPLazyDataSource, AXPLogoConfig, AXPMaxLengthValidationRule, AXPMaybePromise, AXPMetaData, AXPMiddlewareErrorResponse, AXPMinLengthValidationRule, AXPModuleFeatureDefinition, AXPModuleFeatureDefinitionWithKey, AXPModuleManifest, AXPMultiLanguageString, AXPNavigateActionCommand, AXPNavigateActionOptions, AXPOptionsData, AXPPageStatus, AXPPagedListResult, AXPPartialNested, AXPPlatformScopeKey, AXPProperty, AXPPropertyGroup, AXPPropertyInterface, AXPQueryFetchResult, AXPQueryRequest, AXPReqexValidationRule, AXPRequiredValidationRule, AXPSortDefinition, AXPSortQuery, AXPStartUpTask, AXPStringValidationRules, AXPSystemAction, AXPTag, AXPTagFilterOptions, AXPUserReference, AXPValidationRule, AXPValidationRules, AXPValueTransformerFunction, AXPValueTransformerFunctions, AXPValueUnit, AXPValueUnits, AXPViewBlockDefinition, AXPViewDefinition, AXPViewFieldDefinition, AXPViewQuery, AXPWidgetTrigger, AXPWidgetTriggers, ColumnNameMatcher, ColumnWidthValue, IColumnWithWidth, WidgetTypeMatcher };
|
|
@@ -910,7 +910,6 @@ declare class AXPPreviewWidgetFieldCommand implements AXPCommand<AXPPreviewWidge
|
|
|
910
910
|
private readonly formBuilderService;
|
|
911
911
|
private readonly widgetRegistry;
|
|
912
912
|
private readonly translationService;
|
|
913
|
-
private readonly mlResolver;
|
|
914
913
|
private readonly crudService;
|
|
915
914
|
execute(input: AXPPreviewWidgetFieldInvocation): Promise<AXPExecuteCommandResult<void>>;
|
|
916
915
|
private mergeInvocation;
|
|
@@ -13,6 +13,7 @@ import { AXBasePageComponent } from '@acorex/components/page';
|
|
|
13
13
|
import { AXDropListDroppedEvent } from '@acorex/cdk/drag-drop';
|
|
14
14
|
import { AXTagBoxComponent } from '@acorex/components/tag-box';
|
|
15
15
|
import { AXCalendarService } from '@acorex/core/date-time';
|
|
16
|
+
import * as _acorex_core_translation from '@acorex/core/translation';
|
|
16
17
|
import { AXTranslationService } from '@acorex/core/translation';
|
|
17
18
|
import { AXFormComponent } from '@acorex/components/form';
|
|
18
19
|
import { AXTreeViewNode, AXTreeViewDragBehavior, AXTreeViewDragArea, AXTreeViewComponent, AXTreeViewBeforeDropEvent, AXTreeViewDropEvent } from '@acorex/components/tree-view';
|
|
@@ -2344,7 +2345,6 @@ interface ItemConfiguratorSelectRow {
|
|
|
2344
2345
|
* Bound state: {@link selectedItemId} and {@link values} (context returned from the viewer). Not tied to {@link AXPWidgetNode}.
|
|
2345
2346
|
*/
|
|
2346
2347
|
declare class AXPItemConfiguratorComponent {
|
|
2347
|
-
private readonly mlResolver;
|
|
2348
2348
|
/** Selected list entry id ({@link ItemConfiguratorListItem.id}). */
|
|
2349
2349
|
selectedItemId: _angular_core.ModelSignal<string>;
|
|
2350
2350
|
/** Values edited in the property viewer (merged from dialog result). */
|
|
@@ -2363,7 +2363,7 @@ declare class AXPItemConfiguratorComponent {
|
|
|
2363
2363
|
protected resolvedPropertyDefinitions: _angular_core.Signal<AXPWidgetProperty[]>;
|
|
2364
2364
|
protected currentItemConfig: _angular_core.Signal<{
|
|
2365
2365
|
title: string;
|
|
2366
|
-
description:
|
|
2366
|
+
description: _acorex_core_translation.AXMultiLanguageString | undefined;
|
|
2367
2367
|
icon: string | undefined;
|
|
2368
2368
|
hasProperties: boolean;
|
|
2369
2369
|
} | null>;
|
|
@@ -2392,7 +2392,7 @@ declare class AXPWidgetFieldConfiguratorComponent {
|
|
|
2392
2392
|
widget: _angular_core.ModelSignal<AXPWidgetNode>;
|
|
2393
2393
|
label: _angular_core.InputSignal<string>;
|
|
2394
2394
|
fieldName: _angular_core.InputSignal<string>;
|
|
2395
|
-
fieldTitle: _angular_core.InputSignal<
|
|
2395
|
+
fieldTitle: _angular_core.InputSignal<_acorex_core_translation.AXMultiLanguageString>;
|
|
2396
2396
|
readonly: _angular_core.InputSignal<boolean>;
|
|
2397
2397
|
private readonly widgetRegistry;
|
|
2398
2398
|
private readonly translation;
|
|
@@ -2618,6 +2618,7 @@ declare class AXPResourceAppointmentComponent implements OnInit {
|
|
|
2618
2618
|
providerName: _angular_core.InputSignal<string | undefined>;
|
|
2619
2619
|
private readonly resourceAppointmentService;
|
|
2620
2620
|
private readonly formatService;
|
|
2621
|
+
private readonly translateService;
|
|
2621
2622
|
private readonly contextMenu;
|
|
2622
2623
|
protected readonly schedulerRef: _angular_core.Signal<AXSchedulerComponent | undefined>;
|
|
2623
2624
|
protected readonly isReady: _angular_core.WritableSignal<boolean>;
|
|
@@ -3,9 +3,9 @@ import * as _angular_core from '@angular/core';
|
|
|
3
3
|
import { EventEmitter, OnChanges, OnDestroy, WritableSignal, NgZone, ComponentRef, SimpleChanges } from '@angular/core';
|
|
4
4
|
import { AXBasePageComponent } from '@acorex/components/page';
|
|
5
5
|
import { AXTabStripChangedEvent } from '@acorex/components/tabs';
|
|
6
|
+
import { AXPWidgetItemData, AXPWidgetItemClickEvent } from '@acorex/platform/layout/components';
|
|
6
7
|
import * as _acorex_platform_layout_widget_core from '@acorex/platform/layout/widget-core';
|
|
7
8
|
import { AXPWidgetConfig, AXPWidgetCategory, AXPWidgetGroupEnum, AXPWidgetNode, AXPBaseWidgetComponent, AXPWidgetRegistryService, AXPLayoutBaseWidgetComponent } from '@acorex/platform/layout/widget-core';
|
|
8
|
-
import { AXPWidgetItemData, AXPWidgetItemClickEvent } from '@acorex/platform/layout/components';
|
|
9
9
|
import { AXMenuItem } from '@acorex/components/menu';
|
|
10
10
|
import { Subject } from 'rxjs';
|
|
11
11
|
import { AXPBroadcastEventService, AXPContextChangeEvent } from '@acorex/platform/core';
|
|
@@ -26,6 +26,7 @@ import { AXPopupSizeType, AXPopupService } from '@acorex/components/popup';
|
|
|
26
26
|
import { AXBasePageComponent } from '@acorex/components/page';
|
|
27
27
|
import { AXFormatService } from '@acorex/core/format';
|
|
28
28
|
import { AXTagBoxComponent } from '@acorex/components/tag-box';
|
|
29
|
+
import * as _acorex_core_translation from '@acorex/core/translation';
|
|
29
30
|
import { AXPProviderSelectWidgetEditBase, AXPDataListWidgetComponentOptions } from '@acorex/platform/layout/widgets';
|
|
30
31
|
|
|
31
32
|
declare class AXPCreateEntityCommand implements AXPCommand<any, any> {
|
|
@@ -471,6 +472,10 @@ declare class AXPEntityMasterListViewModel {
|
|
|
471
472
|
}>;
|
|
472
473
|
views: _angular_core.Signal<AXPEntityMasterListViewQueryViewModel[]>;
|
|
473
474
|
view: _angular_core.WritableSignal<AXPEntityMasterListViewQueryViewModel>;
|
|
475
|
+
private createExpressionScope;
|
|
476
|
+
private resolveCommandNameExpression;
|
|
477
|
+
private resolveTitleExpression;
|
|
478
|
+
private resolveTriggerName;
|
|
474
479
|
setView(viewName?: string | null): Promise<void>;
|
|
475
480
|
dataSource: AXDataSource<any>;
|
|
476
481
|
constructor(injector: Injector, config: AXPEntity);
|
|
@@ -1148,6 +1153,14 @@ declare function resolveEntityPluginDetailPageOrder(input: {
|
|
|
1148
1153
|
}>;
|
|
1149
1154
|
}, slot: EntityDetailPluginPageSlot, options: ResolveEntityPluginDetailPageOrderOptions): number;
|
|
1150
1155
|
|
|
1156
|
+
/**
|
|
1157
|
+
* Sort key for entries in `interfaces.master.{create|update|single}.properties`.
|
|
1158
|
+
* Uses `layout.order` when set and finite; otherwise the property index in that list.
|
|
1159
|
+
*/
|
|
1160
|
+
declare function getMasterInterfacePropertySortKey(interfaceRow: {
|
|
1161
|
+
layout?: AXPEntityPropertyLayoutConfig | undefined;
|
|
1162
|
+
} | undefined, indexInMasterInterfaceList: number): number;
|
|
1163
|
+
|
|
1151
1164
|
declare class AXPEntityModule {
|
|
1152
1165
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPEntityModule, never>;
|
|
1153
1166
|
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<AXPEntityModule, never, [typeof i1.RouterModule, typeof i2.AXPWorkflowModule, typeof i3.AXPWidgetCoreModule, typeof i4.LayoutBuilderModule], never>;
|
|
@@ -1340,41 +1353,37 @@ declare const createColumnOrderingMiddlewareProvider: (columnOrder?: Record<stri
|
|
|
1340
1353
|
declare const columnOrderingMiddlewareProvider: AXPEntityModifierProvider;
|
|
1341
1354
|
|
|
1342
1355
|
/**
|
|
1343
|
-
*
|
|
1356
|
+
* Default colSpans for two properties in one section (`md` / `lg`).
|
|
1357
|
+
* Missing `positions[*].colSpan` are filled only; entities keep full control.
|
|
1344
1358
|
*/
|
|
1359
|
+
interface PairSpanRule {
|
|
1360
|
+
first: string;
|
|
1361
|
+
second: string;
|
|
1362
|
+
/** Col span applied to {@link first} */
|
|
1363
|
+
firstSpan: number;
|
|
1364
|
+
/** Col span applied to {@link second} */
|
|
1365
|
+
secondSpan: number;
|
|
1366
|
+
breakpoints?: readonly ('sm' | 'md' | 'lg')[];
|
|
1367
|
+
}
|
|
1345
1368
|
interface SectionOrderConfig {
|
|
1346
|
-
/**
|
|
1347
|
-
* Default order for common sections
|
|
1348
|
-
* Lower numbers appear first
|
|
1349
|
-
*/
|
|
1350
1369
|
sections: Record<string, number>;
|
|
1370
|
+
properties: Record<string, number>;
|
|
1351
1371
|
/**
|
|
1352
|
-
*
|
|
1353
|
-
*
|
|
1372
|
+
* Defaults for pairing two columns (e.g. code + title). Replace or extend defaults.
|
|
1373
|
+
* - `undefined`: use {@link DEFAULT_PAIR_SPAN_RULES}
|
|
1374
|
+
* - `false`: do not apply any pair spans
|
|
1375
|
+
* - `[...]` + spread `DEFAULT_PAIR_SPAN_RULES` when you want to append custom pairs
|
|
1354
1376
|
*/
|
|
1355
|
-
|
|
1377
|
+
pairSpanRules?: PairSpanRule[] | false;
|
|
1356
1378
|
}
|
|
1357
1379
|
/**
|
|
1358
|
-
* Default
|
|
1380
|
+
* Default shipped rules: narrow identifier + wider title on `md` / `lg`.
|
|
1359
1381
|
*/
|
|
1382
|
+
declare const DEFAULT_PAIR_SPAN_RULES: readonly PairSpanRule[];
|
|
1360
1383
|
declare const DEFAULT_SECTION_ORDER: Record<string, number>;
|
|
1361
|
-
/**
|
|
1362
|
-
* Default order for common properties
|
|
1363
|
-
* Format: 'sectionId.propertyName' for section-specific or 'propertyName' for any section
|
|
1364
|
-
*/
|
|
1365
1384
|
declare const DEFAULT_PROPERTY_ORDER: Record<string, number>;
|
|
1366
|
-
/**
|
|
1367
|
-
* Factory to create a layout ordering middleware
|
|
1368
|
-
*/
|
|
1369
1385
|
declare const layoutOrderingMiddlewareFactory: (config: SectionOrderConfig) => AXPEntityModifier;
|
|
1370
|
-
/**
|
|
1371
|
-
* Helper to create a provider for the layout ordering middleware
|
|
1372
|
-
* By default it applies to all entities using the '*' pattern
|
|
1373
|
-
*/
|
|
1374
1386
|
declare const createLayoutOrderingMiddlewareProvider: (config?: Partial<SectionOrderConfig>, entityName?: string | RegExp) => AXPEntityModifierProvider;
|
|
1375
|
-
/**
|
|
1376
|
-
* Default provider registered with the default configuration
|
|
1377
|
-
*/
|
|
1378
1387
|
declare const layoutOrderingMiddlewareProvider: AXPEntityModifierProvider;
|
|
1379
1388
|
|
|
1380
1389
|
/**
|
|
@@ -1713,7 +1722,6 @@ declare class AXPEntityCategoryTreeSelectorComponent extends AXBasePageComponent
|
|
|
1713
1722
|
/** i18n key for the synthetic "all items" root row; resolved in the template with the translate pipe. */
|
|
1714
1723
|
protected readonly categoryTreeRootTitleI18nKey = "@general:terms.interface.selection.all-items";
|
|
1715
1724
|
private readonly translationService;
|
|
1716
|
-
private readonly mlsResolver;
|
|
1717
1725
|
protected readonly highlightService: AXHighlightService;
|
|
1718
1726
|
private readonly changeDetectorRef;
|
|
1719
1727
|
entityKey: _angular_core.WritableSignal<string>;
|
|
@@ -2096,7 +2104,7 @@ declare const AXPEntityCategoryWidget: AXPWidgetConfig;
|
|
|
2096
2104
|
declare class AXPTruncatedBreadcrumbComponent implements OnDestroy {
|
|
2097
2105
|
private readonly mlsResolver;
|
|
2098
2106
|
/** Plain string or locale map per segment; truncation uses resolved text (see {@link resolvedSectionTexts}). */
|
|
2099
|
-
sections: _angular_core.InputSignal<readonly (
|
|
2107
|
+
sections: _angular_core.InputSignal<readonly (_acorex_core_translation.AXMultiLanguageString | null | undefined)[]>;
|
|
2100
2108
|
characterLimit: _angular_core.InputSignal<number | "auto">;
|
|
2101
2109
|
sectionLimit: _angular_core.InputSignal<number | "auto">;
|
|
2102
2110
|
separatorIcon: _angular_core.InputSignal<string>;
|
|
@@ -2358,9 +2366,6 @@ declare class AXPLookupWidgetViewComponent extends AXPValueWidgetComponent<any>
|
|
|
2358
2366
|
private efEntity;
|
|
2359
2367
|
private efDisplay;
|
|
2360
2368
|
private extractItem;
|
|
2361
|
-
/**
|
|
2362
|
-
* Raw label for {@link AXPResolveMultiLanguageStringPipe} (handles {@link AXPMultiLanguageString} and plain strings).
|
|
2363
|
-
*/
|
|
2364
2369
|
private getDisplayRaw;
|
|
2365
2370
|
private get __class();
|
|
2366
2371
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLookupWidgetViewComponent, never>;
|
|
@@ -2492,6 +2497,7 @@ declare class AXPLookupWidgetEditComponent extends AXPValueWidgetComponent<any>
|
|
|
2492
2497
|
protected textField: _angular_core.Signal<string>;
|
|
2493
2498
|
protected hasClearButton: _angular_core.Signal<boolean>;
|
|
2494
2499
|
protected customFilter: _angular_core.Signal<AXDataSourceFilterOption>;
|
|
2500
|
+
protected placeholder: _angular_core.Signal<string>;
|
|
2495
2501
|
protected filterMode: _angular_core.Signal<boolean>;
|
|
2496
2502
|
protected multiple: _angular_core.Signal<boolean>;
|
|
2497
2503
|
protected look: _angular_core.Signal<AXPLookupWidgetLookType>;
|
|
@@ -3186,5 +3192,5 @@ declare class AXPShowListViewAction extends AXPWorkflowAction {
|
|
|
3186
3192
|
}
|
|
3187
3193
|
declare const AXPShowListViewWorkflow: AXPWorkflow;
|
|
3188
3194
|
|
|
3189
|
-
export { AXMEntityCrudService, AXMEntityCrudServiceImpl, AXPCategoryTreeService, AXPCreateEntityCommand, AXPCreateEntityWorkflow, AXPDataSeederService, AXPDeleteEntityWorkflow, AXPEntitiesListDataSourceDefinition, AXPEntityApplyUpdatesAction, AXPEntityCategoryTreeSelectorComponent, AXPEntityCategoryWidget, AXPEntityCategoryWidgetColumnComponent, AXPEntityCategoryWidgetEditComponent, AXPEntityCategoryWidgetViewComponent, AXPEntityCommandTriggerViewModel, AXPEntityCreateEvent, AXPEntityCreatePopupAction, AXPEntityCreateSubmittedAction, AXPEntityCreateViewElementViewModel, AXPEntityCreateViewModelFactory, AXPEntityCreateViewSectionViewModel, AXPEntityDataProvider, AXPEntityDataProviderImpl, AXPEntityDataSelectorService, AXPEntityDefinitionProviderWidget, AXPEntityDefinitionProviderWidgetEditComponent, AXPEntityDefinitionRegistryService, AXPEntityDeletedEvent, AXPEntityDetailListViewModel, AXPEntityDetailPopoverComponent, AXPEntityDetailPopoverService, AXPEntityDetailViewModelFactory, AXPEntityDetailViewModelResolver, AXPEntityEventDispatcherService, AXPEntityEventsKeys, AXPEntityFormBuilderService, AXPEntityListTableService, AXPEntityListToolbarService, AXPEntityListViewColumnViewModel, AXPEntityListViewModelFactory, AXPEntityListViewModelResolver, AXPEntityListWidget, AXPEntityListWidgetViewComponent, AXPEntityMasterCreateViewModel, AXPEntityMasterListViewModel, AXPEntityMasterListViewQueryViewModel, AXPEntityMasterSingleElementViewModel, AXPEntityMasterSingleViewGroupViewModel, AXPEntityMasterSingleViewModel, AXPEntityMasterUpdateElementViewModel, AXPEntityMasterUpdateViewModel, AXPEntityMasterUpdateViewModelFactory, AXPEntityMiddleware, AXPEntityModifyConfirmedAction, AXPEntityModifyEvent, AXPEntityModifySectionPopupAction, AXPEntityModule, AXPEntityPerformDeleteAction, AXPEntityPreloadFiltersContainerComponent, AXPEntityPreloadFiltersViewModel, AXPEntityPreloadFiltersViewModelResolver, AXPEntityResolver, AXPEntityService, AXPEntityStorageService, AXPEntityUpdateViewSectionViewModel, AXPGetEntityDetailsQuery, AXPLayoutOrderingConfigService, AXPLookupWidget, AXPLookupWidgetColumnComponent, AXPLookupWidgetEditComponent, AXPLookupWidgetViewComponent, AXPMiddlewareAbortError, AXPMiddlewareEntityStorageService, AXPModifyEntitySectionWorkflow, AXPMultiSourceDefinitionProviderContext, AXPMultiSourceDefinitionProviderService, AXPMultiSourceFederatedSearchService, AXPMultiSourceSelectorComponent, AXPMultiSourceSelectorService, AXPMultiSourceSelectorWidget, AXPMultiSourceSelectorWidgetColumnComponent, AXPMultiSourceSelectorWidgetEditComponent, AXPMultiSourceSelectorWidgetViewComponent, AXPMultiSourceType, AXPOpenEntityDetailsCommand, AXPQuickEntityModifyPopupAction, AXPQuickModifyEntityWorkflow, AXPRelatedColumnEnrichmentService, AXPRelatedColumnMetadataResolver, AXPSelectorStructureWidget, AXPSelectorStructureWidgetColumnComponent, AXPSelectorStructureWidgetEditComponent, AXPSelectorStructureWidgetViewComponent, AXPShowDetailViewAction, AXPShowDetailsViewWorkflow, AXPShowListViewAction, AXPShowListViewWorkflow, AXPTruncatedBreadcrumbComponent, AXPUpdateEntityCommand, AXPViewEntityDetailsCommand, AXP_CATEGORY_TREE_ROOT_TITLE_I18N_KEY, AXP_DATA_SEEDER_TOKEN, AXP_ENTITY_ACTION_PLUGIN, AXP_ENTITY_CONFIG_TOKEN, AXP_ENTITY_DEFINITION_LOADER, AXP_ENTITY_MODIFIER, AXP_ENTITY_STORAGE_BACKEND, AXP_ENTITY_STORAGE_MIDDLEWARE, AXP_MULTI_SOURCE_DEFINITION_PROVIDER, DEFAULT_COLUMN_ORDER, DEFAULT_PROPERTY_ORDER, DEFAULT_SECTION_ORDER, EntityBuilder, EntityDataAccessor, actionExists, axpCreateEntityAiToolInputDefaults, axpCreateEntityCommandDefinition, cloneLayoutArrays, columnOrderingMiddleware, columnOrderingMiddlewareProvider, columnWidthMiddleware, columnWidthMiddlewareProvider, createColumnOrderingMiddlewareProvider, createLayoutOrderingMiddlewareProvider, createModifierContext, defaultMultiLanguageMiddleware, defaultMultiLanguageMiddlewareProvider, detectEntityChanges, ensureLayoutPropertyView, ensureLayoutSection, ensureListActions, entityDetailsCreateActions, entityDetailsCrudActions, entityDetailsEditAction, entityDetailsNewEditAction, entityDetailsReferenceCondition, entityDetailsReferenceCreateActions, entityDetailsSimpleCondition, entityMasterBulkDeleteAction, entityMasterCreateAction, entityMasterCrudActions, entityMasterDeleteAction, entityMasterEditAction, entityMasterRecordActions, entityMasterViewAction, entityOverrideDetailsViewAction, eventDispatchMiddleware, isAXPMiddlewareAbortError, layoutOrderingMiddlewareFactory, layoutOrderingMiddlewareProvider, provideEntity, resolveEntityPluginDetailPageOrder, searchResultDescriptionMiddleware, searchResultDescriptionMiddlewareProvider };
|
|
3190
|
-
export type { AXPAuditEvent, AXPDataSeeder, AXPEntityActionPlugin, AXPEntityCategoryWidgetOptions, AXPEntityChangeSet, AXPEntityConfigs, AXPEntityCreateDto, AXPEntityDataSelectorOptions, AXPEntityDataSelectorResult, AXPEntityDefinitionLoader, AXPEntityDefinitionPreloader, AXPEntityDeleteOptions, AXPEntityDetailDto, AXPEntityDetailPopoverOptions, AXPEntityLayoutLike, AXPEntityLayoutPropertyLike, AXPEntityLayoutSectionLike, AXPEntityListEntry, AXPEntityListInput, AXPEntityListItemDto, AXPEntityListToolbarConvertOptions, AXPEntityMasterListViewSortPropViewModel, AXPEntityModel, AXPEntityModifier, AXPEntityModifierContext, AXPEntityModifierProvider, AXPEntityOutputDto, AXPEntityPreloadEntity, AXPEntityStorageContext, AXPEntityStorageMiddleware, AXPEntityUpdateDto, AXPGetEntityDetailsQueryInput, AXPGetEntityDetailsQueryResult, AXPLookupWidgetLookType, AXPLookupWidgetOptions, AXPMultiSourceDefinition, AXPMultiSourceDefinitionProvider, AXPMultiSourceItem, AXPMultiSourceRef, AXPMultiSourceSearchResult, AXPMultiSourceSearchResultItem, AXPMultiSourceSelectorOpenConfig, AXPMultiSourceSelectorResult, AXPMultiSourceSelectorWidgetOptions, AXPMultiSourceValue, AXPOpenEntityDetailsCommandInput, AXPRecordAuditInfo, AXPRecordOwnershipInfo, AXPRecordStateInfo, AXPRelatedColumnMetadata, AXPSelectorStructureFieldDef, AXPSelectorStructureIdentityDisplay, AXPSelectorStructurePresentationMode, AXPSelectorStructureSelectorMode, AXPSelectorStructureStructureMode, AXPSelectorStructureWidgetColumnOptions, AXPSelectorStructureWidgetDesignerOptions, AXPSelectorStructureWidgetEditOptions, AXPSelectorStructureWidgetOptions, AXPSelectorStructureWidgetPrintOptions, AXPSelectorStructureWidgetViewOptions, CategoryQueryEvent, CategoryQueryFunction, CategoryQueryResult, CategoryTreeConfig, CategoryTreeNodeData, EntityDetailPluginPageSlot, ResolveEntityPluginDetailPageOrderOptions, SectionOrderConfig, SkipEntityComponentPageRef };
|
|
3195
|
+
export { AXMEntityCrudService, AXMEntityCrudServiceImpl, AXPCategoryTreeService, AXPCreateEntityCommand, AXPCreateEntityWorkflow, AXPDataSeederService, AXPDeleteEntityWorkflow, AXPEntitiesListDataSourceDefinition, AXPEntityApplyUpdatesAction, AXPEntityCategoryTreeSelectorComponent, AXPEntityCategoryWidget, AXPEntityCategoryWidgetColumnComponent, AXPEntityCategoryWidgetEditComponent, AXPEntityCategoryWidgetViewComponent, AXPEntityCommandTriggerViewModel, AXPEntityCreateEvent, AXPEntityCreatePopupAction, AXPEntityCreateSubmittedAction, AXPEntityCreateViewElementViewModel, AXPEntityCreateViewModelFactory, AXPEntityCreateViewSectionViewModel, AXPEntityDataProvider, AXPEntityDataProviderImpl, AXPEntityDataSelectorService, AXPEntityDefinitionProviderWidget, AXPEntityDefinitionProviderWidgetEditComponent, AXPEntityDefinitionRegistryService, AXPEntityDeletedEvent, AXPEntityDetailListViewModel, AXPEntityDetailPopoverComponent, AXPEntityDetailPopoverService, AXPEntityDetailViewModelFactory, AXPEntityDetailViewModelResolver, AXPEntityEventDispatcherService, AXPEntityEventsKeys, AXPEntityFormBuilderService, AXPEntityListTableService, AXPEntityListToolbarService, AXPEntityListViewColumnViewModel, AXPEntityListViewModelFactory, AXPEntityListViewModelResolver, AXPEntityListWidget, AXPEntityListWidgetViewComponent, AXPEntityMasterCreateViewModel, AXPEntityMasterListViewModel, AXPEntityMasterListViewQueryViewModel, AXPEntityMasterSingleElementViewModel, AXPEntityMasterSingleViewGroupViewModel, AXPEntityMasterSingleViewModel, AXPEntityMasterUpdateElementViewModel, AXPEntityMasterUpdateViewModel, AXPEntityMasterUpdateViewModelFactory, AXPEntityMiddleware, AXPEntityModifyConfirmedAction, AXPEntityModifyEvent, AXPEntityModifySectionPopupAction, AXPEntityModule, AXPEntityPerformDeleteAction, AXPEntityPreloadFiltersContainerComponent, AXPEntityPreloadFiltersViewModel, AXPEntityPreloadFiltersViewModelResolver, AXPEntityResolver, AXPEntityService, AXPEntityStorageService, AXPEntityUpdateViewSectionViewModel, AXPGetEntityDetailsQuery, AXPLayoutOrderingConfigService, AXPLookupWidget, AXPLookupWidgetColumnComponent, AXPLookupWidgetEditComponent, AXPLookupWidgetViewComponent, AXPMiddlewareAbortError, AXPMiddlewareEntityStorageService, AXPModifyEntitySectionWorkflow, AXPMultiSourceDefinitionProviderContext, AXPMultiSourceDefinitionProviderService, AXPMultiSourceFederatedSearchService, AXPMultiSourceSelectorComponent, AXPMultiSourceSelectorService, AXPMultiSourceSelectorWidget, AXPMultiSourceSelectorWidgetColumnComponent, AXPMultiSourceSelectorWidgetEditComponent, AXPMultiSourceSelectorWidgetViewComponent, AXPMultiSourceType, AXPOpenEntityDetailsCommand, AXPQuickEntityModifyPopupAction, AXPQuickModifyEntityWorkflow, AXPRelatedColumnEnrichmentService, AXPRelatedColumnMetadataResolver, AXPSelectorStructureWidget, AXPSelectorStructureWidgetColumnComponent, AXPSelectorStructureWidgetEditComponent, AXPSelectorStructureWidgetViewComponent, AXPShowDetailViewAction, AXPShowDetailsViewWorkflow, AXPShowListViewAction, AXPShowListViewWorkflow, AXPTruncatedBreadcrumbComponent, AXPUpdateEntityCommand, AXPViewEntityDetailsCommand, AXP_CATEGORY_TREE_ROOT_TITLE_I18N_KEY, AXP_DATA_SEEDER_TOKEN, AXP_ENTITY_ACTION_PLUGIN, AXP_ENTITY_CONFIG_TOKEN, AXP_ENTITY_DEFINITION_LOADER, AXP_ENTITY_MODIFIER, AXP_ENTITY_STORAGE_BACKEND, AXP_ENTITY_STORAGE_MIDDLEWARE, AXP_MULTI_SOURCE_DEFINITION_PROVIDER, DEFAULT_COLUMN_ORDER, DEFAULT_PAIR_SPAN_RULES, DEFAULT_PROPERTY_ORDER, DEFAULT_SECTION_ORDER, EntityBuilder, EntityDataAccessor, actionExists, axpCreateEntityAiToolInputDefaults, axpCreateEntityCommandDefinition, cloneLayoutArrays, columnOrderingMiddleware, columnOrderingMiddlewareProvider, columnWidthMiddleware, columnWidthMiddlewareProvider, createColumnOrderingMiddlewareProvider, createLayoutOrderingMiddlewareProvider, createModifierContext, defaultMultiLanguageMiddleware, defaultMultiLanguageMiddlewareProvider, detectEntityChanges, ensureLayoutPropertyView, ensureLayoutSection, ensureListActions, entityDetailsCreateActions, entityDetailsCrudActions, entityDetailsEditAction, entityDetailsNewEditAction, entityDetailsReferenceCondition, entityDetailsReferenceCreateActions, entityDetailsSimpleCondition, entityMasterBulkDeleteAction, entityMasterCreateAction, entityMasterCrudActions, entityMasterDeleteAction, entityMasterEditAction, entityMasterRecordActions, entityMasterViewAction, entityOverrideDetailsViewAction, eventDispatchMiddleware, getMasterInterfacePropertySortKey, isAXPMiddlewareAbortError, layoutOrderingMiddlewareFactory, layoutOrderingMiddlewareProvider, provideEntity, resolveEntityPluginDetailPageOrder, searchResultDescriptionMiddleware, searchResultDescriptionMiddlewareProvider };
|
|
3196
|
+
export type { AXPAuditEvent, AXPDataSeeder, AXPEntityActionPlugin, AXPEntityCategoryWidgetOptions, AXPEntityChangeSet, AXPEntityConfigs, AXPEntityCreateDto, AXPEntityDataSelectorOptions, AXPEntityDataSelectorResult, AXPEntityDefinitionLoader, AXPEntityDefinitionPreloader, AXPEntityDeleteOptions, AXPEntityDetailDto, AXPEntityDetailPopoverOptions, AXPEntityLayoutLike, AXPEntityLayoutPropertyLike, AXPEntityLayoutSectionLike, AXPEntityListEntry, AXPEntityListInput, AXPEntityListItemDto, AXPEntityListToolbarConvertOptions, AXPEntityMasterListViewSortPropViewModel, AXPEntityModel, AXPEntityModifier, AXPEntityModifierContext, AXPEntityModifierProvider, AXPEntityOutputDto, AXPEntityPreloadEntity, AXPEntityStorageContext, AXPEntityStorageMiddleware, AXPEntityUpdateDto, AXPGetEntityDetailsQueryInput, AXPGetEntityDetailsQueryResult, AXPLookupWidgetLookType, AXPLookupWidgetOptions, AXPMultiSourceDefinition, AXPMultiSourceDefinitionProvider, AXPMultiSourceItem, AXPMultiSourceRef, AXPMultiSourceSearchResult, AXPMultiSourceSearchResultItem, AXPMultiSourceSelectorOpenConfig, AXPMultiSourceSelectorResult, AXPMultiSourceSelectorWidgetOptions, AXPMultiSourceValue, AXPOpenEntityDetailsCommandInput, AXPRecordAuditInfo, AXPRecordOwnershipInfo, AXPRecordStateInfo, AXPRelatedColumnMetadata, AXPSelectorStructureFieldDef, AXPSelectorStructureIdentityDisplay, AXPSelectorStructurePresentationMode, AXPSelectorStructureSelectorMode, AXPSelectorStructureStructureMode, AXPSelectorStructureWidgetColumnOptions, AXPSelectorStructureWidgetDesignerOptions, AXPSelectorStructureWidgetEditOptions, AXPSelectorStructureWidgetOptions, AXPSelectorStructureWidgetPrintOptions, AXPSelectorStructureWidgetViewOptions, CategoryQueryEvent, CategoryQueryFunction, CategoryQueryResult, CategoryTreeConfig, CategoryTreeNodeData, EntityDetailPluginPageSlot, PairSpanRule, ResolveEntityPluginDetailPageOrderOptions, SectionOrderConfig, SkipEntityComponentPageRef };
|