@acorex/platform 20.0.1 → 20.0.3
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 +40 -71
- package/core/index.d.ts +244 -217
- package/fesm2022/acorex-platform-common.mjs +9 -26
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +56 -56
- 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 +8 -6
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-BFIGLwd9.mjs → acorex-platform-themes-default-entity-master-create-view.component-CzSqhYfE.mjs} +3 -3
- package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-BFIGLwd9.mjs.map → acorex-platform-themes-default-entity-master-create-view.component-CzSqhYfE.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-BuyMyK_I.mjs → acorex-platform-themes-default-entity-master-list-view.component-BU_uiU_3.mjs} +9 -269
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-BU_uiU_3.mjs.map +1 -0
- package/fesm2022/{acorex-platform-themes-default-entity-master-modify-view.component-CHHmHz2a.mjs → acorex-platform-themes-default-entity-master-modify-view.component-12xcM8FJ.mjs} +3 -3
- package/fesm2022/{acorex-platform-themes-default-entity-master-modify-view.component-CHHmHz2a.mjs.map → acorex-platform-themes-default-entity-master-modify-view.component-12xcM8FJ.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-single-view.component-CnjDBPeT.mjs → acorex-platform-themes-default-entity-master-single-view.component-cvoKMP84.mjs} +3 -3
- package/fesm2022/{acorex-platform-themes-default-entity-master-single-view.component-CnjDBPeT.mjs.map → acorex-platform-themes-default-entity-master-single-view.component-cvoKMP84.mjs.map} +1 -1
- package/fesm2022/acorex-platform-themes-default.mjs +10 -10
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets.mjs +26 -8
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +13 -44
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/layout/components/index.d.ts +2 -2
- package/layout/entity/index.d.ts +3 -3
- package/package.json +1 -5
- package/widgets/index.d.ts +4 -0
- package/workflow/index.d.ts +11 -3
- package/fesm2022/acorex-platform-layout-filters.mjs +0 -163
- package/fesm2022/acorex-platform-layout-filters.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-BuyMyK_I.mjs.map +0 -1
- package/layout/filters/README.md +0 -3
- package/layout/filters/index.d.ts +0 -34
package/common/index.d.ts
CHANGED
|
@@ -1176,37 +1176,6 @@ declare abstract class AXPFileStorageService {
|
|
|
1176
1176
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXPFileStorageService>;
|
|
1177
1177
|
}
|
|
1178
1178
|
|
|
1179
|
-
type AXPFilterOperation = {
|
|
1180
|
-
type: 'equal' | 'isNull' | 'isEmpty' | 'lt' | 'lte' | 'gt' | 'gte' | 'startsWith' | 'endsWith' | 'contains';
|
|
1181
|
-
negative?: boolean;
|
|
1182
|
-
};
|
|
1183
|
-
type AXPFilterLogic = 'and' | 'or';
|
|
1184
|
-
interface AXPFilterDefinition {
|
|
1185
|
-
title: string;
|
|
1186
|
-
field: string;
|
|
1187
|
-
value?: unknown;
|
|
1188
|
-
isParametric?: boolean;
|
|
1189
|
-
operator: AXPFilterOperation;
|
|
1190
|
-
logic?: AXPFilterLogic;
|
|
1191
|
-
filters?: AXPFilterDefinition[];
|
|
1192
|
-
icon?: string;
|
|
1193
|
-
widget: AXPWidgetNode;
|
|
1194
|
-
filterType: {
|
|
1195
|
-
advance: boolean;
|
|
1196
|
-
inline: boolean;
|
|
1197
|
-
};
|
|
1198
|
-
}
|
|
1199
|
-
interface AXPFilterQuery extends Pick<AXPFilterDefinition, 'field' | 'value' | 'operator' | 'logic'> {
|
|
1200
|
-
filters?: AXPFilterQuery[];
|
|
1201
|
-
}
|
|
1202
|
-
|
|
1203
|
-
declare class AXPFiltersProviderService {
|
|
1204
|
-
getAll(): Promise<AXPFilterDefinition[]>;
|
|
1205
|
-
execute(): Promise<AXPFilterQuery[]>;
|
|
1206
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXPFiltersProviderService, never>;
|
|
1207
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<AXPFiltersProviderService>;
|
|
1208
|
-
}
|
|
1209
|
-
|
|
1210
1179
|
interface AXPFileType {
|
|
1211
1180
|
/**
|
|
1212
1181
|
* The unique identifier for the file type.
|
|
@@ -1275,6 +1244,44 @@ declare class AXPFileTypeProviderService implements AXPFileTypeInfoProvider {
|
|
|
1275
1244
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXPFileTypeProviderService>;
|
|
1276
1245
|
}
|
|
1277
1246
|
|
|
1247
|
+
interface AXPLockRequest {
|
|
1248
|
+
refId: string;
|
|
1249
|
+
refType: string;
|
|
1250
|
+
type: AXPLockType;
|
|
1251
|
+
date: string;
|
|
1252
|
+
expireAt?: Date;
|
|
1253
|
+
lockedBy: AXPUserReference;
|
|
1254
|
+
}
|
|
1255
|
+
interface AXPUnLockRequest {
|
|
1256
|
+
refId: string;
|
|
1257
|
+
refType: string;
|
|
1258
|
+
type: AXPLockType;
|
|
1259
|
+
}
|
|
1260
|
+
interface AXPLockGetInfoRequest {
|
|
1261
|
+
refId: string;
|
|
1262
|
+
refType: string;
|
|
1263
|
+
type?: AXPLockType;
|
|
1264
|
+
}
|
|
1265
|
+
type AXPLockType = 'admin' | 'user';
|
|
1266
|
+
interface AXPLockInfo {
|
|
1267
|
+
id: string;
|
|
1268
|
+
refId: string;
|
|
1269
|
+
refType: string;
|
|
1270
|
+
type: AXPLockType;
|
|
1271
|
+
date: string;
|
|
1272
|
+
expireAt?: Date;
|
|
1273
|
+
lockedBy: AXPApplicationUserReference;
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
declare abstract class AXPLockService {
|
|
1277
|
+
abstract lock(request: AXPLockRequest): Promise<AXPLockInfo>;
|
|
1278
|
+
abstract unlock(request: AXPUnLockRequest): Promise<void>;
|
|
1279
|
+
abstract check(request: AXPLockGetInfoRequest): Promise<boolean>;
|
|
1280
|
+
abstract getInfo(request: AXPLockGetInfoRequest): Promise<AXPLockInfo>;
|
|
1281
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPLockService, never>;
|
|
1282
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPLockService>;
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1278
1285
|
declare class AXPClipBoardService {
|
|
1279
1286
|
private toast;
|
|
1280
1287
|
copy(title: string, value: string): void;
|
|
@@ -1437,43 +1444,5 @@ declare class AXMWorkflowErrorHandler implements AXPErrorHandler {
|
|
|
1437
1444
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXMWorkflowErrorHandler>;
|
|
1438
1445
|
}
|
|
1439
1446
|
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
refType: string;
|
|
1443
|
-
type: AXPLockType;
|
|
1444
|
-
date: string;
|
|
1445
|
-
expireAt?: Date;
|
|
1446
|
-
lockedBy: AXPUserReference;
|
|
1447
|
-
}
|
|
1448
|
-
interface AXPUnLockRequest {
|
|
1449
|
-
refId: string;
|
|
1450
|
-
refType: string;
|
|
1451
|
-
type: AXPLockType;
|
|
1452
|
-
}
|
|
1453
|
-
interface AXPLockGetInfoRequest {
|
|
1454
|
-
refId: string;
|
|
1455
|
-
refType: string;
|
|
1456
|
-
type?: AXPLockType;
|
|
1457
|
-
}
|
|
1458
|
-
type AXPLockType = 'admin' | 'user';
|
|
1459
|
-
interface AXPLockInfo {
|
|
1460
|
-
id: string;
|
|
1461
|
-
refId: string;
|
|
1462
|
-
refType: string;
|
|
1463
|
-
type: AXPLockType;
|
|
1464
|
-
date: string;
|
|
1465
|
-
expireAt?: Date;
|
|
1466
|
-
lockedBy: AXPApplicationUserReference;
|
|
1467
|
-
}
|
|
1468
|
-
|
|
1469
|
-
declare abstract class AXPLockService {
|
|
1470
|
-
abstract lock(request: AXPLockRequest): Promise<AXPLockInfo>;
|
|
1471
|
-
abstract unlock(request: AXPUnLockRequest): Promise<void>;
|
|
1472
|
-
abstract check(request: AXPLockGetInfoRequest): Promise<boolean>;
|
|
1473
|
-
abstract getInfo(request: AXPLockGetInfoRequest): Promise<AXPLockInfo>;
|
|
1474
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXPLockService, never>;
|
|
1475
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<AXPLockService>;
|
|
1476
|
-
}
|
|
1477
|
-
|
|
1478
|
-
export { ALL_DEFAULT_OPERATORS, AXMWorkflowErrorHandler, AXPCleanNestedFilters, AXPClipBoardService, AXPCommonModule, AXPCustomOperatorService, AXPCustomOperatorServiceImpl, AXPDataProvider, AXPDialogConfirmAction, AXPEntityCommandScope, AXPEntityQueryType, AXPErrorHandlerRegistryService, AXPExportService, AXPFileStorageService, AXPFileStorageStatus, AXPFileTypeProviderService, AXPFilterOperatorMiddlewareService, AXPFilterOperatorMiddlewareServiceImpl, AXPFiltersProviderService, AXPFooterTextSlotComponent, AXPGlobalErrorHandler, AXPGridLayoutDirective, AXPHomePageModule, AXPHomePageService, AXPLockService, AXPLogoComponent, AXPMenuProviderService, AXPMenuSearchDefinitionProvider, AXPMenuSearchProvider, AXPMenuService, AXPNavBarSlotComponent, AXPNavigateWorkflow, AXPPlatformDefaultConfigs, AXPRedirectEvent, AXPRefreshEvent, AXPRegionalService, AXPRelationshipCardinality, AXPRelationshipKind, AXPSearchCommandProvider, AXPSearchDefinitionActionBuilder, AXPSearchDefinitionBuilder, AXPSearchDefinitionProviderContext, AXPSearchDefinitionProviderService, AXPSearchService, AXPSettingDefaultValueProvider, AXPSettingDefinitionGroupBuilder, AXPSettingDefinitionProviderContext, AXPSettingDefinitionProviderService, AXPSettingDefinitionSectionBuilder, AXPSettingService, AXPStickyDirective, AXPToastAction, AXPWorkflowNavigateAction, AXPWorkflowRouterNavigateAction, AXP_APP_VERSION_PROVIDER, AXP_FILE_TYPE_INFO_PROVIDER, AXP_HOME_PAGES, AXP_HOME_PAGE_DEFAULT_KEY, AXP_MENU_PROVIDER, AXP_PLATFORM_CONFIG_TOKEN, AXP_ROOT_CONFIG_TOKEN, AXP_SEARCH_DEFINITION_PROVIDER, AXP_SEARCH_PROVIDER, AXP_SETTING_DEFINITION_PROVIDER, AXP_SETTING_VALUE_PROVIDER, BETWEEN_OPER, BOOLEAN_OPERATORS, CONTAINS_OPER, DATE_OPERATORS, ENDS_WITH_OPER, ENVIRONMENT, EQ_OPER, GTE_OPER, GT_OPER, IS_EMPTY_OPER, IS_NOT_EMPTY_OPER, LTE_OPER, LT_OPER, NOT_CONTAINS_OPER, NOT_EQ_OPER, NUMBER_OPERATORS, STARTS_WITH_OPER, STRING_OPERATORS, configPlatform, createAllQueryView, createQueryView, getEntityInfo, provideDynamicHomePage, resolveActionLook };
|
|
1479
|
-
export type { AXEntityPropertyWidget, AXPAggregate, AXPAppVersion, AXPAppVersionProvider, AXPApplication, AXPCategoryEntity, AXPCity, AXPCommandActionCallback, AXPCommandActionDisplay, AXPCommandActionLook, AXPCommandActionPriority, AXPCommandActionType, AXPCommonModuleConfigs, AXPCountry, AXPCurrency, AXPDomToImageOptions, AXPEntity, AXPEntityAction, AXPEntityCommand, AXPEntityDetailListView, AXPEntityMasterCreateLayoutView, AXPEntityMasterLayoutView, AXPEntityMasterListView, AXPEntityMasterSingleLayoutView, AXPEntityMasterUpdateLayoutView, AXPEntityProperty, AXPEntityPropertyCreateView, AXPEntityPropertyGroup, AXPEntityPropertyLayoutConfig, AXPEntityPropertyUpdateView, AXPEntityPropertyView, AXPEntityQuery, AXPEntitySectionView, AXPEntityTableColumn, AXPEntityVersionHistory, AXPErrorHandler, AXPFileExtension, AXPFileStorageCreateRequest, AXPFileStorageFindRequest, AXPFileStorageInfo, AXPFileStorageUpdateRequest, AXPFileType, AXPFileTypeInfoProvider, AXPFilterDefinition, AXPFilterLogic, AXPFilterOperation, AXPFilterOperator, AXPFilterQuery, AXPGeoLocation, AXPGridLayoutOptions, AXPGridLayoutPositions, AXPGroupSearchResult, AXPHomePageDefinition, AXPLanguage, AXPLocaleProfile, AXPLockGetInfoRequest, AXPLockInfo, AXPLockRequest, AXPLockType, AXPMenuFinderResult, AXPMenuInsertion, AXPMenuItem, AXPMenuItemCommand, AXPMenuItemWithParent, AXPMenuProvider, AXPMenuProviderContext, AXPMenuType, AXPModule, AXPPlatformConfigs, AXPProvince, AXPQueryFilter, AXPQuerySort, AXPQueryView, AXPRelatedEntity, AXPRelationship, AXPRootConfigs, AXPSearchAction, AXPSearchDefinition, AXPSearchDefinitionDisplayFormat, AXPSearchDefinitionProvider, AXPSearchDisplayGroupResult, AXPSearchDisplayResult, AXPSearchDisplayResultForSave, AXPSearchParentResult, AXPSearchProvider, AXPSearchResult, AXPSettingChangedEvent, AXPSettingDefinition, AXPSettingDefinitionGroup, AXPSettingDefinitionProvider, AXPSettingDefinitionSection, AXPSettingServiceInterface, AXPSettingValue, AXPSettingValueProvider, AXPTimeZone, AXPUnLockRequest };
|
|
1447
|
+
export { ALL_DEFAULT_OPERATORS, AXMWorkflowErrorHandler, AXPCleanNestedFilters, AXPClipBoardService, AXPCommonModule, AXPCustomOperatorService, AXPCustomOperatorServiceImpl, AXPDataProvider, AXPDialogConfirmAction, AXPEntityCommandScope, AXPEntityQueryType, AXPErrorHandlerRegistryService, AXPExportService, AXPFileStorageService, AXPFileStorageStatus, AXPFileTypeProviderService, AXPFilterOperatorMiddlewareService, AXPFilterOperatorMiddlewareServiceImpl, AXPFooterTextSlotComponent, AXPGlobalErrorHandler, AXPGridLayoutDirective, AXPHomePageModule, AXPHomePageService, AXPLockService, AXPLogoComponent, AXPMenuProviderService, AXPMenuSearchDefinitionProvider, AXPMenuSearchProvider, AXPMenuService, AXPNavBarSlotComponent, AXPNavigateWorkflow, AXPPlatformDefaultConfigs, AXPRedirectEvent, AXPRefreshEvent, AXPRegionalService, AXPRelationshipCardinality, AXPRelationshipKind, AXPSearchCommandProvider, AXPSearchDefinitionActionBuilder, AXPSearchDefinitionBuilder, AXPSearchDefinitionProviderContext, AXPSearchDefinitionProviderService, AXPSearchService, AXPSettingDefaultValueProvider, AXPSettingDefinitionGroupBuilder, AXPSettingDefinitionProviderContext, AXPSettingDefinitionProviderService, AXPSettingDefinitionSectionBuilder, AXPSettingService, AXPStickyDirective, AXPToastAction, AXPWorkflowNavigateAction, AXPWorkflowRouterNavigateAction, AXP_APP_VERSION_PROVIDER, AXP_FILE_TYPE_INFO_PROVIDER, AXP_HOME_PAGES, AXP_HOME_PAGE_DEFAULT_KEY, AXP_MENU_PROVIDER, AXP_PLATFORM_CONFIG_TOKEN, AXP_ROOT_CONFIG_TOKEN, AXP_SEARCH_DEFINITION_PROVIDER, AXP_SEARCH_PROVIDER, AXP_SETTING_DEFINITION_PROVIDER, AXP_SETTING_VALUE_PROVIDER, BETWEEN_OPER, BOOLEAN_OPERATORS, CONTAINS_OPER, DATE_OPERATORS, ENDS_WITH_OPER, ENVIRONMENT, EQ_OPER, GTE_OPER, GT_OPER, IS_EMPTY_OPER, IS_NOT_EMPTY_OPER, LTE_OPER, LT_OPER, NOT_CONTAINS_OPER, NOT_EQ_OPER, NUMBER_OPERATORS, STARTS_WITH_OPER, STRING_OPERATORS, configPlatform, createAllQueryView, createQueryView, getEntityInfo, provideDynamicHomePage, resolveActionLook };
|
|
1448
|
+
export type { AXEntityPropertyWidget, AXPAggregate, AXPAppVersion, AXPAppVersionProvider, AXPApplication, AXPCategoryEntity, AXPCity, AXPCommandActionCallback, AXPCommandActionDisplay, AXPCommandActionLook, AXPCommandActionPriority, AXPCommandActionType, AXPCommonModuleConfigs, AXPCountry, AXPCurrency, AXPDomToImageOptions, AXPEntity, AXPEntityAction, AXPEntityCommand, AXPEntityDetailListView, AXPEntityMasterCreateLayoutView, AXPEntityMasterLayoutView, AXPEntityMasterListView, AXPEntityMasterSingleLayoutView, AXPEntityMasterUpdateLayoutView, AXPEntityProperty, AXPEntityPropertyCreateView, AXPEntityPropertyGroup, AXPEntityPropertyLayoutConfig, AXPEntityPropertyUpdateView, AXPEntityPropertyView, AXPEntityQuery, AXPEntitySectionView, AXPEntityTableColumn, AXPEntityVersionHistory, AXPErrorHandler, AXPFileExtension, AXPFileStorageCreateRequest, AXPFileStorageFindRequest, AXPFileStorageInfo, AXPFileStorageUpdateRequest, AXPFileType, AXPFileTypeInfoProvider, AXPFilterOperator, AXPGeoLocation, AXPGridLayoutOptions, AXPGridLayoutPositions, AXPGroupSearchResult, AXPHomePageDefinition, AXPLanguage, AXPLocaleProfile, AXPLockGetInfoRequest, AXPLockInfo, AXPLockRequest, AXPLockType, AXPMenuFinderResult, AXPMenuInsertion, AXPMenuItem, AXPMenuItemCommand, AXPMenuItemWithParent, AXPMenuProvider, AXPMenuProviderContext, AXPMenuType, AXPModule, AXPPlatformConfigs, AXPProvince, AXPQueryFilter, AXPQuerySort, AXPQueryView, AXPRelatedEntity, AXPRelationship, AXPRootConfigs, AXPSearchAction, AXPSearchDefinition, AXPSearchDefinitionDisplayFormat, AXPSearchDefinitionProvider, AXPSearchDisplayGroupResult, AXPSearchDisplayResult, AXPSearchDisplayResultForSave, AXPSearchParentResult, AXPSearchProvider, AXPSearchResult, AXPSettingChangedEvent, AXPSettingDefinition, AXPSettingDefinitionGroup, AXPSettingDefinitionProvider, AXPSettingDefinitionSection, AXPSettingServiceInterface, AXPSettingValue, AXPSettingValueProvider, AXPTimeZone, AXPUnLockRequest };
|
package/core/index.d.ts
CHANGED
|
@@ -78,222 +78,6 @@ type AXPValueTransformerFunctions = {
|
|
|
78
78
|
};
|
|
79
79
|
declare function objectKeyValueTransforms(keyName: string): AXPValueTransformerFunctions;
|
|
80
80
|
|
|
81
|
-
type AXPPartialNested<T> = {
|
|
82
|
-
[K in keyof T]?: T[K] extends object ? AXPPartialNested<T[K]> : T[K];
|
|
83
|
-
};
|
|
84
|
-
declare function getNestedKeys(obj: any, prefix?: string): string[];
|
|
85
|
-
type AXPExpression = string;
|
|
86
|
-
type AXPMetaData = Record<string, any>;
|
|
87
|
-
type AXPOptionsData = Record<string, any>;
|
|
88
|
-
interface AXPValueUnit {
|
|
89
|
-
name: string;
|
|
90
|
-
title: string;
|
|
91
|
-
ratio: number;
|
|
92
|
-
order: number;
|
|
93
|
-
}
|
|
94
|
-
interface AXPValueUnits {
|
|
95
|
-
name: string;
|
|
96
|
-
title: string;
|
|
97
|
-
items: AXPValueUnit[];
|
|
98
|
-
default: string;
|
|
99
|
-
}
|
|
100
|
-
interface AXPEntityReference {
|
|
101
|
-
id: string;
|
|
102
|
-
type: string;
|
|
103
|
-
}
|
|
104
|
-
interface AXPUserReference {
|
|
105
|
-
id: string;
|
|
106
|
-
type: string;
|
|
107
|
-
}
|
|
108
|
-
interface AXPApplicationUserReference {
|
|
109
|
-
id: string;
|
|
110
|
-
name: string;
|
|
111
|
-
title: string;
|
|
112
|
-
}
|
|
113
|
-
type AXPContentType = 'text' | 'image' | 'file' | 'video' | 'link';
|
|
114
|
-
interface AXPContent {
|
|
115
|
-
content: string;
|
|
116
|
-
contentType: AXPContentType;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
type AXPDataSource = string | AXDataSource | any[];
|
|
120
|
-
interface AXPPagedListResult<T = any> {
|
|
121
|
-
items: T[];
|
|
122
|
-
total: number;
|
|
123
|
-
}
|
|
124
|
-
interface AXPQueryRequest {
|
|
125
|
-
skip: number;
|
|
126
|
-
take: number;
|
|
127
|
-
sort?: AXDataSourceSortOption[];
|
|
128
|
-
filter?: AXDataSourceFilterOption;
|
|
129
|
-
params?: {
|
|
130
|
-
[key: string]: string;
|
|
131
|
-
};
|
|
132
|
-
}
|
|
133
|
-
type AXPDataType = 'string' | 'number' | 'object' | 'boolean' | 'array';
|
|
134
|
-
|
|
135
|
-
type AXPWidgetTrigger = {
|
|
136
|
-
event: string;
|
|
137
|
-
action: string | string[];
|
|
138
|
-
disabled?: boolean;
|
|
139
|
-
};
|
|
140
|
-
type AXPWidgetTriggers = AXPWidgetTrigger[];
|
|
141
|
-
|
|
142
|
-
type AXPActionMenuItem = {
|
|
143
|
-
name?: string;
|
|
144
|
-
title: string;
|
|
145
|
-
icon?: string;
|
|
146
|
-
color?: string;
|
|
147
|
-
break?: boolean;
|
|
148
|
-
items?: AXPActionMenuItem[];
|
|
149
|
-
command?: AXPExecuteCommand;
|
|
150
|
-
disabled?: boolean | string;
|
|
151
|
-
visible?: boolean | string;
|
|
152
|
-
policy?: string;
|
|
153
|
-
};
|
|
154
|
-
type AXPBackButton = {
|
|
155
|
-
title: string;
|
|
156
|
-
};
|
|
157
|
-
type AXPBreadcrumbItem = {
|
|
158
|
-
name?: string;
|
|
159
|
-
title: string;
|
|
160
|
-
icon?: string;
|
|
161
|
-
command?: AXPExecuteCommand;
|
|
162
|
-
};
|
|
163
|
-
type AXPExecuteCommand = {
|
|
164
|
-
name: string;
|
|
165
|
-
options?: AXPMetaData;
|
|
166
|
-
metadata?: AXPMetaData;
|
|
167
|
-
};
|
|
168
|
-
interface AXPExecuteCommandResult<T = any> {
|
|
169
|
-
success: boolean;
|
|
170
|
-
result?: T;
|
|
171
|
-
error?: {
|
|
172
|
-
code?: string;
|
|
173
|
-
message?: string;
|
|
174
|
-
details?: any;
|
|
175
|
-
};
|
|
176
|
-
}
|
|
177
|
-
interface AXPQueryFetchResult<T = any> {
|
|
178
|
-
success: boolean;
|
|
179
|
-
result?: {
|
|
180
|
-
items?: T[];
|
|
181
|
-
total?: number;
|
|
182
|
-
};
|
|
183
|
-
error?: {
|
|
184
|
-
code?: string;
|
|
185
|
-
message?: string;
|
|
186
|
-
details?: any;
|
|
187
|
-
};
|
|
188
|
-
}
|
|
189
|
-
type AXPNavigateActionOptions = {
|
|
190
|
-
router: {
|
|
191
|
-
path: string;
|
|
192
|
-
extras?: NavigationExtras & {
|
|
193
|
-
target?: string;
|
|
194
|
-
};
|
|
195
|
-
};
|
|
196
|
-
modal: {
|
|
197
|
-
component: Type<any>;
|
|
198
|
-
title: string;
|
|
199
|
-
options?: any;
|
|
200
|
-
};
|
|
201
|
-
};
|
|
202
|
-
interface AXPNavigateActionCommand<T extends keyof AXPNavigateActionOptions> {
|
|
203
|
-
type: T;
|
|
204
|
-
options: AXPNavigateActionOptions[T];
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
interface AXPGridPlacement {
|
|
208
|
-
colStart?: number;
|
|
209
|
-
colEnd?: number;
|
|
210
|
-
colSpan?: number;
|
|
211
|
-
rowStart?: number;
|
|
212
|
-
rowEnd?: number;
|
|
213
|
-
rowSpan?: number;
|
|
214
|
-
order?: string | number;
|
|
215
|
-
}
|
|
216
|
-
interface AXPGridLayoutOptions {
|
|
217
|
-
placement?: {
|
|
218
|
-
md?: AXPGridPlacement;
|
|
219
|
-
lg?: AXPGridPlacement;
|
|
220
|
-
xl?: AXPGridPlacement;
|
|
221
|
-
xxl?: AXPGridPlacement;
|
|
222
|
-
xxxl?: AXPGridPlacement;
|
|
223
|
-
};
|
|
224
|
-
}
|
|
225
|
-
type AXPFlowDirection = 'vertical' | 'horizontal';
|
|
226
|
-
type AXPContentDirection = 'rtl' | 'ltr';
|
|
227
|
-
interface AXPLayoutFlexStyles {
|
|
228
|
-
direction: 'row' | 'row-reverse' | 'column' | 'column-reverse';
|
|
229
|
-
wrap: 'nowrap' | 'wrap' | 'wrap-reverse';
|
|
230
|
-
justify: 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around';
|
|
231
|
-
align: 'stretch' | 'flex-start' | 'flex-end' | 'center' | 'baseline';
|
|
232
|
-
gap: string;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
interface AXPLogoConfig {
|
|
236
|
-
}
|
|
237
|
-
declare class AXPImageUrlLogoConfig implements AXPLogoConfig {
|
|
238
|
-
url: string;
|
|
239
|
-
width?: number | undefined;
|
|
240
|
-
height?: number | undefined;
|
|
241
|
-
constructor(url: string, width?: number | undefined, height?: number | undefined);
|
|
242
|
-
}
|
|
243
|
-
declare class AXPComponentLogoConfig implements AXPLogoConfig {
|
|
244
|
-
component: Type<any>;
|
|
245
|
-
height?: number | undefined;
|
|
246
|
-
width?: number | undefined;
|
|
247
|
-
constructor(component: Type<any>);
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
type AXPPlatformScopeKey = 'C' | 'G' | 'P' | 'T' | 'U';
|
|
251
|
-
declare enum AXPPlatformScope {
|
|
252
|
-
Environment = "C",
|
|
253
|
-
Global = "G",
|
|
254
|
-
Platform = "P",
|
|
255
|
-
Tenant = "T",
|
|
256
|
-
User = "U"
|
|
257
|
-
}
|
|
258
|
-
declare function resolvePlatformScopeKey(name: string): AXPPlatformScopeKey;
|
|
259
|
-
declare function resolvePlatformScopeName(scope: AXPPlatformScopeKey): string;
|
|
260
|
-
|
|
261
|
-
type AXPValidationRule = {
|
|
262
|
-
rule: string;
|
|
263
|
-
message?: string;
|
|
264
|
-
options?: any;
|
|
265
|
-
disabled?: boolean | AXPExpression;
|
|
266
|
-
};
|
|
267
|
-
type AXPValidationRules = AXPValidationRule[];
|
|
268
|
-
interface AXPRequiredValidationRule extends AXPValidationRule {
|
|
269
|
-
rule: 'required';
|
|
270
|
-
}
|
|
271
|
-
interface AXPMinLengthValidationRule extends AXPValidationRule {
|
|
272
|
-
rule: 'minLength';
|
|
273
|
-
options: {
|
|
274
|
-
minLength: number | AXPExpression;
|
|
275
|
-
};
|
|
276
|
-
}
|
|
277
|
-
interface AXPMaxLengthValidationRule extends AXPValidationRule {
|
|
278
|
-
rule: 'maxLength';
|
|
279
|
-
options: {
|
|
280
|
-
maxLength: number | AXPExpression;
|
|
281
|
-
};
|
|
282
|
-
}
|
|
283
|
-
interface AXPEqualValidationRule<T> extends AXPValidationRule {
|
|
284
|
-
rule: 'equal';
|
|
285
|
-
options: {
|
|
286
|
-
value: T | AXPExpression;
|
|
287
|
-
};
|
|
288
|
-
}
|
|
289
|
-
interface AXPReqexValidationRule extends AXPValidationRule {
|
|
290
|
-
rule: 'regex';
|
|
291
|
-
options: {
|
|
292
|
-
value: string;
|
|
293
|
-
};
|
|
294
|
-
}
|
|
295
|
-
type AXPStringValidationRules = (AXPRequiredValidationRule | AXPMinLengthValidationRule | AXPMaxLengthValidationRule | AXPEqualValidationRule<string> | AXPReqexValidationRule)[];
|
|
296
|
-
|
|
297
81
|
declare enum AXPSystemActionType {
|
|
298
82
|
View = "view",
|
|
299
83
|
Create = "create",
|
|
@@ -967,6 +751,67 @@ declare function getSystemActions(type: AXPSystemActionType): {
|
|
|
967
751
|
};
|
|
968
752
|
} | undefined;
|
|
969
753
|
|
|
754
|
+
type AXPPartialNested<T> = {
|
|
755
|
+
[K in keyof T]?: T[K] extends object ? AXPPartialNested<T[K]> : T[K];
|
|
756
|
+
};
|
|
757
|
+
declare function getNestedKeys(obj: any, prefix?: string): string[];
|
|
758
|
+
type AXPExpression = string;
|
|
759
|
+
type AXPMetaData = Record<string, any>;
|
|
760
|
+
type AXPOptionsData = Record<string, any>;
|
|
761
|
+
interface AXPValueUnit {
|
|
762
|
+
name: string;
|
|
763
|
+
title: string;
|
|
764
|
+
ratio: number;
|
|
765
|
+
order: number;
|
|
766
|
+
}
|
|
767
|
+
interface AXPValueUnits {
|
|
768
|
+
name: string;
|
|
769
|
+
title: string;
|
|
770
|
+
items: AXPValueUnit[];
|
|
771
|
+
default: string;
|
|
772
|
+
}
|
|
773
|
+
interface AXPEntityReference {
|
|
774
|
+
id: string;
|
|
775
|
+
type: string;
|
|
776
|
+
}
|
|
777
|
+
interface AXPUserReference {
|
|
778
|
+
id: string;
|
|
779
|
+
type: string;
|
|
780
|
+
}
|
|
781
|
+
interface AXPApplicationUserReference {
|
|
782
|
+
id: string;
|
|
783
|
+
name: string;
|
|
784
|
+
title: string;
|
|
785
|
+
}
|
|
786
|
+
type AXPContentType = 'text' | 'image' | 'file' | 'video' | 'link';
|
|
787
|
+
interface AXPContent {
|
|
788
|
+
content: string;
|
|
789
|
+
contentType: AXPContentType;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
type AXPDataSource = string | AXDataSource | any[];
|
|
793
|
+
interface AXPPagedListResult<T = any> {
|
|
794
|
+
items: T[];
|
|
795
|
+
total: number;
|
|
796
|
+
}
|
|
797
|
+
interface AXPQueryRequest {
|
|
798
|
+
skip: number;
|
|
799
|
+
take: number;
|
|
800
|
+
sort?: AXDataSourceSortOption[];
|
|
801
|
+
filter?: AXDataSourceFilterOption;
|
|
802
|
+
params?: {
|
|
803
|
+
[key: string]: string;
|
|
804
|
+
};
|
|
805
|
+
}
|
|
806
|
+
type AXPDataType = 'string' | 'number' | 'object' | 'boolean' | 'array';
|
|
807
|
+
|
|
808
|
+
type AXPWidgetTrigger = {
|
|
809
|
+
event: string;
|
|
810
|
+
action: string | string[];
|
|
811
|
+
disabled?: boolean;
|
|
812
|
+
};
|
|
813
|
+
type AXPWidgetTriggers = AXPWidgetTrigger[];
|
|
814
|
+
|
|
970
815
|
type AXPFileStatus = 'attached' | 'uploading' | 'uploaded' | 'deleted' | 'remote';
|
|
971
816
|
interface AXPFileSource {
|
|
972
817
|
kind: 'blob' | 'url' | 'preview' | 'none' | 'fileId';
|
|
@@ -980,6 +825,188 @@ interface AXPFileListItem {
|
|
|
980
825
|
source?: AXPFileSource;
|
|
981
826
|
}
|
|
982
827
|
|
|
828
|
+
type AXPFilterOperation = {
|
|
829
|
+
type: 'equal' | 'isNull' | 'isEmpty' | 'lt' | 'lte' | 'gt' | 'gte' | 'startsWith' | 'endsWith' | 'contains';
|
|
830
|
+
negative?: boolean;
|
|
831
|
+
};
|
|
832
|
+
type AXPFilterLogic = 'and' | 'or';
|
|
833
|
+
interface AXPFilterDefinition {
|
|
834
|
+
title: string;
|
|
835
|
+
field: string;
|
|
836
|
+
value?: unknown;
|
|
837
|
+
isParametric?: boolean;
|
|
838
|
+
operator: AXPFilterOperation;
|
|
839
|
+
logic?: AXPFilterLogic;
|
|
840
|
+
filters?: AXPFilterDefinition[];
|
|
841
|
+
icon?: string;
|
|
842
|
+
widget: {
|
|
843
|
+
type: string;
|
|
844
|
+
options?: AXPOptionsData;
|
|
845
|
+
};
|
|
846
|
+
filterType: {
|
|
847
|
+
advance: boolean;
|
|
848
|
+
inline: boolean;
|
|
849
|
+
};
|
|
850
|
+
}
|
|
851
|
+
interface AXPFilterQuery extends Pick<AXPFilterDefinition, 'field' | 'value' | 'operator' | 'logic'> {
|
|
852
|
+
filters?: AXPFilterQuery[];
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
type AXPActionMenuItem = {
|
|
856
|
+
name?: string;
|
|
857
|
+
title: string;
|
|
858
|
+
icon?: string;
|
|
859
|
+
color?: string;
|
|
860
|
+
break?: boolean;
|
|
861
|
+
items?: AXPActionMenuItem[];
|
|
862
|
+
command?: AXPExecuteCommand;
|
|
863
|
+
disabled?: boolean | string;
|
|
864
|
+
visible?: boolean | string;
|
|
865
|
+
policy?: string;
|
|
866
|
+
};
|
|
867
|
+
type AXPBackButton = {
|
|
868
|
+
title: string;
|
|
869
|
+
};
|
|
870
|
+
type AXPBreadcrumbItem = {
|
|
871
|
+
name?: string;
|
|
872
|
+
title: string;
|
|
873
|
+
icon?: string;
|
|
874
|
+
command?: AXPExecuteCommand;
|
|
875
|
+
};
|
|
876
|
+
type AXPExecuteCommand = {
|
|
877
|
+
name: string;
|
|
878
|
+
options?: AXPMetaData;
|
|
879
|
+
metadata?: AXPMetaData;
|
|
880
|
+
};
|
|
881
|
+
interface AXPExecuteCommandResult<T = any> {
|
|
882
|
+
success: boolean;
|
|
883
|
+
result?: T;
|
|
884
|
+
error?: {
|
|
885
|
+
code?: string;
|
|
886
|
+
message?: string;
|
|
887
|
+
details?: any;
|
|
888
|
+
};
|
|
889
|
+
}
|
|
890
|
+
interface AXPQueryFetchResult<T = any> {
|
|
891
|
+
success: boolean;
|
|
892
|
+
result?: {
|
|
893
|
+
items?: T[];
|
|
894
|
+
total?: number;
|
|
895
|
+
};
|
|
896
|
+
error?: {
|
|
897
|
+
code?: string;
|
|
898
|
+
message?: string;
|
|
899
|
+
details?: any;
|
|
900
|
+
};
|
|
901
|
+
}
|
|
902
|
+
type AXPNavigateActionOptions = {
|
|
903
|
+
router: {
|
|
904
|
+
path: string;
|
|
905
|
+
extras?: NavigationExtras & {
|
|
906
|
+
target?: string;
|
|
907
|
+
};
|
|
908
|
+
};
|
|
909
|
+
modal: {
|
|
910
|
+
component: Type<any>;
|
|
911
|
+
title: string;
|
|
912
|
+
options?: any;
|
|
913
|
+
};
|
|
914
|
+
};
|
|
915
|
+
interface AXPNavigateActionCommand<T extends keyof AXPNavigateActionOptions> {
|
|
916
|
+
type: T;
|
|
917
|
+
options: AXPNavigateActionOptions[T];
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
interface AXPGridPlacement {
|
|
921
|
+
colStart?: number;
|
|
922
|
+
colEnd?: number;
|
|
923
|
+
colSpan?: number;
|
|
924
|
+
rowStart?: number;
|
|
925
|
+
rowEnd?: number;
|
|
926
|
+
rowSpan?: number;
|
|
927
|
+
order?: string | number;
|
|
928
|
+
}
|
|
929
|
+
interface AXPGridLayoutOptions {
|
|
930
|
+
placement?: {
|
|
931
|
+
md?: AXPGridPlacement;
|
|
932
|
+
lg?: AXPGridPlacement;
|
|
933
|
+
xl?: AXPGridPlacement;
|
|
934
|
+
xxl?: AXPGridPlacement;
|
|
935
|
+
xxxl?: AXPGridPlacement;
|
|
936
|
+
};
|
|
937
|
+
}
|
|
938
|
+
type AXPFlowDirection = 'vertical' | 'horizontal';
|
|
939
|
+
type AXPContentDirection = 'rtl' | 'ltr';
|
|
940
|
+
interface AXPLayoutFlexStyles {
|
|
941
|
+
direction: 'row' | 'row-reverse' | 'column' | 'column-reverse';
|
|
942
|
+
wrap: 'nowrap' | 'wrap' | 'wrap-reverse';
|
|
943
|
+
justify: 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around';
|
|
944
|
+
align: 'stretch' | 'flex-start' | 'flex-end' | 'center' | 'baseline';
|
|
945
|
+
gap: string;
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
interface AXPLogoConfig {
|
|
949
|
+
}
|
|
950
|
+
declare class AXPImageUrlLogoConfig implements AXPLogoConfig {
|
|
951
|
+
url: string;
|
|
952
|
+
width?: number | undefined;
|
|
953
|
+
height?: number | undefined;
|
|
954
|
+
constructor(url: string, width?: number | undefined, height?: number | undefined);
|
|
955
|
+
}
|
|
956
|
+
declare class AXPComponentLogoConfig implements AXPLogoConfig {
|
|
957
|
+
component: Type<any>;
|
|
958
|
+
height?: number | undefined;
|
|
959
|
+
width?: number | undefined;
|
|
960
|
+
constructor(component: Type<any>);
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
type AXPPlatformScopeKey = 'C' | 'G' | 'P' | 'T' | 'U';
|
|
964
|
+
declare enum AXPPlatformScope {
|
|
965
|
+
Environment = "C",
|
|
966
|
+
Global = "G",
|
|
967
|
+
Platform = "P",
|
|
968
|
+
Tenant = "T",
|
|
969
|
+
User = "U"
|
|
970
|
+
}
|
|
971
|
+
declare function resolvePlatformScopeKey(name: string): AXPPlatformScopeKey;
|
|
972
|
+
declare function resolvePlatformScopeName(scope: AXPPlatformScopeKey): string;
|
|
973
|
+
|
|
974
|
+
type AXPValidationRule = {
|
|
975
|
+
rule: string;
|
|
976
|
+
message?: string;
|
|
977
|
+
options?: any;
|
|
978
|
+
disabled?: boolean | AXPExpression;
|
|
979
|
+
};
|
|
980
|
+
type AXPValidationRules = AXPValidationRule[];
|
|
981
|
+
interface AXPRequiredValidationRule extends AXPValidationRule {
|
|
982
|
+
rule: 'required';
|
|
983
|
+
}
|
|
984
|
+
interface AXPMinLengthValidationRule extends AXPValidationRule {
|
|
985
|
+
rule: 'minLength';
|
|
986
|
+
options: {
|
|
987
|
+
minLength: number | AXPExpression;
|
|
988
|
+
};
|
|
989
|
+
}
|
|
990
|
+
interface AXPMaxLengthValidationRule extends AXPValidationRule {
|
|
991
|
+
rule: 'maxLength';
|
|
992
|
+
options: {
|
|
993
|
+
maxLength: number | AXPExpression;
|
|
994
|
+
};
|
|
995
|
+
}
|
|
996
|
+
interface AXPEqualValidationRule<T> extends AXPValidationRule {
|
|
997
|
+
rule: 'equal';
|
|
998
|
+
options: {
|
|
999
|
+
value: T | AXPExpression;
|
|
1000
|
+
};
|
|
1001
|
+
}
|
|
1002
|
+
interface AXPReqexValidationRule extends AXPValidationRule {
|
|
1003
|
+
rule: 'regex';
|
|
1004
|
+
options: {
|
|
1005
|
+
value: string;
|
|
1006
|
+
};
|
|
1007
|
+
}
|
|
1008
|
+
type AXPStringValidationRules = (AXPRequiredValidationRule | AXPMinLengthValidationRule | AXPMaxLengthValidationRule | AXPEqualValidationRule<string> | AXPReqexValidationRule)[];
|
|
1009
|
+
|
|
983
1010
|
interface AXPViewDefinition {
|
|
984
1011
|
key: string;
|
|
985
1012
|
title: string;
|
|
@@ -1300,4 +1327,4 @@ declare class AXPActivityLogService {
|
|
|
1300
1327
|
}
|
|
1301
1328
|
|
|
1302
1329
|
export { AXHighlightService, AXPActivityLogProvider, AXPActivityLogService, AXPAppStartUpProvider, AXPAppStartUpService, AXPBroadcastEventService, AXPComponentLogoConfig, AXPContentCheckerDirective, AXPContextChangeEvent, AXPContextStore, AXPCountdownPipe, AXPDataGenerator, AXPDataSourceDefinitionProviderService, AXPDblClickDirective, AXPElementDataDirective, AXPExpressionEvaluatorScopeProviderContext, AXPExpressionEvaluatorScopeProviderService, AXPExpressionEvaluatorService, AXPGridLayoutDirective, AXPImageUrlLogoConfig, AXPPlatformScope, AXPSystemActionType, AXPSystemActions, AXP_ACTIVITY_LOG_PROVIDER, AXP_DATASOURCE_DEFINITION_PROVIDER, AXP_EXPRESSION_EVALUATOR_SCOPE_PROVIDER, applyFilterArray, applyPagination, applyQueryArray, applySortArray, cleanDeep, extractNestedFieldsWildcard, extractTextFromHtml, extractValue, getNestedKeys, getSmart, getSystemActions, objectKeyValueTransforms, resolvePlatformScopeKey, resolvePlatformScopeName, setSmart };
|
|
1303
|
-
export type { AXPActionMenuItem, AXPActivityLog, AXPActivityLogChange, AXPApplicationUserReference, AXPBackButton, AXPBreadcrumbItem, AXPContent, AXPContentDirection, AXPContentType, AXPContextData, AXPContextState, AXPDataSource, AXPDataSourceDefinition, AXPDataSourceDefinitionProvider, AXPDataType, AXPEntityReference, AXPEqualValidationRule, AXPExecuteCommand, AXPExecuteCommandResult, AXPExpression, AXPExpressionEvaluatorScope, AXPExpressionEvaluatorScopeProvider, AXPExpressionEvaluatorScopeProviders, AXPFileListItem, AXPFileSource, AXPFileStatus, AXPFlowDirection, AXPGridLayoutOptions, AXPGridPlacement, AXPLayoutFlexStyles, AXPLogoConfig, AXPMaxLengthValidationRule, AXPMetaData, AXPMinLengthValidationRule, AXPNavigateActionCommand, AXPNavigateActionOptions, AXPOptionsData, AXPPagedListResult, AXPPartialNested, AXPPlatformScopeKey, AXPQueryFetchResult, AXPQueryRequest, AXPReqexValidationRule, AXPRequiredValidationRule, AXPStartUpTask, AXPStringValidationRules, AXPSystemAction, AXPUserReference, AXPValidationRule, AXPValidationRules, AXPValueTransformerFunction, AXPValueTransformerFunctions, AXPValueUnit, AXPValueUnits, AXPViewBlockDefinition, AXPViewDefinition, AXPViewFieldDefinition, AXPWidgetTrigger, AXPWidgetTriggers };
|
|
1330
|
+
export type { AXPActionMenuItem, AXPActivityLog, AXPActivityLogChange, AXPApplicationUserReference, AXPBackButton, AXPBreadcrumbItem, AXPContent, AXPContentDirection, AXPContentType, AXPContextData, AXPContextState, AXPDataSource, AXPDataSourceDefinition, AXPDataSourceDefinitionProvider, AXPDataType, AXPEntityReference, AXPEqualValidationRule, AXPExecuteCommand, AXPExecuteCommandResult, AXPExpression, AXPExpressionEvaluatorScope, AXPExpressionEvaluatorScopeProvider, AXPExpressionEvaluatorScopeProviders, AXPFileListItem, AXPFileSource, AXPFileStatus, AXPFilterDefinition, AXPFilterLogic, AXPFilterOperation, AXPFilterQuery, AXPFlowDirection, AXPGridLayoutOptions, AXPGridPlacement, AXPLayoutFlexStyles, AXPLogoConfig, AXPMaxLengthValidationRule, AXPMetaData, AXPMinLengthValidationRule, AXPNavigateActionCommand, AXPNavigateActionOptions, AXPOptionsData, AXPPagedListResult, AXPPartialNested, AXPPlatformScopeKey, AXPQueryFetchResult, AXPQueryRequest, AXPReqexValidationRule, AXPRequiredValidationRule, AXPStartUpTask, AXPStringValidationRules, AXPSystemAction, AXPUserReference, AXPValidationRule, AXPValidationRules, AXPValueTransformerFunction, AXPValueTransformerFunctions, AXPValueUnit, AXPValueUnits, AXPViewBlockDefinition, AXPViewDefinition, AXPViewFieldDefinition, AXPWidgetTrigger, AXPWidgetTriggers };
|
|
@@ -2198,23 +2198,6 @@ var AXPFileStorageStatus;
|
|
|
2198
2198
|
AXPFileStorageStatus["Error"] = "error";
|
|
2199
2199
|
})(AXPFileStorageStatus || (AXPFileStorageStatus = {}));
|
|
2200
2200
|
|
|
2201
|
-
class AXPFiltersProviderService {
|
|
2202
|
-
async getAll() {
|
|
2203
|
-
return Promise.resolve('');
|
|
2204
|
-
}
|
|
2205
|
-
async execute() {
|
|
2206
|
-
return Promise.resolve('');
|
|
2207
|
-
}
|
|
2208
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPFiltersProviderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2209
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPFiltersProviderService, providedIn: 'root' }); }
|
|
2210
|
-
}
|
|
2211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPFiltersProviderService, decorators: [{
|
|
2212
|
-
type: Injectable,
|
|
2213
|
-
args: [{
|
|
2214
|
-
providedIn: 'root',
|
|
2215
|
-
}]
|
|
2216
|
-
}] });
|
|
2217
|
-
|
|
2218
2201
|
const AXP_FILE_TYPE_INFO_PROVIDER = new InjectionToken('AXP_FILE_TYPE_INFO_PROVIDER');
|
|
2219
2202
|
class AXPFileTypeProviderService {
|
|
2220
2203
|
constructor() {
|
|
@@ -2240,6 +2223,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
2240
2223
|
args: [{ providedIn: 'root' }]
|
|
2241
2224
|
}] });
|
|
2242
2225
|
|
|
2226
|
+
class AXPLockService {
|
|
2227
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPLockService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2228
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPLockService }); }
|
|
2229
|
+
}
|
|
2230
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPLockService, decorators: [{
|
|
2231
|
+
type: Injectable
|
|
2232
|
+
}] });
|
|
2233
|
+
|
|
2243
2234
|
class AXPClipBoardService {
|
|
2244
2235
|
constructor() {
|
|
2245
2236
|
this.toast = inject(AXToastService);
|
|
@@ -2513,17 +2504,9 @@ function AXPCleanNestedFilters(filters) {
|
|
|
2513
2504
|
class AXPRegionalService {
|
|
2514
2505
|
}
|
|
2515
2506
|
|
|
2516
|
-
class AXPLockService {
|
|
2517
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPLockService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2518
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPLockService }); }
|
|
2519
|
-
}
|
|
2520
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPLockService, decorators: [{
|
|
2521
|
-
type: Injectable
|
|
2522
|
-
}] });
|
|
2523
|
-
|
|
2524
2507
|
/**
|
|
2525
2508
|
* Generated bundle index. Do not edit.
|
|
2526
2509
|
*/
|
|
2527
2510
|
|
|
2528
|
-
export { ALL_DEFAULT_OPERATORS, AXMWorkflowErrorHandler, AXPCleanNestedFilters, AXPClipBoardService, AXPCommonModule, AXPCustomOperatorService, AXPCustomOperatorServiceImpl, AXPDataProvider, AXPDialogConfirmAction, AXPEntityCommandScope, AXPEntityQueryType, AXPErrorHandlerRegistryService, AXPExportService, AXPFileStorageService, AXPFileStorageStatus, AXPFileTypeProviderService, AXPFilterOperatorMiddlewareService, AXPFilterOperatorMiddlewareServiceImpl,
|
|
2511
|
+
export { ALL_DEFAULT_OPERATORS, AXMWorkflowErrorHandler, AXPCleanNestedFilters, AXPClipBoardService, AXPCommonModule, AXPCustomOperatorService, AXPCustomOperatorServiceImpl, AXPDataProvider, AXPDialogConfirmAction, AXPEntityCommandScope, AXPEntityQueryType, AXPErrorHandlerRegistryService, AXPExportService, AXPFileStorageService, AXPFileStorageStatus, AXPFileTypeProviderService, AXPFilterOperatorMiddlewareService, AXPFilterOperatorMiddlewareServiceImpl, AXPFooterTextSlotComponent, AXPGlobalErrorHandler, AXPGridLayoutDirective, AXPHomePageModule, AXPHomePageService, AXPLockService, AXPLogoComponent, AXPMenuProviderService, AXPMenuSearchDefinitionProvider, AXPMenuSearchProvider, AXPMenuService, AXPNavBarSlotComponent, AXPNavigateWorkflow, AXPPlatformDefaultConfigs, AXPRedirectEvent, AXPRefreshEvent, AXPRegionalService, AXPRelationshipCardinality, AXPRelationshipKind, AXPSearchCommandProvider, AXPSearchDefinitionActionBuilder, AXPSearchDefinitionBuilder, AXPSearchDefinitionProviderContext, AXPSearchDefinitionProviderService, AXPSearchService, AXPSettingDefaultValueProvider, AXPSettingDefinitionGroupBuilder, AXPSettingDefinitionProviderContext, AXPSettingDefinitionProviderService, AXPSettingDefinitionSectionBuilder, AXPSettingService, AXPStickyDirective, AXPToastAction, AXPWorkflowNavigateAction, AXPWorkflowRouterNavigateAction, AXP_APP_VERSION_PROVIDER, AXP_FILE_TYPE_INFO_PROVIDER, AXP_HOME_PAGES, AXP_HOME_PAGE_DEFAULT_KEY, AXP_MENU_PROVIDER, AXP_PLATFORM_CONFIG_TOKEN, AXP_ROOT_CONFIG_TOKEN, AXP_SEARCH_DEFINITION_PROVIDER, AXP_SEARCH_PROVIDER, AXP_SETTING_DEFINITION_PROVIDER, AXP_SETTING_VALUE_PROVIDER, BETWEEN_OPER, BOOLEAN_OPERATORS, CONTAINS_OPER, DATE_OPERATORS, ENDS_WITH_OPER, ENVIRONMENT, EQ_OPER, GTE_OPER, GT_OPER, IS_EMPTY_OPER, IS_NOT_EMPTY_OPER, LTE_OPER, LT_OPER, NOT_CONTAINS_OPER, NOT_EQ_OPER, NUMBER_OPERATORS, STARTS_WITH_OPER, STRING_OPERATORS, configPlatform, createAllQueryView, createQueryView, getEntityInfo, provideDynamicHomePage, resolveActionLook };
|
|
2529
2512
|
//# sourceMappingURL=acorex-platform-common.mjs.map
|