@acorex/platform 20.3.0-next.8 → 20.3.0-next.9
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/common/index.d.ts +0 -2
- package/core/index.d.ts +72 -62
- package/fesm2022/acorex-platform-common.mjs +5 -10
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +115 -115
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +420 -24
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +1266 -153
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-designer.mjs +19 -12
- package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +454 -505
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +14 -21
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-BXbkGGei.mjs → acorex-platform-themes-default-entity-master-create-view.component-Ct-ri59W.mjs} +3 -3
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-Ct-ri59W.mjs.map +1 -0
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-gQIK6PIx.mjs → acorex-platform-themes-default-entity-master-list-view.component-7BB4LdjK.mjs} +9 -9
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-7BB4LdjK.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BDJR088o.mjs +101 -0
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BDJR088o.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +8 -8
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-shared-settings.provider-CXiRmniv.mjs → acorex-platform-themes-shared-settings.provider-CLUKU4y0.mjs} +2 -2
- package/fesm2022/acorex-platform-themes-shared-settings.provider-CLUKU4y0.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-shared.mjs +154 -23
- package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
- package/fesm2022/{acorex-platform-widgets-file-list-popup.component-rW2RD35f.mjs → acorex-platform-widgets-file-list-popup.component-Cmtq2bBV.mjs} +3 -3
- package/fesm2022/acorex-platform-widgets-file-list-popup.component-Cmtq2bBV.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-page-widget-designer.component-DNvnQ4Mc.mjs → acorex-platform-widgets-page-widget-designer.component-D8ivmxzT.mjs} +2 -2
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-D8ivmxzT.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-tabular-data-edit-popup.component-CPVRbE8B.mjs → acorex-platform-widgets-tabular-data-edit-popup.component-CMqq_iOj.mjs} +8 -8
- package/fesm2022/acorex-platform-widgets-tabular-data-edit-popup.component-CMqq_iOj.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets.mjs +4943 -4858
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/layout/builder/index.d.ts +60 -5
- package/layout/components/index.d.ts +501 -54
- package/layout/designer/index.d.ts +4 -2
- package/layout/entity/index.d.ts +45 -9
- package/package.json +9 -9
- package/widgets/index.d.ts +352 -300
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-BXbkGGei.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-gQIK6PIx.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-Bp1JLsj1.mjs +0 -101
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-Bp1JLsj1.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-shared-settings.provider-CXiRmniv.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-file-list-popup.component-rW2RD35f.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-DNvnQ4Mc.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-tabular-data-edit-popup.component-CPVRbE8B.mjs.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AXClickEvent } from '@acorex/cdk/common';
|
|
2
2
|
import * as _angular_core from '@angular/core';
|
|
3
|
-
import { EventEmitter, OnChanges, OnDestroy, WritableSignal, NgZone, SimpleChanges } from '@angular/core';
|
|
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
6
|
import * as _acorex_platform_layout_builder from '@acorex/platform/layout/builder';
|
|
@@ -351,6 +351,8 @@ declare class AXPWidgetDesignerRendererDirective implements OnChanges, OnDestroy
|
|
|
351
351
|
private service;
|
|
352
352
|
private viewContainerRef;
|
|
353
353
|
parentNode: _angular_core.InputSignal<AXPLayoutBaseWidgetComponent | null | undefined>;
|
|
354
|
+
parentElement: _angular_core.InputSignal<HTMLElement | null | undefined>;
|
|
355
|
+
parentComponent: _angular_core.InputSignal<ComponentRef<any> | null | undefined>;
|
|
354
356
|
index: _angular_core.InputSignal<number | null | undefined>;
|
|
355
357
|
locked: _angular_core.InputSignal<boolean>;
|
|
356
358
|
mode: _angular_core.InputSignal<keyof _acorex_platform_layout_builder.AXPWidgetConfigComponents>;
|
|
@@ -377,7 +379,7 @@ declare class AXPWidgetDesignerRendererDirective implements OnChanges, OnDestroy
|
|
|
377
379
|
private preprocessAndInitialOptions;
|
|
378
380
|
private applyOptions;
|
|
379
381
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPWidgetDesignerRendererDirective, never>;
|
|
380
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AXPWidgetDesignerRendererDirective, "[axp-widget-designer-renderer]", never, { "parentNode": { "alias": "parentNode"; "required": false; "isSignal": true; }; "index": { "alias": "index"; "required": false; "isSignal": true; }; "locked": { "alias": "locked"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": true; "isSignal": true; }; "node": { "alias": "node"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
382
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AXPWidgetDesignerRendererDirective, "[axp-widget-designer-renderer]", never, { "parentNode": { "alias": "parentNode"; "required": false; "isSignal": true; }; "parentElement": { "alias": "parentElement"; "required": false; "isSignal": true; }; "parentComponent": { "alias": "parentComponent"; "required": false; "isSignal": true; }; "index": { "alias": "index"; "required": false; "isSignal": true; }; "locked": { "alias": "locked"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": true; "isSignal": true; }; "node": { "alias": "node"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
381
383
|
}
|
|
382
384
|
|
|
383
385
|
declare class AXPLayoutDesignerPreviewViewerComponent {
|
package/layout/entity/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { InjectionToken, Injector, Type, ElementRef } from '@angular/core';
|
|
|
3
3
|
import { AXStyleColorType, AXDataSource, AXDataSourceFilterOption } from '@acorex/cdk/common';
|
|
4
4
|
import * as _acorex_platform_common from '@acorex/platform/common';
|
|
5
5
|
import { AXPEntityCommandScope, AXPEntity, AXPEntityAction, AXPEntityProperty, AXPEntityTableColumn, AXPRelatedEntity, AXPEntitySectionView, AXPGridLayoutOptions, AXPEntityPropertyCreateView, AXPEntityPropertyLayoutConfig, AXPQueryView, AXPEntityPropertyView, AXPCategoryEntity, AXPEntityPropertyGroup, AXPEntityMasterCreateLayoutView, AXPEntityMasterUpdateLayoutView, AXPEntityMasterSingleLayoutView, AXPEntityMasterListView, AXPEntityDetailListView, AXPQueryFilter } from '@acorex/platform/common';
|
|
6
|
-
import { AXPMetaData, AXPBreadcrumbItem, AXPFilterQuery, AXPFilterDefinition, AXPExecuteCommand, AXPQueryRequest, AXPPagedListResult, AXPAppStartUpService } from '@acorex/platform/core';
|
|
6
|
+
import { AXPMetaData, AXPBreadcrumbItem, AXPFilterQuery, AXPFilterDefinition, AXPExecuteCommand, AXPQueryRequest, AXPPagedListResult, AXPMiddlewareErrorResponse, AXPCategoryEntity as AXPCategoryEntity$1, AXPAppStartUpService } from '@acorex/platform/core';
|
|
7
7
|
import * as i3 from '@acorex/platform/layout/builder';
|
|
8
8
|
import { AXPWidgetColumnNode, AXPWidgetNode, AXPLayoutBuilderService } from '@acorex/platform/layout/builder';
|
|
9
9
|
import * as i1 from '@angular/router';
|
|
@@ -332,6 +332,17 @@ declare class AXPEntityDetailViewModelFactory {
|
|
|
332
332
|
}
|
|
333
333
|
declare const AXPEntityDetailViewModelResolver: ResolveFn<Promise<AXPEntityMasterSingleViewModel>>;
|
|
334
334
|
|
|
335
|
+
declare class AXPEntityUpdateViewSectionViewModel {
|
|
336
|
+
private entity;
|
|
337
|
+
private section;
|
|
338
|
+
constructor(entity: AXPEntity, section: AXPEntitySectionView);
|
|
339
|
+
group: _acorex_platform_common.AXPEntityPropertyGroup;
|
|
340
|
+
name: _angular_core.WritableSignal<string>;
|
|
341
|
+
title: _angular_core.Signal<string>;
|
|
342
|
+
description: _angular_core.Signal<string | null | undefined>;
|
|
343
|
+
layout: _angular_core.Signal<AXPGridLayoutOptions>;
|
|
344
|
+
elements: _angular_core.Signal<AXPEntityMasterUpdateElementViewModel[]>;
|
|
345
|
+
}
|
|
335
346
|
declare class AXPEntityMasterUpdateElementViewModel {
|
|
336
347
|
private entity;
|
|
337
348
|
private property;
|
|
@@ -360,6 +371,7 @@ declare class AXPEntityMasterUpdateViewModel {
|
|
|
360
371
|
isInProgress: _angular_core.WritableSignal<boolean>;
|
|
361
372
|
context: _angular_core.WritableSignal<any>;
|
|
362
373
|
elements: _angular_core.Signal<AXPEntityMasterUpdateElementViewModel[]>;
|
|
374
|
+
sections: _angular_core.Signal<AXPEntityUpdateViewSectionViewModel[]>;
|
|
363
375
|
save(): Promise<any>;
|
|
364
376
|
reset(): void;
|
|
365
377
|
}
|
|
@@ -386,10 +398,6 @@ interface AXPEntityModifierContext {
|
|
|
386
398
|
get(): string;
|
|
387
399
|
set(newName: string): AXPEntityModifierContext;
|
|
388
400
|
};
|
|
389
|
-
source: {
|
|
390
|
-
get(): string;
|
|
391
|
-
set(newSource: string): AXPEntityModifierContext;
|
|
392
|
-
};
|
|
393
401
|
parentKey: {
|
|
394
402
|
get(): string | undefined;
|
|
395
403
|
set(newKey: string | undefined): AXPEntityModifierContext;
|
|
@@ -551,8 +559,10 @@ interface AXPEntityStorageContext<TKey = any, TDetailDto extends AXPEntityDetail
|
|
|
551
559
|
result?: any;
|
|
552
560
|
locals: Map<string, unknown>;
|
|
553
561
|
backend: {
|
|
554
|
-
|
|
555
|
-
|
|
562
|
+
getOne: (entityName: string, id: TKey) => Promise<TDetailDto>;
|
|
563
|
+
insertOne: (entityName: string, entity: TCreateDto) => Promise<TKey>;
|
|
564
|
+
query: (entityName: string, request: AXPQueryRequest) => Promise<AXPPagedListResult<TListItemDto>>;
|
|
565
|
+
updateOne: (entityName: string, id: TKey, data: Partial<TUpdateDto>) => Promise<void>;
|
|
556
566
|
};
|
|
557
567
|
}
|
|
558
568
|
interface AXPEntityStorageMiddleware<TKey = any, TDetailDto extends AXPEntityDetailDto<TKey> = any, TListItemDto extends AXPEntityListItemDto<TKey> = any, TCreateDto extends AXPEntityCreateDto = any, TUpdateDto extends AXPEntityUpdateDto<TKey> = any> {
|
|
@@ -564,6 +574,25 @@ interface AXPEntityStorageMiddleware<TKey = any, TDetailDto extends AXPEntityDet
|
|
|
564
574
|
};
|
|
565
575
|
execute: (ctx: AXPEntityStorageContext<TKey, TDetailDto, TListItemDto, TCreateDto, TUpdateDto>, next: () => Promise<void>) => Promise<void>;
|
|
566
576
|
}
|
|
577
|
+
/**
|
|
578
|
+
* Error type that can be thrown by middlewares to abort the chain with a structured payload.
|
|
579
|
+
*/
|
|
580
|
+
declare class AXPMiddlewareAbortError extends Error {
|
|
581
|
+
readonly message: string;
|
|
582
|
+
readonly options: {
|
|
583
|
+
code?: string;
|
|
584
|
+
status?: number;
|
|
585
|
+
details?: any;
|
|
586
|
+
};
|
|
587
|
+
constructor(message: string, options?: {
|
|
588
|
+
code?: string;
|
|
589
|
+
status?: number;
|
|
590
|
+
details?: any;
|
|
591
|
+
});
|
|
592
|
+
toResponse(): AXPMiddlewareErrorResponse;
|
|
593
|
+
}
|
|
594
|
+
/** Type guard for AXPMiddlewareAbortError */
|
|
595
|
+
declare function isAXPMiddlewareAbortError(error: unknown): error is AXPMiddlewareAbortError;
|
|
567
596
|
|
|
568
597
|
declare abstract class AXPEntityStorageService<TKey, TDetailDto extends AXPEntityDetailDto<TKey> = AXPEntityModel<TKey>, TListItemDto extends AXPEntityListItemDto<TKey> = TDetailDto, TCreateDto extends AXPEntityCreateDto = TDetailDto, TUpdateDto extends AXPEntityUpdateDto<TKey> = TDetailDto> {
|
|
569
598
|
abstract get dbName(): string;
|
|
@@ -612,6 +641,7 @@ declare class AXMEntityCrudServiceImpl<TKey, TDetailDto extends AXPEntityDetailD
|
|
|
612
641
|
private _storageService;
|
|
613
642
|
private entityRegistery;
|
|
614
643
|
private _entityDataProvider;
|
|
644
|
+
private _entityCategoryDataProvider;
|
|
615
645
|
constructor(entityName: string);
|
|
616
646
|
insertOne(request: TCreateDto): Promise<TKey>;
|
|
617
647
|
getOne(id: TKey): Promise<TDetailDto>;
|
|
@@ -628,6 +658,7 @@ declare class AXMEntityCrudServiceImpl<TKey, TDetailDto extends AXPEntityDetailD
|
|
|
628
658
|
categoryId: TKey;
|
|
629
659
|
categoryKey?: string;
|
|
630
660
|
}): Promise<AXPPagedListResult<TListItemDto>>;
|
|
661
|
+
getCategoriesList(request?: AXPQueryRequest): Promise<AXPPagedListResult<AXPCategoryEntity$1<TKey>>>;
|
|
631
662
|
get storageService(): AXPEntityStorageService<any, any, any, any, any>;
|
|
632
663
|
}
|
|
633
664
|
|
|
@@ -973,7 +1004,12 @@ declare function entityMasterCreateAction(): AXPEntityAction;
|
|
|
973
1004
|
declare function entityMasterBulkDeleteAction(): AXPEntityAction;
|
|
974
1005
|
declare function entityMasterViewAction(): AXPEntityAction;
|
|
975
1006
|
declare function entityMasterDeleteAction(): AXPEntityAction;
|
|
976
|
-
declare function entityMasterCrudActions(
|
|
1007
|
+
declare function entityMasterCrudActions(options?: {
|
|
1008
|
+
create?: boolean;
|
|
1009
|
+
delete?: boolean;
|
|
1010
|
+
view?: boolean;
|
|
1011
|
+
edit?: boolean;
|
|
1012
|
+
}): AXPEntityAction[];
|
|
977
1013
|
declare function entityMasterRecordActions(): AXPEntityAction[];
|
|
978
1014
|
declare function entityDetailsCreateActions(parentId: string): AXPEntityAction;
|
|
979
1015
|
declare function entityDetailsSimpleCondition(fk: string): AXPQueryFilter;
|
|
@@ -1099,5 +1135,5 @@ declare class AXPEntityDetailPopoverService {
|
|
|
1099
1135
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPEntityDetailPopoverService>;
|
|
1100
1136
|
}
|
|
1101
1137
|
|
|
1102
|
-
export { AXMEntityCrudService, AXMEntityCrudServiceImpl, AXPCreateEntityWorkflow, AXPDataSeederService, AXPDeleteEntityWorkflow, AXPEntityApplyUpdatesAction, AXPEntityCommandTriggerViewModel, AXPEntityCreateEvent, AXPEntityCreatePopupAction, AXPEntityCreateSubmittedAction, AXPEntityCreateViewElementViewModel, AXPEntityCreateViewModelFactory, AXPEntityCreateViewSectionViewModel, AXPEntityDataProvider, AXPEntityDataProviderImpl, AXPEntityDefinitionRegistryService, AXPEntityDeletedEvent, AXPEntityDetailListViewModel, AXPEntityDetailPopoverComponent, AXPEntityDetailPopoverService, AXPEntityDetailViewModelFactory, AXPEntityDetailViewModelResolver, AXPEntityEventDispatcherService, AXPEntityListViewColumnViewModel, AXPEntityListViewModelFactory, AXPEntityListViewModelResolver, AXPEntityMasterCreateViewModel, AXPEntityMasterListViewModel, AXPEntityMasterListViewQueryViewModel, AXPEntityMasterSingleElementViewModel, AXPEntityMasterSingleViewGroupViewModel, AXPEntityMasterSingleViewModel, AXPEntityMasterUpdateElementViewModel, AXPEntityMasterUpdateViewModel, AXPEntityMasterUpdateViewModelFactory, AXPEntityMiddleware, AXPEntityModifyConfirmedAction, AXPEntityModifyEvent, AXPEntityModifySectionPopupAction, AXPEntityModule, AXPEntityPerformDeleteAction, AXPEntityResolver, AXPEntityService, AXPEntityStorageService, AXPGetEntityDetailsQuery, AXPMiddlewareEntityStorageService, AXPModifyEntitySectionWorkflow, AXPOpenEntityDetailsCommand, AXPQuickEntityModifyPopupAction, AXPQuickModifyEntityWorkflow, AXPShowDetailViewAction, AXPShowDetailsViewWorkflow, AXPShowListViewAction, AXPShowListViewWorkflow, 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, DEFAULT_COLUMN_WIDTHS, actionExists, columnWidthMiddlewareFactory, columnWidthMiddlewareProvider, createColumnWidthMiddlewareProvider, createModifierContext, detectEntityChanges, ensureListActions, entityDetailsCreateActions, entityDetailsCrudActions, entityDetailsEditAction, entityDetailsReferenceCondition, entityDetailsReferenceCreateActions, entityDetailsSimpleCondition, entityMasterBulkDeleteAction, entityMasterCreateAction, entityMasterCrudActions, entityMasterDeleteAction, entityMasterRecordActions, entityMasterViewAction, entityOverrideDetailsViewAction, eventDispatchMiddleware };
|
|
1138
|
+
export { AXMEntityCrudService, AXMEntityCrudServiceImpl, AXPCreateEntityWorkflow, AXPDataSeederService, AXPDeleteEntityWorkflow, AXPEntityApplyUpdatesAction, AXPEntityCommandTriggerViewModel, AXPEntityCreateEvent, AXPEntityCreatePopupAction, AXPEntityCreateSubmittedAction, AXPEntityCreateViewElementViewModel, AXPEntityCreateViewModelFactory, AXPEntityCreateViewSectionViewModel, AXPEntityDataProvider, AXPEntityDataProviderImpl, AXPEntityDefinitionRegistryService, AXPEntityDeletedEvent, AXPEntityDetailListViewModel, AXPEntityDetailPopoverComponent, AXPEntityDetailPopoverService, AXPEntityDetailViewModelFactory, AXPEntityDetailViewModelResolver, AXPEntityEventDispatcherService, AXPEntityListViewColumnViewModel, AXPEntityListViewModelFactory, AXPEntityListViewModelResolver, AXPEntityMasterCreateViewModel, AXPEntityMasterListViewModel, AXPEntityMasterListViewQueryViewModel, AXPEntityMasterSingleElementViewModel, AXPEntityMasterSingleViewGroupViewModel, AXPEntityMasterSingleViewModel, AXPEntityMasterUpdateElementViewModel, AXPEntityMasterUpdateViewModel, AXPEntityMasterUpdateViewModelFactory, AXPEntityMiddleware, AXPEntityModifyConfirmedAction, AXPEntityModifyEvent, AXPEntityModifySectionPopupAction, AXPEntityModule, AXPEntityPerformDeleteAction, AXPEntityResolver, AXPEntityService, AXPEntityStorageService, AXPEntityUpdateViewSectionViewModel, AXPGetEntityDetailsQuery, AXPMiddlewareAbortError, AXPMiddlewareEntityStorageService, AXPModifyEntitySectionWorkflow, AXPOpenEntityDetailsCommand, AXPQuickEntityModifyPopupAction, AXPQuickModifyEntityWorkflow, AXPShowDetailViewAction, AXPShowDetailsViewWorkflow, AXPShowListViewAction, AXPShowListViewWorkflow, 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, DEFAULT_COLUMN_WIDTHS, actionExists, columnWidthMiddlewareFactory, columnWidthMiddlewareProvider, createColumnWidthMiddlewareProvider, createModifierContext, detectEntityChanges, ensureListActions, entityDetailsCreateActions, entityDetailsCrudActions, entityDetailsEditAction, entityDetailsReferenceCondition, entityDetailsReferenceCreateActions, entityDetailsSimpleCondition, entityMasterBulkDeleteAction, entityMasterCreateAction, entityMasterCrudActions, entityMasterDeleteAction, entityMasterRecordActions, entityMasterViewAction, entityOverrideDetailsViewAction, eventDispatchMiddleware, isAXPMiddlewareAbortError };
|
|
1103
1139
|
export type { AXPAuditable, AXPDataSeeder, AXPEntityActionPlugin, AXPEntityChangeSet, AXPEntityConfigs, AXPEntityCreateDto, AXPEntityDefinitionLoader, AXPEntityDefinitionPreloader, AXPEntityDeleteOptions, AXPEntityDetailDto, AXPEntityDetailPopoverOptions, AXPEntityListItemDto, AXPEntityMasterListViewSortPropViewModel, AXPEntityModel, AXPEntityModifier, AXPEntityModifierContext, AXPEntityModifierProvider, AXPEntityOp, AXPEntityOutputDto, AXPEntityPreloadEntity, AXPEntityStorageContext, AXPEntityStorageMiddleware, AXPEntityUpdateDto, AXPGetEntityDetailsQueryInput, AXPGetEntityDetailsQueryResult, AXPOpenEntityDetailsCommandInput, AXPOpenEntityDetailsCommandResult, AXPRecordControl, ColumnWidthConfig };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "20.3.0-next.
|
|
3
|
+
"version": "20.3.0-next.9",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@acorex/styles": ">=20.0.0",
|
|
6
6
|
"@acorex/core": ">=20.0.0",
|
|
@@ -26,10 +26,6 @@
|
|
|
26
26
|
"types": "./index.d.ts",
|
|
27
27
|
"default": "./fesm2022/acorex-platform.mjs"
|
|
28
28
|
},
|
|
29
|
-
"./auth": {
|
|
30
|
-
"types": "./auth/index.d.ts",
|
|
31
|
-
"default": "./fesm2022/acorex-platform-auth.mjs"
|
|
32
|
-
},
|
|
33
29
|
"./common": {
|
|
34
30
|
"types": "./common/index.d.ts",
|
|
35
31
|
"default": "./fesm2022/acorex-platform-common.mjs"
|
|
@@ -38,6 +34,10 @@
|
|
|
38
34
|
"types": "./core/index.d.ts",
|
|
39
35
|
"default": "./fesm2022/acorex-platform-core.mjs"
|
|
40
36
|
},
|
|
37
|
+
"./auth": {
|
|
38
|
+
"types": "./auth/index.d.ts",
|
|
39
|
+
"default": "./fesm2022/acorex-platform-auth.mjs"
|
|
40
|
+
},
|
|
41
41
|
"./domain": {
|
|
42
42
|
"types": "./domain/index.d.ts",
|
|
43
43
|
"default": "./fesm2022/acorex-platform-domain.mjs"
|
|
@@ -46,14 +46,14 @@
|
|
|
46
46
|
"types": "./native/index.d.ts",
|
|
47
47
|
"default": "./fesm2022/acorex-platform-native.mjs"
|
|
48
48
|
},
|
|
49
|
-
"./runtime": {
|
|
50
|
-
"types": "./runtime/index.d.ts",
|
|
51
|
-
"default": "./fesm2022/acorex-platform-runtime.mjs"
|
|
52
|
-
},
|
|
53
49
|
"./widgets": {
|
|
54
50
|
"types": "./widgets/index.d.ts",
|
|
55
51
|
"default": "./fesm2022/acorex-platform-widgets.mjs"
|
|
56
52
|
},
|
|
53
|
+
"./runtime": {
|
|
54
|
+
"types": "./runtime/index.d.ts",
|
|
55
|
+
"default": "./fesm2022/acorex-platform-runtime.mjs"
|
|
56
|
+
},
|
|
57
57
|
"./workflow": {
|
|
58
58
|
"types": "./workflow/index.d.ts",
|
|
59
59
|
"default": "./fesm2022/acorex-platform-workflow.mjs"
|