@acorex/platform 20.5.0-next.2 → 20.5.1

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.
@@ -11,6 +11,7 @@ import { AXPWidgetNode, AXPWidgetCoreContextChangeEvent, AXPWidgetProperty, AXPW
11
11
  import * as _ngrx_signals from '@ngrx/signals';
12
12
  import { AXDataTableComponent, AXDataTableRowDbClick, AXDataTableRowClick } from '@acorex/components/data-table';
13
13
  import { AXBasePageComponent } from '@acorex/components/page';
14
+ import { AXDropListDroppedEvent } from '@acorex/cdk/drag-drop';
14
15
  import { AXPDynamicFormFieldDefinition, AXPDynamicFormGroupDefinition, AXPDynamicFormDefinition } from '@acorex/platform/layout/builder';
15
16
  import { AXPopoverComponent } from '@acorex/components/popover';
16
17
  import { AXTagBoxComponent } from '@acorex/components/tag-box';
@@ -18,7 +19,6 @@ import { AXCalendarService } from '@acorex/core/date-time';
18
19
  import { AXTabStripChangedEvent, AXTabsComponent } from '@acorex/components/tabs';
19
20
  import { AXFormComponent } from '@acorex/components/form';
20
21
  import { AXPopupSizeType, AXPopupService } from '@acorex/components/popup';
21
- import * as _acorex_platform_layout_components from '@acorex/platform/layout/components';
22
22
  import { Observable } from 'rxjs';
23
23
 
24
24
  declare class AXPActivityLogComponent {
@@ -575,6 +575,41 @@ declare class AXPDataSelectorService {
575
575
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPDataSelectorService>;
576
576
  }
577
577
 
578
+ interface AXPDragDropListItem {
579
+ id: string;
580
+ content: string;
581
+ data?: any;
582
+ disabled?: boolean;
583
+ cssClass?: string;
584
+ }
585
+ interface AXPDragDropListConfig {
586
+ allowReorder?: boolean;
587
+ allowTransfer?: boolean;
588
+ }
589
+ interface AXPDragDropListDropEvent {
590
+ previousIndex: number;
591
+ currentIndex: number;
592
+ item: AXPDragDropListItem;
593
+ container: any;
594
+ previousContainer?: any;
595
+ isTransfer: boolean;
596
+ }
597
+
598
+ declare class AXPDragDropListComponent {
599
+ items: _angular_core.ModelSignal<AXPDragDropListItem[]>;
600
+ listId: _angular_core.InputSignal<string>;
601
+ dropListGroup: _angular_core.InputSignal<string>;
602
+ orientation: _angular_core.InputSignal<"vertical" | "horizontal">;
603
+ emptyMessage: _angular_core.InputSignal<string>;
604
+ disable: _angular_core.InputSignal<boolean>;
605
+ itemClick: _angular_core.OutputEmitterRef<AXPDragDropListItem>;
606
+ dropListDropped: _angular_core.OutputEmitterRef<AXDropListDroppedEvent>;
607
+ onDrop(event: AXDropListDroppedEvent): void;
608
+ onItemClick(item: AXPDragDropListItem): void;
609
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPDragDropListComponent, never>;
610
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPDragDropListComponent, "axp-drag-drop-list", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "listId": { "alias": "listId"; "required": false; "isSignal": true; }; "dropListGroup": { "alias": "dropListGroup"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; "isSignal": true; }; "disable": { "alias": "disable"; "required": false; "isSignal": true; }; }, { "items": "itemsChange"; "itemClick": "itemClick"; "dropListDropped": "dropListDropped"; }, never, never, true, never>;
611
+ }
612
+
578
613
  interface AXPDynamicFormDesignerField {
579
614
  id: string;
580
615
  name: string;
@@ -1096,213 +1131,6 @@ declare class AXPTemplateViewerService {
1096
1131
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPTemplateViewerService>;
1097
1132
  }
1098
1133
 
1099
- interface AXPTreeListNode {
1100
- id: string;
1101
- title: string;
1102
- icon?: string;
1103
- description?: string;
1104
- data?: any;
1105
- children?: AXPTreeListNode[];
1106
- actions?: AXPTreeListAction[];
1107
- expanded?: boolean;
1108
- disabled?: boolean;
1109
- draggable?: boolean;
1110
- droppable?: boolean;
1111
- selectable?: boolean;
1112
- selected?: boolean;
1113
- visible?: boolean;
1114
- cssClass?: string;
1115
- badge?: {
1116
- text: string;
1117
- color?: string;
1118
- };
1119
- }
1120
- interface AXPTreeListAction {
1121
- id: string;
1122
- text: string;
1123
- icon?: string;
1124
- color?: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info';
1125
- disabled?: boolean;
1126
- visible?: boolean;
1127
- onClick?: (node: AXPTreeListNode) => void;
1128
- }
1129
- interface AXPTreeListConfig {
1130
- dragEnabled?: boolean;
1131
- showDragIndicator?: boolean;
1132
- expandable?: boolean;
1133
- showLines?: boolean;
1134
- defaultExpanded?: boolean;
1135
- multiSelect?: boolean;
1136
- showCheckboxes?: boolean;
1137
- showIcons?: boolean;
1138
- showActions?: boolean;
1139
- showDescription?: boolean;
1140
- showBadges?: boolean;
1141
- indentSize?: number;
1142
- animationDuration?: number;
1143
- allowDragToRoot?: boolean;
1144
- allowDragBetweenLevels?: boolean;
1145
- validateDrop?: (dragNode: AXPTreeListNode, dropNode: AXPTreeListNode | null, position: DropPosition) => boolean;
1146
- }
1147
- type DropPosition = 'before' | 'after' | 'inside';
1148
- interface AXPTreeListDropEvent {
1149
- dragNode: AXPTreeListNode;
1150
- dropNode: AXPTreeListNode | null;
1151
- position: DropPosition;
1152
- oldParent: AXPTreeListNode | null;
1153
- newParent: AXPTreeListNode | null;
1154
- oldIndex: number;
1155
- newIndex: number;
1156
- }
1157
- interface AXPTreeListNodeClickEvent {
1158
- node: AXPTreeListNode;
1159
- event: MouseEvent;
1160
- }
1161
- interface AXPTreeListNodeExpandEvent {
1162
- node: AXPTreeListNode;
1163
- expanded: boolean;
1164
- }
1165
- interface AXPTreeListNodeSelectEvent {
1166
- node: AXPTreeListNode;
1167
- selected: boolean;
1168
- selectedNodes: AXPTreeListNode[];
1169
- }
1170
- type AXPTreeListLook = 'default' | 'folder' | 'card';
1171
- interface AXPTreeListDragState {
1172
- isDragging: boolean;
1173
- dragNode: AXPTreeListNode | null;
1174
- dropTarget: AXPTreeListNode | null;
1175
- dropPosition: DropPosition | null;
1176
- canDrop: boolean;
1177
- }
1178
-
1179
- declare class AXPTreeListItemComponent {
1180
- node: _angular_core.InputSignal<AXPTreeListNode>;
1181
- level: _angular_core.InputSignal<number>;
1182
- config: _angular_core.InputSignal<Required<AXPTreeListConfig>>;
1183
- look: _angular_core.InputSignal<AXPTreeListLook>;
1184
- expanded: _angular_core.InputSignal<boolean>;
1185
- selected: _angular_core.InputSignal<boolean>;
1186
- dragState: _angular_core.InputSignal<AXPTreeListDragState>;
1187
- expandedNodes: _angular_core.InputSignal<Set<string>>;
1188
- selectedNodes: _angular_core.InputSignal<Set<string>>;
1189
- isLastChild: _angular_core.InputSignal<boolean>;
1190
- dragStart: _angular_core.OutputEmitterRef<AXPTreeListNode>;
1191
- dragOver: _angular_core.OutputEmitterRef<{
1192
- node: AXPTreeListNode | null;
1193
- position: DropPosition;
1194
- }>;
1195
- dragEnd: _angular_core.OutputEmitterRef<void>;
1196
- dragCancel: _angular_core.OutputEmitterRef<void>;
1197
- nodeClick: _angular_core.OutputEmitterRef<AXPTreeListNode>;
1198
- toggle: _angular_core.OutputEmitterRef<AXPTreeListNode>;
1199
- select: _angular_core.OutputEmitterRef<AXPTreeListNode>;
1200
- dropPosition: _angular_core.WritableSignal<DropPosition | null>;
1201
- dragOverZone: _angular_core.WritableSignal<"top" | "middle" | "bottom" | null>;
1202
- hasChildren: _angular_core.Signal<boolean | undefined>;
1203
- isDragging: _angular_core.Signal<boolean>;
1204
- isDragOver: _angular_core.Signal<boolean>;
1205
- canDrop: _angular_core.Signal<boolean>;
1206
- indentStyle: _angular_core.Signal<{
1207
- paddingLeft: string;
1208
- }>;
1209
- showExpandIcon: _angular_core.Signal<boolean | undefined>;
1210
- visibleActions: _angular_core.Signal<_acorex_platform_layout_components.AXPTreeListAction[]>;
1211
- get checkboxValue(): boolean;
1212
- set checkboxValue(value: boolean);
1213
- onDragStart(event: DragEvent): void;
1214
- onDragOver(event: DragEvent): void;
1215
- onDragLeave(event: DragEvent): void;
1216
- onDrop(event: DragEvent): void;
1217
- onDragEnd(event: DragEvent): void;
1218
- onToggleClick(event: Event): void;
1219
- onContentClick(event: MouseEvent): void;
1220
- onActionClick(event: Event, action: any): void;
1221
- getDropIndicatorClass(): string;
1222
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPTreeListItemComponent, never>;
1223
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPTreeListItemComponent, "axp-tree-list-item", never, { "node": { "alias": "node"; "required": true; "isSignal": true; }; "level": { "alias": "level"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": true; "isSignal": true; }; "look": { "alias": "look"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "dragState": { "alias": "dragState"; "required": true; "isSignal": true; }; "expandedNodes": { "alias": "expandedNodes"; "required": true; "isSignal": true; }; "selectedNodes": { "alias": "selectedNodes"; "required": true; "isSignal": true; }; "isLastChild": { "alias": "isLastChild"; "required": false; "isSignal": true; }; }, { "dragStart": "dragStart"; "dragOver": "dragOver"; "dragEnd": "dragEnd"; "dragCancel": "dragCancel"; "nodeClick": "nodeClick"; "toggle": "toggle"; "select": "select"; }, never, never, true, never>;
1224
- }
1225
-
1226
- declare class AXPTreeListComponent {
1227
- nodes: _angular_core.ModelSignal<AXPTreeListNode[]>;
1228
- config: _angular_core.InputSignal<AXPTreeListConfig>;
1229
- look: _angular_core.InputSignal<AXPTreeListLook>;
1230
- nodeDrop: _angular_core.OutputEmitterRef<AXPTreeListDropEvent>;
1231
- nodeClick: _angular_core.OutputEmitterRef<AXPTreeListNodeClickEvent>;
1232
- nodeExpand: _angular_core.OutputEmitterRef<AXPTreeListNodeExpandEvent>;
1233
- nodeSelect: _angular_core.OutputEmitterRef<AXPTreeListNodeSelectEvent>;
1234
- dragState: _angular_core.WritableSignal<AXPTreeListDragState>;
1235
- expandedNodes: _angular_core.WritableSignal<Set<string>>;
1236
- selectedNodes: _angular_core.WritableSignal<Set<string>>;
1237
- mergedConfig: _angular_core.Signal<Required<AXPTreeListConfig>>;
1238
- constructor();
1239
- expandAll(): void;
1240
- collapseAll(): void;
1241
- expandNode(nodeId: string): void;
1242
- collapseNode(nodeId: string): void;
1243
- toggleNode(nodeId: string): void;
1244
- selectNode(nodeId: string, multiSelect?: boolean): void;
1245
- clearSelection(): void;
1246
- getSelectedNodes(): AXPTreeListNode[];
1247
- onDragStart(node: AXPTreeListNode): void;
1248
- onDragOver(node: AXPTreeListNode | null, position: DropPosition): void;
1249
- onDragEnd(): void;
1250
- onDragCancel(): void;
1251
- onNodeClick(node: AXPTreeListNode, event: MouseEvent): void;
1252
- onNodeToggle(node: AXPTreeListNode): void;
1253
- onNodeSelect(node: AXPTreeListNode): void;
1254
- private performDrop;
1255
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPTreeListComponent, never>;
1256
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPTreeListComponent, "axp-tree-list", never, { "nodes": { "alias": "nodes"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "look": { "alias": "look"; "required": false; "isSignal": true; }; }, { "nodes": "nodesChange"; "nodeDrop": "nodeDrop"; "nodeClick": "nodeClick"; "nodeExpand": "nodeExpand"; "nodeSelect": "nodeSelect"; }, never, never, true, never>;
1257
- }
1258
-
1259
- /**
1260
- * Helper functions for tree-list node operations
1261
- */
1262
- declare class AXPTreeListHelper {
1263
- /**
1264
- * Find a node by its ID in the tree
1265
- */
1266
- static findNodeById(nodes: AXPTreeListNode[], nodeId: string): AXPTreeListNode | null;
1267
- /**
1268
- * Find a node's parent and index in the tree
1269
- */
1270
- static findNodeParentAndIndex(nodes: AXPTreeListNode[], nodeId: string, parent?: AXPTreeListNode | null): {
1271
- parent: AXPTreeListNode | null;
1272
- index: number;
1273
- };
1274
- /**
1275
- * Remove a node from the tree by its ID
1276
- */
1277
- static removeNode(nodes: AXPTreeListNode[], nodeId: string): AXPTreeListNode[];
1278
- /**
1279
- * Check if a node is a descendant of another node
1280
- */
1281
- static isDescendant(parent: AXPTreeListNode, child: AXPTreeListNode): boolean;
1282
- /**
1283
- * Get all node IDs from the tree
1284
- */
1285
- static getAllNodeIds(nodes: AXPTreeListNode[]): string[];
1286
- /**
1287
- * Traverse all nodes in the tree and apply a callback
1288
- */
1289
- static traverseNodes(nodes: AXPTreeListNode[], callback: (node: AXPTreeListNode) => void): void;
1290
- /**
1291
- * Validate if drop is allowed
1292
- */
1293
- static validateDrop(dragNode: AXPTreeListNode, dropNode: AXPTreeListNode | null, position: DropPosition, config: Required<AXPTreeListConfig>): boolean;
1294
- /**
1295
- * Perform the drop operation on the nodes array
1296
- */
1297
- static performDrop(nodes: AXPTreeListNode[], dragNode: AXPTreeListNode, dropNode: AXPTreeListNode | null, position: DropPosition): {
1298
- newNodes: AXPTreeListNode[];
1299
- oldParent: AXPTreeListNode | null;
1300
- newParent: AXPTreeListNode | null;
1301
- oldIndex: number;
1302
- newIndex: number;
1303
- };
1304
- }
1305
-
1306
1134
  type AXPUserAvatarSize = 'small' | 'medium' | 'large';
1307
1135
  type AXPUserAvatarStatus = 'online' | 'offline';
1308
1136
  type AXPUserAvatarData = {
@@ -1470,5 +1298,5 @@ declare class AXPWidgetItemComponent {
1470
1298
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPWidgetItemComponent, "axp-widget-item", never, { "widget": { "alias": "widget"; "required": true; "isSignal": true; }; "isSelected": { "alias": "isSelected"; "required": false; "isSignal": true; }; "showPinButton": { "alias": "showPinButton"; "required": false; "isSignal": true; }; "customClasses": { "alias": "customClasses"; "required": false; "isSignal": true; }; }, { "onWidgetClick": "onWidgetClick"; "onPinClick": "onPinClick"; }, never, never, true, never>;
1471
1299
  }
1472
1300
 
1473
- export { AXPActivityLogComponent, AXPCategoryTreeComponent, AXPColorPalettePickerComponent, AXPCompareViewComponent, AXPComponentSlot, AXPComponentSlotDirective, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPDataSelectorComponent, AXPDataSelectorService, AXPDynamicFormDesignerComponent, AXPExtraPropertiesComponent, AXPExtraPropertiesSchemaComponent, AXPExtraPropertiesValuesComponent, AXPImageEditorPopupComponent, AXPImageEditorService, AXPMenuBadgeHelper, AXPQueryColumnsComponent, AXPQueryFiltersComponent, AXPQuerySortsComponent, AXPQueryViewsComponent, AXPStateMessageComponent, AXPTaskBadgeDirective, AXPTaskBadgeProvider, AXPTaskBadgeService, AXPTemplateViewerComponent, AXPTemplateViewerService, AXPThemeLayoutActionsComponent, AXPThemeLayoutBlockComponent, AXPThemeLayoutContainerComponent, AXPThemeLayoutEndSideComponent, AXPThemeLayoutFooterComponent, AXPThemeLayoutHeaderComponent, AXPThemeLayoutListComponent, AXPThemeLayoutListItemComponent, AXPThemeLayoutListItemsGroupComponent, AXPThemeLayoutPageHeaderComponent, AXPThemeLayoutPagePrimaryActionsComponent, AXPThemeLayoutPageSecondaryActionsComponent, AXPThemeLayoutSectionComponent, AXPThemeLayoutStartSideComponent, AXPThemeLayoutToolbarComponent, AXPTreeListComponent, AXPTreeListHelper, AXPTreeListItemComponent, AXPUserAvatarComponent, AXPUserAvatarService, AXPWidgetItemComponent, AXPWidgetPropertyViewerComponent, AXPWidgetPropertyViewerPopupComponent, AXPWidgetPropertyViewerService, AXP_EXTRA_PROPERTY_TYPES, AXP_TASK_BADGE_PROVIDERS, AXP_USER_AVATAR_PROVIDER, convertDesignerFieldToFormField, convertDesignerGroupToFormGroup, convertDesignerStateToFormDefinition };
1474
- export type { AXPCategoryTreeActions, AXPCategoryTreeConfig, AXPCategoryTreeDataSource, AXPCategoryTreeEvents, AXPCategoryTreeNode, AXPCompareViewField, AXPCompareViewInputs, AXPCompareViewMode, AXPCompareViewObject, AXPComponentSlotConfig, AXPComponentSlotModuleConfigs, AXPDataSelectorColumn, AXPDataSelectorConfig, AXPDynamicFormDesignerField, AXPDynamicFormDesignerGroup, AXPDynamicFormDesignerState, AXPExtraPropertyItem, AXPExtraPropertySchemaItem, AXPExtraPropertyType, AXPFormElementWidget, AXPImageEditorOpenOptions, AXPTemplateViewerConfig, AXPTemplateViewerResult, AXPTreeListAction, AXPTreeListConfig, AXPTreeListDragState, AXPTreeListDropEvent, AXPTreeListLook, AXPTreeListNode, AXPTreeListNodeClickEvent, AXPTreeListNodeExpandEvent, AXPTreeListNodeSelectEvent, AXPUserAvatarData, AXPUserAvatarProvider, AXPUserAvatarSize, AXPUserAvatarStatus, AXPWidgetItemClickEvent, AXPWidgetItemData, AXPWidgetPropertiesChangedEvent, AXPWidgetPropertyTab, AXPWidgetPropertyViewerConfig, AXPWidgetPropertyViewerResult, DropPosition, StateMode };
1301
+ export { AXPActivityLogComponent, AXPCategoryTreeComponent, AXPColorPalettePickerComponent, AXPCompareViewComponent, AXPComponentSlot, AXPComponentSlotDirective, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPDataSelectorComponent, AXPDataSelectorService, AXPDragDropListComponent, AXPDynamicFormDesignerComponent, AXPExtraPropertiesComponent, AXPExtraPropertiesSchemaComponent, AXPExtraPropertiesValuesComponent, AXPImageEditorPopupComponent, AXPImageEditorService, AXPMenuBadgeHelper, AXPQueryColumnsComponent, AXPQueryFiltersComponent, AXPQuerySortsComponent, AXPQueryViewsComponent, AXPStateMessageComponent, AXPTaskBadgeDirective, AXPTaskBadgeProvider, AXPTaskBadgeService, AXPTemplateViewerComponent, AXPTemplateViewerService, AXPThemeLayoutActionsComponent, AXPThemeLayoutBlockComponent, AXPThemeLayoutContainerComponent, AXPThemeLayoutEndSideComponent, AXPThemeLayoutFooterComponent, AXPThemeLayoutHeaderComponent, AXPThemeLayoutListComponent, AXPThemeLayoutListItemComponent, AXPThemeLayoutListItemsGroupComponent, AXPThemeLayoutPageHeaderComponent, AXPThemeLayoutPagePrimaryActionsComponent, AXPThemeLayoutPageSecondaryActionsComponent, AXPThemeLayoutSectionComponent, AXPThemeLayoutStartSideComponent, AXPThemeLayoutToolbarComponent, AXPUserAvatarComponent, AXPUserAvatarService, AXPWidgetItemComponent, AXPWidgetPropertyViewerComponent, AXPWidgetPropertyViewerPopupComponent, AXPWidgetPropertyViewerService, AXP_EXTRA_PROPERTY_TYPES, AXP_TASK_BADGE_PROVIDERS, AXP_USER_AVATAR_PROVIDER, convertDesignerFieldToFormField, convertDesignerGroupToFormGroup, convertDesignerStateToFormDefinition };
1302
+ export type { AXPCategoryTreeActions, AXPCategoryTreeConfig, AXPCategoryTreeDataSource, AXPCategoryTreeEvents, AXPCategoryTreeNode, AXPCompareViewField, AXPCompareViewInputs, AXPCompareViewMode, AXPCompareViewObject, AXPComponentSlotConfig, AXPComponentSlotModuleConfigs, AXPDataSelectorColumn, AXPDataSelectorConfig, AXPDragDropListConfig, AXPDragDropListDropEvent, AXPDragDropListItem, AXPDynamicFormDesignerField, AXPDynamicFormDesignerGroup, AXPDynamicFormDesignerState, AXPExtraPropertyItem, AXPExtraPropertySchemaItem, AXPExtraPropertyType, AXPFormElementWidget, AXPImageEditorOpenOptions, AXPTemplateViewerConfig, AXPTemplateViewerResult, AXPUserAvatarData, AXPUserAvatarProvider, AXPUserAvatarSize, AXPUserAvatarStatus, AXPWidgetItemClickEvent, AXPWidgetItemData, AXPWidgetPropertiesChangedEvent, AXPWidgetPropertyTab, AXPWidgetPropertyViewerConfig, AXPWidgetPropertyViewerResult, StateMode };
@@ -16,7 +16,7 @@ import * as i2 from '@acorex/platform/workflow';
16
16
  import { AXPWorkflowService, AXPWorkflowAction, AXPWorkflowContext, AXPWorkflow } from '@acorex/platform/workflow';
17
17
  import { AXPopupSizeType, AXPopupService } from '@acorex/components/popup';
18
18
  import { IActionBuilder, IFormFieldBuilder, AXPDialogRef } from '@acorex/platform/layout/builder';
19
- import { AXPListWidgetComponentOptions } from '@acorex/platform/layout/widgets';
19
+ import { AXPDataListWidgetComponentOptions } from '@acorex/platform/layout/widgets';
20
20
  import * as _ngrx_signals from '@ngrx/signals';
21
21
  import * as _acorex_platform_themes_shared from '@acorex/platform/themes/shared';
22
22
  import { AXFormatService } from '@acorex/core/format';
@@ -1082,7 +1082,7 @@ declare class AXPEntityListTableService {
1082
1082
  /**
1083
1083
  * Convert Entity to List Widget Options
1084
1084
  */
1085
- convertEntityToListOptions(entity: AXPEntity, options: any, allActions: AXPEntityCommandTriggerViewModel[]): Promise<AXPListWidgetComponentOptions>;
1085
+ convertEntityToListOptions(entity: AXPEntity, options: any, allActions: AXPEntityCommandTriggerViewModel[]): Promise<AXPDataListWidgetComponentOptions>;
1086
1086
  /**
1087
1087
  * Create DataSource for Entity
1088
1088
  */
@@ -117,6 +117,7 @@ interface AXPWidgetTypesMap {
117
117
  timeDuration: 'time-duration';
118
118
  checkbox: 'checkbox-editor';
119
119
  color: 'color-editor';
120
+ connectedLists: 'connected-lists-editor';
120
121
  contact: 'contact-editor';
121
122
  dateTime: 'date-time-editor';
122
123
  largeText: 'large-text-editor';
@@ -207,7 +208,8 @@ interface AXPWidgetTypesMap {
207
208
  notification: 'notification';
208
209
  taskBoard: 'task-board';
209
210
  comment: 'comment';
210
- list: 'list';
211
+ list: 'list-editor';
212
+ dataList: 'data-list';
211
213
  listToolbar: 'list-toolbar';
212
214
  entityList: 'entity-list';
213
215
  stepWizard: 'step-wizard';