@acorex/platform 21.0.0-next.75 → 21.0.0-next.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/{acorex-platform-common-common-settings.provider-Ytey9uhY.mjs → acorex-platform-common-common-settings.provider-ChoT4m4k.mjs} +42 -1
- package/fesm2022/acorex-platform-common-common-settings.provider-ChoT4m4k.mjs.map +1 -0
- package/fesm2022/acorex-platform-common.mjs +1471 -606
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-contracts.mjs +1330 -1
- package/fesm2022/acorex-platform-contracts.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +208 -5
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +595 -439
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +372 -171
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +3 -103
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets-repeater-widget-column.component-CFyfix31.mjs +513 -0
- package/fesm2022/acorex-platform-layout-widgets-repeater-widget-column.component-CFyfix31.mjs.map +1 -0
- package/fesm2022/acorex-platform-layout-widgets.mjs +11 -6
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-single-view.component-Br9p5aXT.mjs → acorex-platform-themes-default-entity-master-single-view.component-DrUwqKKA.mjs} +2 -3
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-DrUwqKKA.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +643 -52
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +5 -8
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/package.json +1 -1
- package/types/acorex-platform-common.d.ts +337 -1056
- package/types/acorex-platform-contracts.d.ts +1679 -4
- package/types/acorex-platform-core.d.ts +92 -181
- package/types/acorex-platform-layout-components.d.ts +2 -1
- package/types/acorex-platform-layout-entity.d.ts +68 -176
- package/types/acorex-platform-layout-views.d.ts +39 -5
- package/types/acorex-platform-layout-widget-core.d.ts +2 -3
- package/types/acorex-platform-layout-widgets.d.ts +11 -4
- package/types/acorex-platform-themes-default.d.ts +120 -57
- package/types/acorex-platform-workflow.d.ts +5 -18
- package/fesm2022/acorex-platform-common-common-settings.provider-Ytey9uhY.mjs.map +0 -1
- package/fesm2022/acorex-platform-layout-widgets-repeater-widget-column.component-J0zcGKBX.mjs +0 -116
- package/fesm2022/acorex-platform-layout-widgets-repeater-widget-column.component-J0zcGKBX.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-Br9p5aXT.mjs.map +0 -1
|
@@ -2,9 +2,12 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { Type, InjectionToken, OnInit, ViewContainerRef, ModuleWithProviders, ElementRef, EventEmitter, OnChanges, Renderer2, SimpleChanges, OnDestroy, DestroyRef, Injector, PipeTransform, Provider } from '@angular/core';
|
|
3
3
|
import { AXStyleColorType, AXDataSource, AXDataSourceSortOption, AXDataSourceFilterOption, AXStyleLookType, AXDataSourceQuery, AXDataSourceCallbackResult } from '@acorex/cdk/common';
|
|
4
4
|
import { AXMultiLanguageString } from '@acorex/core/translation';
|
|
5
|
+
import { AXPFilterQuery, AXPFilterDefinition } from '@acorex/platform/contracts';
|
|
6
|
+
export { AXPCategorizedEntity, AXPCategorizedEntityDto, AXPCategoryEntity, AXPCategoryEntityWithItems, AXPCategoryListItem, AXPFilterClause, AXPFilterDefinition, AXPFilterQuery, AXPFilterTriggerDefinition } from '@acorex/platform/contracts';
|
|
5
7
|
import * as _ngrx_signals from '@ngrx/signals';
|
|
6
8
|
import * as _acorex_platform_core from '@acorex/platform/core';
|
|
7
9
|
import { Observable } from 'rxjs';
|
|
10
|
+
import { AXFormatService } from '@acorex/core/format';
|
|
8
11
|
import { NavigationExtras } from '@angular/router';
|
|
9
12
|
|
|
10
13
|
/** Platform core datasource registry names. */
|
|
@@ -990,141 +993,7 @@ interface AXPQueryRequest {
|
|
|
990
993
|
[key: string]: string;
|
|
991
994
|
};
|
|
992
995
|
}
|
|
993
|
-
|
|
994
|
-
* Category Entity - Base interface for hierarchical category structures
|
|
995
|
-
*
|
|
996
|
-
* This interface provides a standardized data model for category entities across the platform.
|
|
997
|
-
* All category entities (e.g., ReportCategory, ActivityCategory, WorkflowCategory) extend this interface
|
|
998
|
-
* to ensure consistency in data structure and field names.
|
|
999
|
-
*
|
|
1000
|
-
* @template TKey - The type of the identifier key (default: string)
|
|
1001
|
-
*
|
|
1002
|
-
* @example
|
|
1003
|
-
* ```typescript
|
|
1004
|
-
* const category: AXPCategoryEntity = {
|
|
1005
|
-
* id: 'cat-001',
|
|
1006
|
-
* title: 'Electronics',
|
|
1007
|
-
* description: 'Electronic products',
|
|
1008
|
-
* parentId: undefined, // Root category
|
|
1009
|
-
* childrenCount: 2, // Has 2 direct child categories
|
|
1010
|
-
* itemsCount: 5, // Has 5 items directly in this category
|
|
1011
|
-
* totalChildrenCount: 6, // Total of 6 nested categories (including grandchildren)
|
|
1012
|
-
* totalItemsCount: 23 // Total of 23 items in entire category tree
|
|
1013
|
-
* };
|
|
1014
|
-
* ```
|
|
1015
|
-
*/
|
|
1016
|
-
interface AXPCategoryEntity<TKey = string> {
|
|
1017
|
-
/** Unique identifier for the category */
|
|
1018
|
-
id: TKey;
|
|
1019
|
-
/** Display name of the category (required) */
|
|
1020
|
-
title: AXPMultiLanguageString;
|
|
1021
|
-
/** Optional description of the category */
|
|
1022
|
-
description?: AXPMultiLanguageString;
|
|
1023
|
-
/** Parent category ID (undefined for root categories) */
|
|
1024
|
-
parentId?: TKey;
|
|
1025
|
-
/**
|
|
1026
|
-
* Count of direct child categories only (not recursive)
|
|
1027
|
-
*
|
|
1028
|
-
* Used by UI components to determine if a category has children and should show an expand icon.
|
|
1029
|
-
* This enables efficient lazy loading - components can check this property without querying the API.
|
|
1030
|
-
*
|
|
1031
|
-
* @example
|
|
1032
|
-
* - Category with 2 direct children: `childrenCount: 2`
|
|
1033
|
-
* - Leaf category (no children): `childrenCount: 0`
|
|
1034
|
-
*
|
|
1035
|
-
* @remarks
|
|
1036
|
-
* - Always set to `0` for leaf categories
|
|
1037
|
-
* - Does not include grandchildren or nested descendants
|
|
1038
|
-
* - Automatically maintained by middleware for category entities
|
|
1039
|
-
*/
|
|
1040
|
-
childrenCount: number;
|
|
1041
|
-
/**
|
|
1042
|
-
* Count of items directly assigned to this category (not recursive)
|
|
1043
|
-
*
|
|
1044
|
-
* Represents the number of items (e.g., reports, activities, workflows) that are directly
|
|
1045
|
-
* assigned to this category. Does not include items from child categories.
|
|
1046
|
-
*
|
|
1047
|
-
* Useful for:
|
|
1048
|
-
* - Displaying item counts per category in UI (e.g., "5 reports" badge)
|
|
1049
|
-
* - Optimizing queries (skip API call if itemsCount === 0)
|
|
1050
|
-
* - Showing category statistics
|
|
1051
|
-
*
|
|
1052
|
-
* @example
|
|
1053
|
-
* - Category with 5 reports directly assigned: `itemsCount: 5`
|
|
1054
|
-
* - Category with no direct items: `itemsCount: 0` or `undefined`
|
|
1055
|
-
*
|
|
1056
|
-
* @remarks
|
|
1057
|
-
* - Does not include items from child categories
|
|
1058
|
-
* - Can be calculated dynamically or stored
|
|
1059
|
-
* - Optional - may be undefined if not needed
|
|
1060
|
-
*/
|
|
1061
|
-
itemsCount?: number;
|
|
1062
|
-
/**
|
|
1063
|
-
* Recursive count of all nested child categories (includes all descendants)
|
|
1064
|
-
*
|
|
1065
|
-
* Represents the total number of categories in the entire subtree starting from this category.
|
|
1066
|
-
* Includes children, grandchildren, and all nested descendants.
|
|
1067
|
-
*
|
|
1068
|
-
* Useful for:
|
|
1069
|
-
* - Analytics and summary displays
|
|
1070
|
-
* - Showing complete category tree scope
|
|
1071
|
-
* - Performance metrics
|
|
1072
|
-
*
|
|
1073
|
-
* @example
|
|
1074
|
-
* Root category with:
|
|
1075
|
-
* - 2 direct children
|
|
1076
|
-
* - Each child has 2 children (4 grandchildren)
|
|
1077
|
-
* Result: `totalChildrenCount: 6` (2 + 4)
|
|
1078
|
-
*
|
|
1079
|
-
* @remarks
|
|
1080
|
-
* - Optional - typically used for analytics
|
|
1081
|
-
* - Includes all nested levels (recursive)
|
|
1082
|
-
* - Can be expensive to calculate for large trees
|
|
1083
|
-
*/
|
|
1084
|
-
totalChildrenCount?: number;
|
|
1085
|
-
/**
|
|
1086
|
-
* Recursive count of all items in this category and all descendants
|
|
1087
|
-
*
|
|
1088
|
-
* Represents the total number of items (e.g., reports, activities, workflows) in the entire
|
|
1089
|
-
* category tree, including items from this category and all nested child categories.
|
|
1090
|
-
*
|
|
1091
|
-
* Useful for:
|
|
1092
|
-
* - Analytics and summary displays
|
|
1093
|
-
* - Showing complete scope of a category branch
|
|
1094
|
-
* - Dashboard statistics
|
|
1095
|
-
*
|
|
1096
|
-
* @example
|
|
1097
|
-
* Category with:
|
|
1098
|
-
* - 5 items directly assigned
|
|
1099
|
-
* - 1 child category with 3 items
|
|
1100
|
-
* Result: `totalItemsCount: 8` (5 + 3)
|
|
1101
|
-
*
|
|
1102
|
-
* @remarks
|
|
1103
|
-
* - Optional - typically used for analytics
|
|
1104
|
-
* - Includes items from all nested categories (recursive)
|
|
1105
|
-
* - Can be expensive to calculate for large trees
|
|
1106
|
-
*/
|
|
1107
|
-
totalItemsCount?: number;
|
|
1108
|
-
}
|
|
1109
|
-
interface AXPCategoryEntityWithItems<T> extends AXPCategoryEntity {
|
|
1110
|
-
items: T[];
|
|
1111
|
-
children?: AXPCategoryEntityWithItems<T>[];
|
|
1112
|
-
}
|
|
1113
|
-
/**
|
|
1114
|
-
* Denormalized category row on entities and DTOs (id + localized display title).
|
|
1115
|
-
* Use for `categories` arrays expanded from {@link AXPCategoryEntity} assignments.
|
|
1116
|
-
*/
|
|
1117
|
-
interface AXPCategoryListItem<TKey extends string = string> {
|
|
1118
|
-
id: TKey;
|
|
1119
|
-
title: AXPMultiLanguageString;
|
|
1120
|
-
}
|
|
1121
|
-
interface AXPCategorizedEntity {
|
|
1122
|
-
categoryIds: string[];
|
|
1123
|
-
}
|
|
1124
|
-
interface AXPCategorizedEntityDto {
|
|
1125
|
-
categoryIds: string[];
|
|
1126
|
-
categories: AXPCategoryListItem[];
|
|
1127
|
-
}
|
|
996
|
+
|
|
1128
997
|
type AXPEntityOp = 'initial' | 'create' | 'update' | 'delete' | 'getOne' | 'getAll' | 'query' | 'count' | 'queryAll' | 'getMany' | 'exists' | 'upsertOne' | 'aggregate';
|
|
1129
998
|
|
|
1130
999
|
type AXPWidgetTrigger = {
|
|
@@ -1155,50 +1024,6 @@ interface AXPFileListItem {
|
|
|
1155
1024
|
description?: string;
|
|
1156
1025
|
}
|
|
1157
1026
|
|
|
1158
|
-
/**
|
|
1159
|
-
* Filter toolbar trigger entries (same shape as entity `schema.interface.triggers`).
|
|
1160
|
-
* Declared on `AXPFilterDefinition` and populated when building list filter definitions.
|
|
1161
|
-
*/
|
|
1162
|
-
interface AXPFilterTriggerDefinition {
|
|
1163
|
-
event: string;
|
|
1164
|
-
action: string;
|
|
1165
|
-
disabled?: boolean;
|
|
1166
|
-
}
|
|
1167
|
-
interface AXPFilterClause extends AXDataSourceFilterOption {
|
|
1168
|
-
id?: string;
|
|
1169
|
-
order?: number;
|
|
1170
|
-
filters?: AXPFilterClause[];
|
|
1171
|
-
}
|
|
1172
|
-
interface AXPFilterDefinition extends AXPFilterClause {
|
|
1173
|
-
title: string;
|
|
1174
|
-
isParametric?: boolean;
|
|
1175
|
-
icon?: string;
|
|
1176
|
-
widget: {
|
|
1177
|
-
type: string;
|
|
1178
|
-
options?: AXPOptionsData;
|
|
1179
|
-
};
|
|
1180
|
-
filterType: {
|
|
1181
|
-
advance: boolean;
|
|
1182
|
-
inline: boolean;
|
|
1183
|
-
preload?: {
|
|
1184
|
-
enabled?: boolean;
|
|
1185
|
-
required?: boolean;
|
|
1186
|
-
};
|
|
1187
|
-
};
|
|
1188
|
-
hidden?: boolean;
|
|
1189
|
-
/**
|
|
1190
|
-
* When true, the filter is not selectable. When a string, it is evaluated as an expression (e.g. `{{ ... }}`)
|
|
1191
|
-
* using the current filters context.
|
|
1192
|
-
*/
|
|
1193
|
-
disabled?: boolean | string;
|
|
1194
|
-
/** Expression-driven triggers (events/actions); same semantics as entity `schema.interface.triggers`. */
|
|
1195
|
-
triggers?: AXPFilterTriggerDefinition[];
|
|
1196
|
-
}
|
|
1197
|
-
interface AXPFilterQuery extends Pick<AXPFilterDefinition, 'field' | 'value' | 'operator' | 'logic' | 'hidden'> {
|
|
1198
|
-
filters?: AXPFilterQuery[];
|
|
1199
|
-
displayText?: string;
|
|
1200
|
-
}
|
|
1201
|
-
|
|
1202
1027
|
/**
|
|
1203
1028
|
* Normalized keyboard chord (e.g. `ctrl+f`, `arrowleft`, `f1`).
|
|
1204
1029
|
* Modifiers and key are joined with `+`.
|
|
@@ -2433,6 +2258,58 @@ declare class AXPBroadcastEventService implements OnDestroy {
|
|
|
2433
2258
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXPBroadcastEventService>;
|
|
2434
2259
|
}
|
|
2435
2260
|
|
|
2261
|
+
/** Registered {@link AXFormatService} formatter name (e.g. `date`, `translate`, custom). */
|
|
2262
|
+
type AXPContextEvalPipeName = string;
|
|
2263
|
+
interface AXPContextEvalPipeSpec {
|
|
2264
|
+
type: AXPContextEvalPipeName;
|
|
2265
|
+
options?: Record<string, unknown>;
|
|
2266
|
+
}
|
|
2267
|
+
/** Shorthand pipe name or full spec with formatter options. */
|
|
2268
|
+
type AXPContextEvalPipe = AXPContextEvalPipeName | AXPContextEvalPipeSpec;
|
|
2269
|
+
interface AXPContextEvalOptions {
|
|
2270
|
+
pipes?: AXPContextEvalPipe[];
|
|
2271
|
+
}
|
|
2272
|
+
type AXPContextEvalFn = (path: string, options?: AXPContextEvalOptions) => unknown;
|
|
2273
|
+
|
|
2274
|
+
/**
|
|
2275
|
+
* Builds sync `context.eval(path, { pipes })` functions backed by {@link AXFormatService}.
|
|
2276
|
+
* Supports built-in and custom formatters registered on {@link AXFormatModule}.
|
|
2277
|
+
*/
|
|
2278
|
+
declare class AXPContextEvalFactory {
|
|
2279
|
+
private readonly formatService;
|
|
2280
|
+
/** Creates a sync eval function for the given record/context data object. */
|
|
2281
|
+
create(data: Record<string, unknown>): AXPContextEvalFn;
|
|
2282
|
+
/** Creates `{ eval }` scope object for expression evaluator scopes. */
|
|
2283
|
+
createScope(data: Record<string, unknown>): {
|
|
2284
|
+
eval: AXPContextEvalFn;
|
|
2285
|
+
};
|
|
2286
|
+
/**
|
|
2287
|
+
* Display-tier scope that re-reads data on each eval (for live stores / changing row context).
|
|
2288
|
+
*/
|
|
2289
|
+
createLiveScope(getData: () => Record<string, unknown>): {
|
|
2290
|
+
eval: AXPContextEvalFn;
|
|
2291
|
+
};
|
|
2292
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPContextEvalFactory, never>;
|
|
2293
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPContextEvalFactory>;
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
/** Normalizes shorthand pipe names to `{ type, options? }` specs. */
|
|
2297
|
+
declare function normalizeContextEvalPipes(pipes: AXPContextEvalPipe[]): AXPContextEvalPipeSpec[];
|
|
2298
|
+
/**
|
|
2299
|
+
* Applies a left-to-right formatter pipeline via {@link AXFormatService}.
|
|
2300
|
+
* Unknown formatters fall back to a trimmed string representation.
|
|
2301
|
+
*/
|
|
2302
|
+
declare function applyContextEvalPipes(value: unknown, pipes: AXPContextEvalPipe[] | undefined, formatService: AXFormatService): unknown;
|
|
2303
|
+
/** Reads a nested path from data and optionally applies display pipes. */
|
|
2304
|
+
declare function contextEvalWithPipes(data: Record<string, unknown>, path: string, formatService: AXFormatService, pipes?: AXPContextEvalPipe[]): unknown;
|
|
2305
|
+
|
|
2306
|
+
/**
|
|
2307
|
+
* Normalizes display templates before {@link AXPExpressionEvaluatorService} evaluation.
|
|
2308
|
+
* Converts simple dot paths (e.g. `{{ position.title }}`) to `context.eval("position.title")`
|
|
2309
|
+
* so row data is read from scope.context instead of bare JavaScript identifiers.
|
|
2310
|
+
*/
|
|
2311
|
+
declare function normalizeExpressionTemplate(template: string): string;
|
|
2312
|
+
|
|
2436
2313
|
type AXPExpressionEvaluatorScope = {
|
|
2437
2314
|
[name: string]: {
|
|
2438
2315
|
[name: string]: Function;
|
|
@@ -2943,6 +2820,40 @@ declare function shouldUseLocaleMapShape(localeMapOptionEnabled: boolean, curren
|
|
|
2943
2820
|
/** Updates one locale entry; preserves sibling locales from current or saved map. */
|
|
2944
2821
|
declare function buildLocaleTextMapValue(current: unknown, saved: unknown, lang: string, input: string): Record<string, string> | null;
|
|
2945
2822
|
|
|
2823
|
+
interface AXPIdleSchedulerWaitOptions {
|
|
2824
|
+
/** Max wait before running anyway (ms). Default 2000. */
|
|
2825
|
+
timeoutMs?: number;
|
|
2826
|
+
/** Minimum idle period passed to requestIdleCallback. Default 16. */
|
|
2827
|
+
minIdleMs?: number;
|
|
2828
|
+
}
|
|
2829
|
+
interface AXPIdleSchedulerEnqueueOptions {
|
|
2830
|
+
/** Dedupe key — replaces pending task with the same key. */
|
|
2831
|
+
key?: string;
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2834
|
+
/**
|
|
2835
|
+
* Schedules low-priority work during browser idle periods.
|
|
2836
|
+
* Pauses when the tab is hidden or when explicitly paused (e.g. user-initiated seeding).
|
|
2837
|
+
*/
|
|
2838
|
+
declare class AXPIdleSchedulerService {
|
|
2839
|
+
private pausedState;
|
|
2840
|
+
readonly paused: i0.Signal<boolean>;
|
|
2841
|
+
private queue;
|
|
2842
|
+
private running;
|
|
2843
|
+
pause(): void;
|
|
2844
|
+
resume(): void;
|
|
2845
|
+
/**
|
|
2846
|
+
* Resolves after the browser reports idle time, or after timeoutMs (whichever comes first).
|
|
2847
|
+
*/
|
|
2848
|
+
waitForIdle(options?: AXPIdleSchedulerWaitOptions): Promise<void>;
|
|
2849
|
+
/** Enqueues async work processed sequentially during idle slices. */
|
|
2850
|
+
enqueue(task: () => Promise<void>, options?: AXPIdleSchedulerEnqueueOptions): void;
|
|
2851
|
+
private drainQueue;
|
|
2852
|
+
private delay;
|
|
2853
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPIdleSchedulerService, never>;
|
|
2854
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPIdleSchedulerService>;
|
|
2855
|
+
}
|
|
2856
|
+
|
|
2946
2857
|
/**
|
|
2947
2858
|
* Represents a tag with text, color, and metadata
|
|
2948
2859
|
*/
|
|
@@ -3297,5 +3208,5 @@ declare function containsHtmlMarkup(value: string | null | undefined): boolean;
|
|
|
3297
3208
|
*/
|
|
3298
3209
|
declare function generateKebabCase(title: string): string;
|
|
3299
3210
|
|
|
3300
|
-
export { AXHighlightService, AXPActivityLogProvider, AXPActivityLogService, AXPAppStartUpProvider, AXPAppStartUpService, AXPBroadcastEventService, AXPCatalogScopeDefinitionProviderService, AXPCatalogScopeDefinitionsDataSourceDefinition, AXPColorPaletteProvider, AXPColorPaletteService, AXPColumnWidthService, AXPComponentLogoConfig, AXPComponentSlot, AXPComponentSlotDirective, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPContentCheckerDirective, AXPContextChangeEvent, AXPContextDefinitionProviderService, AXPContextStore, AXPCountdownPipe, AXPDataGenerator, AXPDataSourceDefinitionProviderService, AXPDblClickDirective, AXPDefaultColorPalettesProvider, AXPDeviceService, AXPDeviceType, AXPDistributedEventListenerService, AXPElementDataDirective, AXPExportTemplateToken, AXPExpressionEvaluatorScopeProviderContext, AXPExpressionEvaluatorScopeProviderService, AXPExpressionEvaluatorService, AXPFeatureDefinitionProviderContext, AXPGridLayoutDirective, AXPHookService, AXPIconLogoConfig, AXPImageUrlLogoConfig, AXPKeyboardShortcutPriority, AXPKeyboardShortcutRegistry, AXPModuleManifestModule, AXPModuleManifestRegistry, AXPModuleManifestsDataSourceDefinition, AXPPlatformCoreDataSourceKeys, AXPPlatformScope, AXPScreenSize, AXPSystemActionType, AXPSystemActions, AXPTagProvider, AXPTagService, AXP_ACTIVITY_LOG_PROVIDER, AXP_CATALOG_SCOPE_DEFINITION_PROVIDER, AXP_COLOR_PALETTE_PROVIDER, AXP_COLUMN_WIDTH_PROVIDER, AXP_CONTEXT_DEFINITION_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, AX_OVERLAY_CONTAINER_SELECTOR, AX_OVERLAY_PANE_SELECTOR, applyFilterArray, applyPagination, applyQueryArray, applySortArray, applySystemActionDefault, buildLocaleTextMapValue, captureFormContextBaseline, chordToKbdItemKeys, cleanDeep, coerceUnknownToBoolean, coerceUnknownToDate, coerceUnknownToFiniteNumber, coerceUnknownToTrimmedString, compareMultiLanguageStrings, containsHtmlMarkup, createProviderWithInjectionContext, defaultColumnWidthProvider, extractNestedFieldsWildcard, extractTextFromHtml, extractValue, findOverlayContainerAncestor, formatKeyboardShortcutChord, formatKeyboardShortcutChords, generateKebabCase, getActionButton, getChangedPaths, getDetailedChanges, getEnumValues, getNestedKeys, getNestedVisibleOverlayPanes, getPrimaryKeyboardShortcutChord, getSmart, getSystemActions, getTopVisibleOverlayContainer, getVisibleAnchoredOverlayPanes, getVisibleOverlayContainers, hasForegroundOverlayLayer, isFormContextDirty, isFormValueEqual, isHorizontalDirectionalShortcutKey, isKeyboardTargetInsideEditableField, isLocaleStringMap, isMacPlatform, isSelectionValueEqual, isVisibleOverlayElement, matchesKeyboardShortcutChord, mirrorHorizontalDirectionalKey, normalizeDefinitionCategories, normalizeKeyboardShortcut, normalizeKeyboardShortcuts, objectKeyValueTransforms, parseKeyboardShortcutChord, provideLazyProvider, resolveActionLook, resolveDisplayShortcutChord, resolveEffectiveDirectionBehavior, resolvePlatformScopeKey, resolvePlatformScopeName, resolveSemanticDirectionalKey, searchInMultiLanguageString, setSmart, shouldDeferEscapeToOpenOverlay, shouldUseLocaleMapShape, sortByMultiLanguageString, unwrapValueProperty };
|
|
3301
|
-
export type { AXPActionMenuItem, AXPActivityLog, AXPActivityLogChange, AXPApplicationUserReference, AXPBackButton, AXPBadge, AXPBreadcrumbItem, AXPCatalogScopeDefinition, AXPCatalogScopeDefinitionProvider,
|
|
3211
|
+
export { AXHighlightService, AXPActivityLogProvider, AXPActivityLogService, AXPAppStartUpProvider, AXPAppStartUpService, AXPBroadcastEventService, AXPCatalogScopeDefinitionProviderService, AXPCatalogScopeDefinitionsDataSourceDefinition, AXPColorPaletteProvider, AXPColorPaletteService, AXPColumnWidthService, AXPComponentLogoConfig, AXPComponentSlot, AXPComponentSlotDirective, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPContentCheckerDirective, AXPContextChangeEvent, AXPContextDefinitionProviderService, AXPContextEvalFactory, AXPContextStore, AXPCountdownPipe, AXPDataGenerator, AXPDataSourceDefinitionProviderService, AXPDblClickDirective, AXPDefaultColorPalettesProvider, AXPDeviceService, AXPDeviceType, AXPDistributedEventListenerService, AXPElementDataDirective, AXPExportTemplateToken, AXPExpressionEvaluatorScopeProviderContext, AXPExpressionEvaluatorScopeProviderService, AXPExpressionEvaluatorService, AXPFeatureDefinitionProviderContext, AXPGridLayoutDirective, AXPHookService, AXPIconLogoConfig, AXPIdleSchedulerService, AXPImageUrlLogoConfig, AXPKeyboardShortcutPriority, AXPKeyboardShortcutRegistry, AXPModuleManifestModule, AXPModuleManifestRegistry, AXPModuleManifestsDataSourceDefinition, AXPPlatformCoreDataSourceKeys, AXPPlatformScope, AXPScreenSize, AXPSystemActionType, AXPSystemActions, AXPTagProvider, AXPTagService, AXP_ACTIVITY_LOG_PROVIDER, AXP_CATALOG_SCOPE_DEFINITION_PROVIDER, AXP_COLOR_PALETTE_PROVIDER, AXP_COLUMN_WIDTH_PROVIDER, AXP_CONTEXT_DEFINITION_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, AX_OVERLAY_CONTAINER_SELECTOR, AX_OVERLAY_PANE_SELECTOR, applyContextEvalPipes, applyFilterArray, applyPagination, applyQueryArray, applySortArray, applySystemActionDefault, buildLocaleTextMapValue, captureFormContextBaseline, chordToKbdItemKeys, cleanDeep, coerceUnknownToBoolean, coerceUnknownToDate, coerceUnknownToFiniteNumber, coerceUnknownToTrimmedString, compareMultiLanguageStrings, containsHtmlMarkup, contextEvalWithPipes, createProviderWithInjectionContext, defaultColumnWidthProvider, extractNestedFieldsWildcard, extractTextFromHtml, extractValue, findOverlayContainerAncestor, formatKeyboardShortcutChord, formatKeyboardShortcutChords, generateKebabCase, getActionButton, getChangedPaths, getDetailedChanges, getEnumValues, getNestedKeys, getNestedVisibleOverlayPanes, getPrimaryKeyboardShortcutChord, getSmart, getSystemActions, getTopVisibleOverlayContainer, getVisibleAnchoredOverlayPanes, getVisibleOverlayContainers, hasForegroundOverlayLayer, isFormContextDirty, isFormValueEqual, isHorizontalDirectionalShortcutKey, isKeyboardTargetInsideEditableField, isLocaleStringMap, isMacPlatform, isSelectionValueEqual, isVisibleOverlayElement, matchesKeyboardShortcutChord, mirrorHorizontalDirectionalKey, normalizeContextEvalPipes, normalizeDefinitionCategories, normalizeExpressionTemplate, normalizeKeyboardShortcut, normalizeKeyboardShortcuts, objectKeyValueTransforms, parseKeyboardShortcutChord, provideLazyProvider, resolveActionLook, resolveDisplayShortcutChord, resolveEffectiveDirectionBehavior, resolvePlatformScopeKey, resolvePlatformScopeName, resolveSemanticDirectionalKey, searchInMultiLanguageString, setSmart, shouldDeferEscapeToOpenOverlay, shouldUseLocaleMapShape, sortByMultiLanguageString, unwrapValueProperty };
|
|
3212
|
+
export type { AXPActionMenuItem, AXPActivityLog, AXPActivityLogChange, AXPApplicationUserReference, AXPBackButton, AXPBadge, AXPBreadcrumbItem, AXPCatalogScopeDefinition, AXPCatalogScopeDefinitionProvider, AXPColorPalette, AXPColorPaletteFilterOptions, AXPColumnQuery, AXPColumnWidthMatcher, AXPColumnWidthProvider, AXPCommandMessage, AXPComponentSlotConfig, AXPComponentSlotModuleConfigs, AXPContent, AXPContentDirection, AXPContentType, AXPContextData, AXPContextDefinition, AXPContextDefinitionAiHints, AXPContextDefinitionProvider, AXPContextEvalFn, AXPContextEvalOptions, AXPContextEvalPipe, AXPContextEvalPipeName, AXPContextEvalPipeSpec, AXPContextPatchOptions, AXPContextState, AXPContextUpdateOptions, AXPContextUpdateOrigin, AXPDataSource, AXPDataSourceArray, AXPDataSourceDataFieldDefinition, AXPDataSourceDefinition, AXPDataSourceDefinitionProvider, AXPDataSourceSample, AXPDataSourceType, AXPDataSourceValue, AXPDataType, AXPDefinitionCategory, AXPDistributedEventListenerProvider, AXPDistributedEventListenerProviderToken, AXPEntityOp, AXPEntityReference, AXPEqualValidationRule, AXPExecuteCommand, AXPExecuteCommandResult, AXPExportCsvOptions, AXPExportExcelOptions, AXPExportOptions, AXPExportPdfOptions, AXPExportPrintOptions, AXPExpression, AXPExpressionEvaluatorScope, AXPExpressionEvaluatorScopeProvider, AXPExpressionEvaluatorScopeProviders, AXPFeatureDefinition, AXPFeatureDefinitionProvider, AXPFeatureName, AXPFileListItem, AXPFileSource, AXPFileStatus, AXPFlowDirection, AXPGridLayoutOptions, AXPGridPlacement, AXPISessionService, AXPIdleSchedulerEnqueueOptions, AXPIdleSchedulerWaitOptions, AXPKeyboardShortcut, AXPKeyboardShortcutBinding, AXPKeyboardShortcutChord, AXPKeyboardShortcutConfig, AXPKeyboardShortcutDirectionBehavior, AXPKeyboardShortcutFormatOptions, AXPKeyboardShortcutHelpEntry, AXPKeyboardShortcutRegisterOptions, AXPKeyboardShortcutRegistration, 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, AXPResolvedKeyboardShortcut, AXPSortDefinition, AXPSortQuery, AXPStartUpTask, AXPStringValidationRules, AXPSystemAction, AXPTag, AXPTagFilterOptions, AXPUserReference, AXPValidationRule, AXPValidationRules, AXPValueTransformerFunction, AXPValueTransformerFunctions, AXPValueUnit, AXPValueUnits, AXPViewBlockDefinition, AXPViewDefinition, AXPViewFieldDefinition, AXPViewQuery, AXPWidgetTrigger, AXPWidgetTriggers, ColumnNameMatcher, ColumnWidthValue, IColumnWithWidth, WidgetTypeMatcher };
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
2
|
import { Signal, InjectionToken, InputSignal, TemplateRef, ElementRef, OnDestroy, OnInit, QueryList, Type, EventEmitter, WritableSignal } from '@angular/core';
|
|
3
|
-
import { AXPActivityLog, AXPSystemActionType,
|
|
3
|
+
import { AXPActivityLog, AXPSystemActionType, AXPColumnQuery, AXPContextData, AXPFilterClause, AXPFilterDefinition, AXPFilterQuery, AXPContextChangeEvent, AXPMultiLanguageString, AXPActionMenuItem, AXPExecuteCommand, AXPExecuteCommandResult, containsHtmlMarkup, AXPSortDefinition, AXPSortQuery, AXPMetaData, AXPViewQuery } from '@acorex/platform/core';
|
|
4
4
|
import { AXHtmlEvent, AXValueChangedEvent, AXClickEvent, AXDataSource, AXDataSourceFilterOption, AXDataSourceOperator, AXFilterLogic, AXEvent, AXRange } from '@acorex/cdk/common';
|
|
5
5
|
import * as _ngrx_signals from '@ngrx/signals';
|
|
6
6
|
import * as _acorex_platform_themes_shared from '@acorex/platform/themes/shared';
|
|
7
7
|
import { AXPMenuItem } from '@acorex/platform/common';
|
|
8
8
|
import { AXTreeViewLegacyComponent, AXTreeItemClickBaseEventLegacy } from '@acorex/components/tree-view-legacy';
|
|
9
|
+
import { AXPCategoryEntity } from '@acorex/platform/contracts';
|
|
9
10
|
import { AXPopoverComponent } from '@acorex/components/popover';
|
|
10
11
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
11
12
|
import * as _acorex_platform_layout_widget_core from '@acorex/platform/layout/widget-core';
|