@acorex/platform 21.0.0-next.89 → 21.0.0-next.90
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-contracts.mjs +1 -0
- package/fesm2022/acorex-platform-contracts.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +22 -4
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity-contracts.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +93 -8
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +73 -14
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +2 -0
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/{acorex-platform-layout-widgets-tabular-data-edit-popup.component-CZc2zFlg.mjs → acorex-platform-layout-widgets-tabular-data-edit-popup.component-BvFykMTH.mjs} +2 -2
- package/fesm2022/{acorex-platform-layout-widgets-tabular-data-edit-popup.component-CZc2zFlg.mjs.map → acorex-platform-layout-widgets-tabular-data-edit-popup.component-BvFykMTH.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layout-widgets-tabular-data-view-popup.component-XWRUVoL4.mjs → acorex-platform-layout-widgets-tabular-data-view-popup.component-CntopmDS.mjs} +2 -2
- package/fesm2022/{acorex-platform-layout-widgets-tabular-data-view-popup.component-XWRUVoL4.mjs.map → acorex-platform-layout-widgets-tabular-data-view-popup.component-CntopmDS.mjs.map} +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +3 -3
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default.mjs +15 -5
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/package.json +1 -1
- package/types/acorex-platform-contracts.d.ts +1 -0
- package/types/acorex-platform-core.d.ts +1 -1
- package/types/acorex-platform-layout-entity-contracts.d.ts +4 -0
- package/types/acorex-platform-layout-entity.d.ts +30 -4
- package/types/acorex-platform-layout-views.d.ts +6 -1
- package/types/acorex-platform-layout-widget-core.d.ts +6 -0
- package/types/acorex-platform-themes-default.d.ts +4 -1
|
@@ -100,6 +100,10 @@ function actionExists(actions, commandName, name) {
|
|
|
100
100
|
return cmd === commandName;
|
|
101
101
|
});
|
|
102
102
|
}
|
|
103
|
+
/** Layout order for the shared appearance section (after entity-defined groups). */
|
|
104
|
+
const AXP_APPEARANCE_SECTION_ORDER = 900;
|
|
105
|
+
/** Layout order for the shared classification section (after appearance). */
|
|
106
|
+
const AXP_CLASSIFICATION_SECTION_ORDER = 910;
|
|
103
107
|
/**
|
|
104
108
|
* Clones `sections` and `properties` arrays to prevent accidental cross-interface mutations.
|
|
105
109
|
* Many entity definitions reuse the same array instances across create/update/single interfaces.
|
|
@@ -112,9 +116,19 @@ function cloneLayoutArrays(layout) {
|
|
|
112
116
|
};
|
|
113
117
|
}
|
|
114
118
|
function ensureLayoutSection(layout, section) {
|
|
115
|
-
|
|
119
|
+
const existingIndex = layout.sections.findIndex((s) => s.id === section.id);
|
|
120
|
+
if (existingIndex === -1) {
|
|
116
121
|
layout.sections = [...layout.sections, section];
|
|
122
|
+
return;
|
|
123
|
+
}
|
|
124
|
+
const incomingOrder = section.order;
|
|
125
|
+
if (incomingOrder == null) {
|
|
126
|
+
return;
|
|
117
127
|
}
|
|
128
|
+
const existing = layout.sections[existingIndex];
|
|
129
|
+
const mergedOrder = Math.max(existing.order ?? 0, incomingOrder);
|
|
130
|
+
layout.sections = [...layout.sections];
|
|
131
|
+
layout.sections[existingIndex] = { ...existing, ...section, order: mergedOrder };
|
|
118
132
|
}
|
|
119
133
|
function ensureLayoutPropertyView(layout, prop) {
|
|
120
134
|
if (!layout.properties.some((p) => p.name === prop.name)) {
|
|
@@ -4356,7 +4370,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4356
4370
|
|
|
4357
4371
|
class AXPEntityCommandTriggerViewModel {
|
|
4358
4372
|
constructor(entity, action, isChild = false) {
|
|
4359
|
-
this.name =
|
|
4373
|
+
this.name = AXPEntityCommandTriggerViewModel.buildTriggerName(action);
|
|
4360
4374
|
this.options = typeof action.command === 'object' ? action.command.options : undefined;
|
|
4361
4375
|
this.metadata = typeof action.command === 'object' ? action.command.metadata : undefined;
|
|
4362
4376
|
const resolvedLook = resolveActionLook(action.type);
|
|
@@ -4374,6 +4388,15 @@ class AXPEntityCommandTriggerViewModel {
|
|
|
4374
4388
|
this.isChild = isChild;
|
|
4375
4389
|
this.items = action.items?.map((child) => new AXPEntityCommandTriggerViewModel(entity, child, true));
|
|
4376
4390
|
}
|
|
4391
|
+
/** Stable trigger id for command lookup and list tracking when {@link AXPEntityAction.name} is omitted. */
|
|
4392
|
+
static buildTriggerName(action) {
|
|
4393
|
+
const commandName = typeof action.command === 'string' ? action.command : action.command.name;
|
|
4394
|
+
if (action.name) {
|
|
4395
|
+
return `${commandName}&${action.name}`;
|
|
4396
|
+
}
|
|
4397
|
+
const suffix = [action.scope, action.priority, String(action.order ?? 0), action.type].join(':');
|
|
4398
|
+
return `${commandName}&${suffix}`;
|
|
4399
|
+
}
|
|
4377
4400
|
}
|
|
4378
4401
|
class AXPEntityListViewColumnViewModel {
|
|
4379
4402
|
constructor(property, column) {
|
|
@@ -5332,6 +5355,48 @@ class AXPEntityMasterListViewModel {
|
|
|
5332
5355
|
const resolved = String(result).trim();
|
|
5333
5356
|
return resolved !== '' ? resolved : 'default';
|
|
5334
5357
|
}
|
|
5358
|
+
/**
|
|
5359
|
+
* Resolves table row CSS classes from `layouts.table.cssClass.row` for the given row.
|
|
5360
|
+
*/
|
|
5361
|
+
async resolveTableRowCssClass(rowData) {
|
|
5362
|
+
return this.resolveTableCssClassValue(this.tableLayout()?.cssClass?.row, rowData);
|
|
5363
|
+
}
|
|
5364
|
+
/**
|
|
5365
|
+
* Resolves table cell CSS classes from `layouts.table.cssClass.cell` for the given row and column.
|
|
5366
|
+
*/
|
|
5367
|
+
async resolveTableCellCssClass(rowData, columnName) {
|
|
5368
|
+
return this.resolveTableCssClassValue(this.tableLayout()?.cssClass?.cell, rowData, columnName);
|
|
5369
|
+
}
|
|
5370
|
+
createTableCssClassExpressionScope(data, columnName) {
|
|
5371
|
+
const scope = this.createLogicExpressionScope(data);
|
|
5372
|
+
if (!columnName) {
|
|
5373
|
+
return scope;
|
|
5374
|
+
}
|
|
5375
|
+
const columnContext = { name: columnName };
|
|
5376
|
+
return {
|
|
5377
|
+
...scope,
|
|
5378
|
+
table: {
|
|
5379
|
+
getColumn: (field) => {
|
|
5380
|
+
return get(columnContext, field);
|
|
5381
|
+
},
|
|
5382
|
+
},
|
|
5383
|
+
};
|
|
5384
|
+
}
|
|
5385
|
+
async resolveTableCssClassValue(expression, rowData, columnName) {
|
|
5386
|
+
if (!expression) {
|
|
5387
|
+
return undefined;
|
|
5388
|
+
}
|
|
5389
|
+
const scope = this.createTableCssClassExpressionScope(rowData, columnName);
|
|
5390
|
+
const result = await this.expressionEvaluator.evaluate(expression, scope);
|
|
5391
|
+
return this.normalizeTableCssClassValue(result);
|
|
5392
|
+
}
|
|
5393
|
+
normalizeTableCssClassValue(value) {
|
|
5394
|
+
if (value === false || value == null) {
|
|
5395
|
+
return undefined;
|
|
5396
|
+
}
|
|
5397
|
+
const resolved = String(value).trim();
|
|
5398
|
+
return resolved !== '' ? resolved : undefined;
|
|
5399
|
+
}
|
|
5335
5400
|
async resolveTriggerName(triggerName, data) {
|
|
5336
5401
|
if (!triggerName) {
|
|
5337
5402
|
return triggerName;
|
|
@@ -5495,6 +5560,8 @@ class AXPEntityMasterListViewModel {
|
|
|
5495
5560
|
this.hasInlineFilters = computed(() => {
|
|
5496
5561
|
return this.inlineFiltersPlaceholders().length > 0;
|
|
5497
5562
|
}, ...(ngDevMode ? [{ debugName: "hasInlineFilters" }] : /* istanbul ignore next */ []));
|
|
5563
|
+
/** Text for data-table cell highlighting (set only after filters are applied). */
|
|
5564
|
+
this.inlineFilterHighlightText = signal('', ...(ngDevMode ? [{ debugName: "inlineFilterHighlightText" }] : /* istanbul ignore next */ []));
|
|
5498
5565
|
//****************** Beardcrumbs ******************//
|
|
5499
5566
|
this.beardcrumbs = computed(() => {
|
|
5500
5567
|
return [
|
|
@@ -5508,7 +5575,7 @@ class AXPEntityMasterListViewModel {
|
|
|
5508
5575
|
const list = this.entityDef.interfaces?.master?.list?.actions ?? [];
|
|
5509
5576
|
const actions = list.map((tr) => new AXPEntityCommandTriggerViewModel(this.entityDef, tr)) ?? [];
|
|
5510
5577
|
const orderedActions = orderBy(actions, 'order', 'asc');
|
|
5511
|
-
return orderedActions;
|
|
5578
|
+
return this.dedupeActionsByName(orderedActions);
|
|
5512
5579
|
}, ...(ngDevMode ? [{ debugName: "allActions" }] : /* istanbul ignore next */ []));
|
|
5513
5580
|
/** Flattened actions including children for execute lookup */
|
|
5514
5581
|
this.flattenedActions = computed(() => {
|
|
@@ -5986,6 +6053,17 @@ class AXPEntityMasterListViewModel {
|
|
|
5986
6053
|
setSelectedCategory(category) {
|
|
5987
6054
|
this.selectedCategory.set(category);
|
|
5988
6055
|
}
|
|
6056
|
+
/** Keeps the first action when list definitions repeat the same trigger name. */
|
|
6057
|
+
dedupeActionsByName(actions) {
|
|
6058
|
+
const seen = new Set();
|
|
6059
|
+
return actions.filter((action) => {
|
|
6060
|
+
if (seen.has(action.name)) {
|
|
6061
|
+
return false;
|
|
6062
|
+
}
|
|
6063
|
+
seen.add(action.name);
|
|
6064
|
+
return true;
|
|
6065
|
+
});
|
|
6066
|
+
}
|
|
5989
6067
|
async getPrimaryActions() {
|
|
5990
6068
|
const scope = this.createLogicExpressionScope(null);
|
|
5991
6069
|
const actions = await Promise.all(this.allActions()
|
|
@@ -6242,6 +6320,7 @@ class AXPEntityMasterListViewModel {
|
|
|
6242
6320
|
if (sortKey === this.lastAppliedSortKey && filterKey === this.lastAppliedFilterKey) {
|
|
6243
6321
|
return; // No effective change; avoid redundant refresh
|
|
6244
6322
|
}
|
|
6323
|
+
this.updateAppliedInlineFilterHighlightText(filters);
|
|
6245
6324
|
const filtersChanged = this.lastAppliedFilterKey != null && filterKey !== this.lastAppliedFilterKey;
|
|
6246
6325
|
this.lastAppliedSortKey = sortKey;
|
|
6247
6326
|
this.lastAppliedFilterKey = filterKey;
|
|
@@ -6253,6 +6332,11 @@ class AXPEntityMasterListViewModel {
|
|
|
6253
6332
|
this.dataSource.filter(transformedFilter);
|
|
6254
6333
|
this.events$.next({ action: 'refresh', meta: { resetPagination: filtersChanged } });
|
|
6255
6334
|
}
|
|
6335
|
+
updateAppliedInlineFilterHighlightText(filters) {
|
|
6336
|
+
const allFilter = filters.find((f) => f.field === 'all');
|
|
6337
|
+
const value = allFilter?.value;
|
|
6338
|
+
this.inlineFilterHighlightText.set(typeof value === 'string' ? value.trim() : '');
|
|
6339
|
+
}
|
|
6256
6340
|
//****************** Columns ******************//
|
|
6257
6341
|
resolveMergeDetailProperty(columnName) {
|
|
6258
6342
|
const parsed = parseDottedFieldPath(columnName);
|
|
@@ -7684,10 +7768,11 @@ async function calculateChildrenCounts(items, entityName, getDirectChildCount) {
|
|
|
7684
7768
|
* Loads raw rows for an entity and applies the same sorting and filtering as {@link runEntityQuery},
|
|
7685
7769
|
* without pagination.
|
|
7686
7770
|
*/
|
|
7687
|
-
async function filterSortEntityRows(entityName, request, adapters) {
|
|
7771
|
+
async function filterSortEntityRows(entityName, request, adapters, sortLocale) {
|
|
7688
7772
|
let result = await adapters.getRawAll(entityName);
|
|
7689
7773
|
if (request.sort && request.sort.length) {
|
|
7690
|
-
|
|
7774
|
+
const locale = sortLocale ?? request.params?.['locale'] ?? 'en-US';
|
|
7775
|
+
result = applySortArray(result, request.sort, locale);
|
|
7691
7776
|
}
|
|
7692
7777
|
if (request.filter && isCategoryFilter(request.filter)) {
|
|
7693
7778
|
result = await applyRecursiveCategoryFilter(result, request.filter, entityName, adapters.getAllChildCategoryIds);
|
|
@@ -7703,8 +7788,8 @@ async function filterSortEntityRows(entityName, request, adapters) {
|
|
|
7703
7788
|
/**
|
|
7704
7789
|
* Shared entity query logic: sort, filter (including recursive category filter), childrenCount, pagination.
|
|
7705
7790
|
*/
|
|
7706
|
-
async function runEntityQuery(entityName, request, adapters) {
|
|
7707
|
-
const rows = await filterSortEntityRows(entityName, request, adapters);
|
|
7791
|
+
async function runEntityQuery(entityName, request, adapters, sortLocale) {
|
|
7792
|
+
const rows = await filterSortEntityRows(entityName, request, adapters, sortLocale);
|
|
7708
7793
|
const skip = request.skip ?? 0;
|
|
7709
7794
|
const take = request.take ?? 0;
|
|
7710
7795
|
return {
|
|
@@ -25809,5 +25894,5 @@ var getEntityDetails_query = /*#__PURE__*/Object.freeze({
|
|
|
25809
25894
|
* Generated bundle index. Do not edit.
|
|
25810
25895
|
*/
|
|
25811
25896
|
|
|
25812
|
-
export { ATTACHMENTS_PAGE_COMPONENT_KEY, AXMEntityCrudService, AXMEntityCrudServiceImpl, AXPCategoryTreeService, AXPCreateEntityCommand, AXPCreateEntityWorkflow, AXPDataSeederService, AXPDeleteEntityWorkflow, AXPEditFileUploaderCommand, AXPEntitiesListDataSourceDefinition, AXPEntityApplyUpdatesAction, AXPEntityCategoryTreeSelectorComponent, AXPEntityCategoryWidget, AXPEntityCategoryWidgetColumnComponent, AXPEntityCategoryWidgetEditComponent, AXPEntityCategoryWidgetViewComponent, AXPEntityCommandTriggerViewModel, AXPEntityCreateEvent, AXPEntityCreatePopupAction, AXPEntityCreateSubmittedAction, AXPEntityCreateViewElementViewModel, AXPEntityCreateViewModelFactory, AXPEntityCreateViewSectionViewModel, AXPEntityDataProvider, AXPEntityDataProviderImpl, AXPEntityDataSelectorRowActionsService, AXPEntityDataSelectorService, AXPEntityDefinitionProviderWidget, AXPEntityDefinitionProviderWidgetEditComponent, AXPEntityDefinitionRegistryService, AXPEntityDeletedEvent, AXPEntityDetailListViewModel, AXPEntityDetailPopoverComponent, AXPEntityDetailPopoverService, AXPEntityDetailViewModelFactory, AXPEntityDetailViewModelResolver, AXPEntityEventDispatcherService, AXPEntityFormBuilderService, AXPEntityListPersistenceModeDefault, AXPEntityListTableService, AXPEntityListToolbarService, AXPEntityListViewCardFieldViewModel, AXPEntityListViewColumnViewModel, AXPEntityListViewModelFactory, AXPEntityListViewModelResolver, AXPEntityListWidget, AXPEntityListWidgetViewComponent, AXPEntityMasterCreateViewModel, AXPEntityMasterListCardSelectActionName, AXPEntityMasterListViewModel, AXPEntityMasterListViewQueryViewModel, AXPEntityMasterSingleElementViewModel, AXPEntityMasterSingleViewGroupViewModel, AXPEntityMasterSingleViewModel, AXPEntityMasterUpdateElementViewModel, AXPEntityMasterUpdateViewModel, AXPEntityMasterUpdateViewModelFactory, AXPEntityMiddleware, AXPEntityModifyConfirmedAction, AXPEntityModifyEvent, AXPEntityModifySectionPopupAction, AXPEntityModule, AXPEntityPerformDeleteAction, AXPEntityPreloadFiltersContainerComponent, AXPEntityPreloadFiltersViewModel, AXPEntityPreloadFiltersViewModelResolver, AXPEntityResolver, AXPEntityService, AXPEntityStorageService, AXPEntityUpdateViewSectionViewModel, AXPFileListComponent, AXPFileUploaderLoadFilesQuery, AXPFileUploaderSaveFilesCommand, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, 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, ENTITY_LIST_ROUTE_CONTEXT_SESSION_KEY, EntityBuilder, EntityDataAccessor, actionExists, applyDataSourcePagingWithoutLoad, attachmentFieldCount, attachmentsPlugin, attachmentsSemanticallyEqual, axpCreateEntityAiToolInputDefaults, axpCreateEntityCommandDefinition, canPersistEntityListState, cloneLayoutArrays, columnOrderingMiddleware, columnOrderingMiddlewareProvider, columnWidthMiddleware, columnWidthMiddlewareProvider, commandMessageTextForError, committedAttachments, computeEntityAggregates, createColumnOrderingMiddlewareProvider, createLayoutOrderingMiddlewareProvider, createModifierContext, defaultCardLayoutMiddleware, defaultCardLayoutMiddlewareProvider, defaultMultiLanguageMiddleware, defaultMultiLanguageMiddlewareProvider, detectEntityChanges, ensureLayoutPropertyView, ensureLayoutSection, ensureListActions, eventDispatchMiddleware, filterSortEntityRows, findEntityListRowDataInTree, fingerprintAttachmentItem, fingerprintAttachments, formatLookupItemDisplay, formatLookupItemDisplayAsync, getDataSourcePageIndex, getEntityListRowId, getMasterInterfacePropertySortKey, hasFileUploaderTitleOrDescriptionFields, isAXPMiddlewareAbortError, isAttachmentListEntry, isCategoryEntity, isCategoryFilter, isFileListItem, isFileUploaderEditDialogAuto, isLegacyEntityDataSelectorOptions, layoutOrderingMiddlewareFactory, layoutOrderingMiddlewareProvider, mapEntityStorageErrorToCommandResult, mapLegacyEntityDataSelectorOptions, normalizeEntityDataSelectorOptions, normalizeEntityFieldToFileList, normalizeEntityListPersistenceMode, normalizeListPaging, persistedAttachments, provideEntity, resolveEntityPluginDetailPageOrder, resolveFileUploaderEditDialog, resolveFileUploaderEntityScope, resolveLookupDisplayField, resolveLookupDisplayTemplate, restoreEntityListExpandedRows, runEntityQuery, searchResultDescriptionMiddleware, searchResultDescriptionMiddlewareProvider, shouldLoadEntityListStateFromStorage, shouldResetEntityListStateOnRouteEntry };
|
|
25897
|
+
export { ATTACHMENTS_PAGE_COMPONENT_KEY, AXMEntityCrudService, AXMEntityCrudServiceImpl, AXPCategoryTreeService, AXPCreateEntityCommand, AXPCreateEntityWorkflow, AXPDataSeederService, AXPDeleteEntityWorkflow, AXPEditFileUploaderCommand, AXPEntitiesListDataSourceDefinition, AXPEntityApplyUpdatesAction, AXPEntityCategoryTreeSelectorComponent, AXPEntityCategoryWidget, AXPEntityCategoryWidgetColumnComponent, AXPEntityCategoryWidgetEditComponent, AXPEntityCategoryWidgetViewComponent, AXPEntityCommandTriggerViewModel, AXPEntityCreateEvent, AXPEntityCreatePopupAction, AXPEntityCreateSubmittedAction, AXPEntityCreateViewElementViewModel, AXPEntityCreateViewModelFactory, AXPEntityCreateViewSectionViewModel, AXPEntityDataProvider, AXPEntityDataProviderImpl, AXPEntityDataSelectorRowActionsService, AXPEntityDataSelectorService, AXPEntityDefinitionProviderWidget, AXPEntityDefinitionProviderWidgetEditComponent, AXPEntityDefinitionRegistryService, AXPEntityDeletedEvent, AXPEntityDetailListViewModel, AXPEntityDetailPopoverComponent, AXPEntityDetailPopoverService, AXPEntityDetailViewModelFactory, AXPEntityDetailViewModelResolver, AXPEntityEventDispatcherService, AXPEntityFormBuilderService, AXPEntityListPersistenceModeDefault, AXPEntityListTableService, AXPEntityListToolbarService, AXPEntityListViewCardFieldViewModel, AXPEntityListViewColumnViewModel, AXPEntityListViewModelFactory, AXPEntityListViewModelResolver, AXPEntityListWidget, AXPEntityListWidgetViewComponent, AXPEntityMasterCreateViewModel, AXPEntityMasterListCardSelectActionName, AXPEntityMasterListViewModel, AXPEntityMasterListViewQueryViewModel, AXPEntityMasterSingleElementViewModel, AXPEntityMasterSingleViewGroupViewModel, AXPEntityMasterSingleViewModel, AXPEntityMasterUpdateElementViewModel, AXPEntityMasterUpdateViewModel, AXPEntityMasterUpdateViewModelFactory, AXPEntityMiddleware, AXPEntityModifyConfirmedAction, AXPEntityModifyEvent, AXPEntityModifySectionPopupAction, AXPEntityModule, AXPEntityPerformDeleteAction, AXPEntityPreloadFiltersContainerComponent, AXPEntityPreloadFiltersViewModel, AXPEntityPreloadFiltersViewModelResolver, AXPEntityResolver, AXPEntityService, AXPEntityStorageService, AXPEntityUpdateViewSectionViewModel, AXPFileListComponent, AXPFileUploaderLoadFilesQuery, AXPFileUploaderSaveFilesCommand, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, 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_APPEARANCE_SECTION_ORDER, AXP_CATEGORY_TREE_ROOT_TITLE_I18N_KEY, AXP_CLASSIFICATION_SECTION_ORDER, 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, ENTITY_LIST_ROUTE_CONTEXT_SESSION_KEY, EntityBuilder, EntityDataAccessor, actionExists, applyDataSourcePagingWithoutLoad, attachmentFieldCount, attachmentsPlugin, attachmentsSemanticallyEqual, axpCreateEntityAiToolInputDefaults, axpCreateEntityCommandDefinition, canPersistEntityListState, cloneLayoutArrays, columnOrderingMiddleware, columnOrderingMiddlewareProvider, columnWidthMiddleware, columnWidthMiddlewareProvider, commandMessageTextForError, committedAttachments, computeEntityAggregates, createColumnOrderingMiddlewareProvider, createLayoutOrderingMiddlewareProvider, createModifierContext, defaultCardLayoutMiddleware, defaultCardLayoutMiddlewareProvider, defaultMultiLanguageMiddleware, defaultMultiLanguageMiddlewareProvider, detectEntityChanges, ensureLayoutPropertyView, ensureLayoutSection, ensureListActions, eventDispatchMiddleware, filterSortEntityRows, findEntityListRowDataInTree, fingerprintAttachmentItem, fingerprintAttachments, formatLookupItemDisplay, formatLookupItemDisplayAsync, getDataSourcePageIndex, getEntityListRowId, getMasterInterfacePropertySortKey, hasFileUploaderTitleOrDescriptionFields, isAXPMiddlewareAbortError, isAttachmentListEntry, isCategoryEntity, isCategoryFilter, isFileListItem, isFileUploaderEditDialogAuto, isLegacyEntityDataSelectorOptions, layoutOrderingMiddlewareFactory, layoutOrderingMiddlewareProvider, mapEntityStorageErrorToCommandResult, mapLegacyEntityDataSelectorOptions, normalizeEntityDataSelectorOptions, normalizeEntityFieldToFileList, normalizeEntityListPersistenceMode, normalizeListPaging, persistedAttachments, provideEntity, resolveEntityPluginDetailPageOrder, resolveFileUploaderEditDialog, resolveFileUploaderEntityScope, resolveLookupDisplayField, resolveLookupDisplayTemplate, restoreEntityListExpandedRows, runEntityQuery, searchResultDescriptionMiddleware, searchResultDescriptionMiddlewareProvider, shouldLoadEntityListStateFromStorage, shouldResetEntityListStateOnRouteEntry };
|
|
25813
25898
|
//# sourceMappingURL=acorex-platform-layout-entity.mjs.map
|