@acorex/platform 20.6.0-next.13 → 20.6.0-next.14

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.
Files changed (32) hide show
  1. package/core/index.d.ts +106 -23
  2. package/fesm2022/acorex-platform-core.mjs +182 -3
  3. package/fesm2022/acorex-platform-core.mjs.map +1 -1
  4. package/fesm2022/acorex-platform-layout-components.mjs +175 -154
  5. package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
  6. package/fesm2022/acorex-platform-layout-entity.mjs +64 -87
  7. package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
  8. package/fesm2022/acorex-platform-layout-views.mjs +16 -14
  9. package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
  10. package/fesm2022/acorex-platform-layout-widget-core.mjs +3 -1
  11. package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
  12. package/fesm2022/acorex-platform-layout-widgets-image-preview.popup-V31OpYah.mjs +30 -0
  13. package/fesm2022/acorex-platform-layout-widgets-image-preview.popup-V31OpYah.mjs.map +1 -0
  14. package/fesm2022/acorex-platform-layout-widgets.mjs +1232 -839
  15. package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
  16. package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-xq3eQ6t2.mjs → acorex-platform-themes-default-entity-master-list-view.component-pBT9C2n8.mjs} +5 -3
  17. package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-pBT9C2n8.mjs.map +1 -0
  18. package/fesm2022/acorex-platform-themes-default.mjs +12 -10
  19. package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
  20. package/fesm2022/acorex-platform-themes-shared.mjs +12 -107
  21. package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
  22. package/layout/components/index.d.ts +177 -175
  23. package/layout/designer/index.d.ts +1 -1
  24. package/layout/entity/index.d.ts +3 -66
  25. package/layout/views/index.d.ts +4 -58
  26. package/layout/widget-core/index.d.ts +20 -21
  27. package/layout/widgets/README.md +0 -1
  28. package/layout/widgets/index.d.ts +69 -48
  29. package/package.json +5 -5
  30. package/themes/default/index.d.ts +4 -71
  31. package/themes/shared/index.d.ts +1 -39
  32. package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-xq3eQ6t2.mjs.map +0 -1
@@ -1020,6 +1020,7 @@ declare class AXPImageEditorPopupComponent extends AXBasePageComponent {
1020
1020
  image: _angular_core.InputSignal<Blob>;
1021
1021
  showHistory: _angular_core.InputSignal<boolean>;
1022
1022
  look: _angular_core.InputSignal<"solid" | "outline" | "blank">;
1023
+ aspectRatio: _angular_core.InputSignal<string | undefined>;
1023
1024
  private container;
1024
1025
  private blobUrl;
1025
1026
  protected url: _angular_core.WritableSignal<string | null>;
@@ -1032,7 +1033,7 @@ declare class AXPImageEditorPopupComponent extends AXBasePageComponent {
1032
1033
  handleCancel(): void;
1033
1034
  ngOnDestroy(): void;
1034
1035
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPImageEditorPopupComponent, never>;
1035
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPImageEditorPopupComponent, "axp-image-editor-popup", never, { "image": { "alias": "image"; "required": true; "isSignal": true; }; "showHistory": { "alias": "showHistory"; "required": false; "isSignal": true; }; "look": { "alias": "look"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1036
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPImageEditorPopupComponent, "axp-image-editor-popup", never, { "image": { "alias": "image"; "required": true; "isSignal": true; }; "showHistory": { "alias": "showHistory"; "required": false; "isSignal": true; }; "look": { "alias": "look"; "required": false; "isSignal": true; }; "aspectRatio": { "alias": "aspectRatio"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1036
1037
  }
1037
1038
 
1038
1039
  interface AXPImageEditorOpenOptions {
@@ -1040,6 +1041,7 @@ interface AXPImageEditorOpenOptions {
1040
1041
  image: Blob;
1041
1042
  showHistory?: boolean;
1042
1043
  look?: 'solid' | 'outline' | 'blank';
1044
+ aspectRatio?: string;
1043
1045
  }
1044
1046
  declare class AXPImageEditorService {
1045
1047
  private readonly popupService;
@@ -1144,120 +1146,6 @@ declare class AXPPropertyViewerService {
1144
1146
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPPropertyViewerService>;
1145
1147
  }
1146
1148
 
1147
- interface AXPWidgetPropertyTab {
1148
- name: string;
1149
- title: string;
1150
- groups: {
1151
- name: string;
1152
- title: string;
1153
- isCollapsed: boolean;
1154
- props: AXPWidgetProperty[];
1155
- }[];
1156
- }
1157
- interface AXPWidgetPropertiesChangedEvent {
1158
- values: any;
1159
- mode: 'init' | 'update';
1160
- }
1161
- declare class AXPWidgetPropertyViewerComponent {
1162
- widget: _angular_core.InputSignal<AXPWidgetNode>;
1163
- mode: _angular_core.InputSignal<"simple" | "advanced">;
1164
- private widgetRegistryService;
1165
- protected currentTabIndex: WritableSignal<number>;
1166
- protected config: WritableSignal<AXPWidgetConfig<any> | null>;
1167
- protected allPoperties: AXPWidgetProperty[];
1168
- protected tabs: WritableSignal<AXPWidgetPropertyTab[]>;
1169
- protected groups: _angular_core.Signal<{
1170
- name: string;
1171
- title: string;
1172
- isCollapsed: boolean;
1173
- props: AXPWidgetProperty[];
1174
- }[]>;
1175
- protected groupCollapsedStates: Map<string, boolean>;
1176
- onChanged: EventEmitter<AXPWidgetPropertiesChangedEvent>;
1177
- protected context: WritableSignal<any>;
1178
- protected initialContext: any;
1179
- constructor();
1180
- update(values: any): void;
1181
- private fillTabs;
1182
- protected handleContextChange(e: AXPWidgetCoreContextChangeEvent): void;
1183
- protected handleTabChange(event: AXTabStripChangedEvent): void;
1184
- protected handleCollapsedChange(group: string, collapsed: boolean): void;
1185
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPWidgetPropertyViewerComponent, never>;
1186
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPWidgetPropertyViewerComponent, "axp-widget-property-viewer", never, { "widget": { "alias": "widget"; "required": true; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, { "onChanged": "onChanged"; }, never, never, true, never>;
1187
- }
1188
-
1189
- declare class AXPWidgetPropertyViewerPopupComponent extends AXBasePageComponent {
1190
- widget: _angular_core.InputSignal<AXPWidgetNode>;
1191
- mode: _angular_core.InputSignal<"simple" | "advanced">;
1192
- protected currentValues: _angular_core.WritableSignal<any>;
1193
- protected handlePropertyChanged(event: {
1194
- values: any;
1195
- mode: 'init' | 'update';
1196
- }): void;
1197
- protected handleCloseClick(): void;
1198
- protected handleApplyClick(): void;
1199
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPWidgetPropertyViewerPopupComponent, never>;
1200
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPWidgetPropertyViewerPopupComponent, "axp-widget-property-viewer-popup", never, { "widget": { "alias": "widget"; "required": true; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1201
- }
1202
-
1203
- interface AXPWidgetPropertyInjection {
1204
- property: AXPWidgetProperty;
1205
- tab?: {
1206
- name?: string;
1207
- title?: string;
1208
- };
1209
- group?: {
1210
- name?: string;
1211
- title?: string;
1212
- };
1213
- }
1214
- interface AXPWidgetPropertyViewerConfig {
1215
- title: string;
1216
- widget: AXPWidgetNode;
1217
- mode?: 'simple' | 'advanced';
1218
- /**
1219
- * Custom property injection configuration.
1220
- */
1221
- custom?: {
1222
- /**
1223
- * Custom property injection entries.
1224
- */
1225
- properties: AXPWidgetPropertyInjection[];
1226
- /**
1227
- * Default tab fallback if property injection doesn't specify one.
1228
- * When omitted, falls back to the first tab or "general".
1229
- */
1230
- defaultTab?: {
1231
- name?: string;
1232
- title?: string;
1233
- };
1234
- /**
1235
- * Default group fallback when injection doesn't specify a group.
1236
- * When omitted, falls back to the tab's first group or property defined group.
1237
- */
1238
- defaultGroup?: {
1239
- name?: string;
1240
- title?: string;
1241
- };
1242
- };
1243
- }
1244
- interface AXPWidgetPropertyViewerResult {
1245
- values: any;
1246
- mode: 'init' | 'update';
1247
- }
1248
- declare class AXPWidgetPropertyViewerService {
1249
- private readonly widgetRegistryService;
1250
- private readonly propertyViewerService;
1251
- /**
1252
- * Open widget property viewer popup
1253
- */
1254
- open(config: AXPWidgetPropertyViewerConfig): Promise<AXPWidgetPropertyViewerResult | null>;
1255
- private buildTabs;
1256
- private buildInitialContext;
1257
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPWidgetPropertyViewerService, never>;
1258
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPWidgetPropertyViewerService>;
1259
- }
1260
-
1261
1149
  declare class AXPQuerySortsComponent {
1262
1150
  sortDefinitions: _angular_core.ModelSignal<AXPSortDefinition[]>;
1263
1151
  sortQueries: _angular_core.WritableSignal<AXPSortQuery[]>;
@@ -1439,66 +1327,6 @@ declare class AXPQueryViewsComponent {
1439
1327
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPQueryViewsComponent, "axp-query-views", never, { "views": { "alias": "views"; "required": false; "isSignal": true; }; "selectedView": { "alias": "selectedView"; "required": true; "isSignal": true; }; }, { "views": "viewsChange"; "selectedView": "selectedViewChange"; }, never, never, true, never>;
1440
1328
  }
1441
1329
 
1442
- /**
1443
- * Generic interface for widget item data
1444
- */
1445
- interface AXPWidgetItemData {
1446
- /** Display title of the widget */
1447
- title: string;
1448
- /** Description text for the widget */
1449
- description?: string;
1450
- /** Icon class (e.g., FontAwesome classes) */
1451
- icon?: string;
1452
- /** Whether the widget is pinned/favorited */
1453
- isPinned: boolean;
1454
- /** Generic data payload - can be any type based on use case */
1455
- data?: unknown;
1456
- }
1457
- /**
1458
- * Event data for widget item interactions
1459
- */
1460
- interface AXPWidgetItemClickEvent<T = unknown> {
1461
- /** The mouse event */
1462
- event: MouseEvent;
1463
- /** The widget item data */
1464
- widget: AXPWidgetItemData & {
1465
- data?: T;
1466
- };
1467
- }
1468
-
1469
- /**
1470
- * Generic widget item component for displaying selectable widgets with icons, titles, and descriptions.
1471
- * Can be used across different modules for consistent widget display and interaction.
1472
- */
1473
- declare class AXPWidgetItemComponent {
1474
- /** The widget data to display */
1475
- widget: _angular_core.InputSignal<AXPWidgetItemData>;
1476
- /** Whether this widget is currently selected */
1477
- isSelected: _angular_core.InputSignal<boolean>;
1478
- /** Whether to show the pin button */
1479
- showPinButton: _angular_core.InputSignal<boolean>;
1480
- /** Custom CSS classes to apply to the widget item */
1481
- customClasses: _angular_core.InputSignal<string>;
1482
- /** Emitted when the widget item is clicked */
1483
- onWidgetClick: _angular_core.OutputEmitterRef<AXPWidgetItemClickEvent<unknown>>;
1484
- /** Emitted when the pin button is clicked */
1485
- onPinClick: _angular_core.OutputEmitterRef<AXPWidgetItemClickEvent<unknown>>;
1486
- /**
1487
- * Handle widget item click event
1488
- */
1489
- handleClick(event: MouseEvent): void;
1490
- /**
1491
- * Handle pin button click event
1492
- */
1493
- handlePinClick(event: MouseEvent): void;
1494
- /**
1495
- * Get the effective icon to display
1496
- */
1497
- getIconClass(): string;
1498
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPWidgetItemComponent, never>;
1499
- 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>;
1500
- }
1501
-
1502
1330
  /**
1503
1331
  * Compact widget field configurator component
1504
1332
  * Designed to be embedded in entity definition forms for configuring widget properties
@@ -1583,5 +1411,179 @@ declare class AXPWidgetFieldConfiguratorComponent {
1583
1411
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPWidgetFieldConfiguratorComponent, "axp-widget-field-configurator", never, { "widget": { "alias": "widget"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "fieldName": { "alias": "fieldName"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; }, { "widget": "widgetChange"; }, never, never, true, never>;
1584
1412
  }
1585
1413
 
1414
+ /**
1415
+ * Generic interface for widget item data
1416
+ */
1417
+ interface AXPWidgetItemData {
1418
+ /** Display title of the widget */
1419
+ title: string;
1420
+ /** Description text for the widget */
1421
+ description?: string;
1422
+ /** Icon class (e.g., FontAwesome classes) */
1423
+ icon?: string;
1424
+ /** Whether the widget is pinned/favorited */
1425
+ isPinned: boolean;
1426
+ /** Generic data payload - can be any type based on use case */
1427
+ data?: unknown;
1428
+ }
1429
+ /**
1430
+ * Event data for widget item interactions
1431
+ */
1432
+ interface AXPWidgetItemClickEvent<T = unknown> {
1433
+ /** The mouse event */
1434
+ event: MouseEvent;
1435
+ /** The widget item data */
1436
+ widget: AXPWidgetItemData & {
1437
+ data?: T;
1438
+ };
1439
+ }
1440
+
1441
+ /**
1442
+ * Generic widget item component for displaying selectable widgets with icons, titles, and descriptions.
1443
+ * Can be used across different modules for consistent widget display and interaction.
1444
+ */
1445
+ declare class AXPWidgetItemComponent {
1446
+ /** The widget data to display */
1447
+ widget: _angular_core.InputSignal<AXPWidgetItemData>;
1448
+ /** Whether this widget is currently selected */
1449
+ isSelected: _angular_core.InputSignal<boolean>;
1450
+ /** Whether to show the pin button */
1451
+ showPinButton: _angular_core.InputSignal<boolean>;
1452
+ /** Custom CSS classes to apply to the widget item */
1453
+ customClasses: _angular_core.InputSignal<string>;
1454
+ /** Emitted when the widget item is clicked */
1455
+ onWidgetClick: _angular_core.OutputEmitterRef<AXPWidgetItemClickEvent<unknown>>;
1456
+ /** Emitted when the pin button is clicked */
1457
+ onPinClick: _angular_core.OutputEmitterRef<AXPWidgetItemClickEvent<unknown>>;
1458
+ /**
1459
+ * Handle widget item click event
1460
+ */
1461
+ handleClick(event: MouseEvent): void;
1462
+ /**
1463
+ * Handle pin button click event
1464
+ */
1465
+ handlePinClick(event: MouseEvent): void;
1466
+ /**
1467
+ * Get the effective icon to display
1468
+ */
1469
+ getIconClass(): string;
1470
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPWidgetItemComponent, never>;
1471
+ 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>;
1472
+ }
1473
+
1474
+ interface AXPWidgetPropertyTab {
1475
+ name: string;
1476
+ title: string;
1477
+ groups: {
1478
+ name: string;
1479
+ title: string;
1480
+ isCollapsed: boolean;
1481
+ props: AXPWidgetProperty[];
1482
+ }[];
1483
+ }
1484
+ interface AXPWidgetPropertiesChangedEvent {
1485
+ values: any;
1486
+ mode: 'init' | 'update';
1487
+ }
1488
+ declare class AXPWidgetPropertyViewerComponent {
1489
+ widget: _angular_core.InputSignal<AXPWidgetNode>;
1490
+ mode: _angular_core.InputSignal<"simple" | "advanced">;
1491
+ private widgetRegistryService;
1492
+ protected currentTabIndex: WritableSignal<number>;
1493
+ protected config: WritableSignal<AXPWidgetConfig<any> | null>;
1494
+ protected allPoperties: AXPWidgetProperty[];
1495
+ protected tabs: WritableSignal<AXPWidgetPropertyTab[]>;
1496
+ protected groups: _angular_core.Signal<{
1497
+ name: string;
1498
+ title: string;
1499
+ isCollapsed: boolean;
1500
+ props: AXPWidgetProperty[];
1501
+ }[]>;
1502
+ protected groupCollapsedStates: Map<string, boolean>;
1503
+ onChanged: EventEmitter<AXPWidgetPropertiesChangedEvent>;
1504
+ protected context: WritableSignal<any>;
1505
+ protected initialContext: any;
1506
+ constructor();
1507
+ update(values: any): void;
1508
+ private fillTabs;
1509
+ protected handleContextChange(e: AXPWidgetCoreContextChangeEvent): void;
1510
+ protected handleTabChange(event: AXTabStripChangedEvent): void;
1511
+ protected handleCollapsedChange(group: string, collapsed: boolean): void;
1512
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPWidgetPropertyViewerComponent, never>;
1513
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPWidgetPropertyViewerComponent, "axp-widget-property-viewer", never, { "widget": { "alias": "widget"; "required": true; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, { "onChanged": "onChanged"; }, never, never, true, never>;
1514
+ }
1515
+
1516
+ declare class AXPWidgetPropertyViewerPopupComponent extends AXBasePageComponent {
1517
+ widget: _angular_core.InputSignal<AXPWidgetNode>;
1518
+ mode: _angular_core.InputSignal<"simple" | "advanced">;
1519
+ protected currentValues: _angular_core.WritableSignal<any>;
1520
+ protected handlePropertyChanged(event: {
1521
+ values: any;
1522
+ mode: 'init' | 'update';
1523
+ }): void;
1524
+ protected handleCloseClick(): void;
1525
+ protected handleApplyClick(): void;
1526
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPWidgetPropertyViewerPopupComponent, never>;
1527
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPWidgetPropertyViewerPopupComponent, "axp-widget-property-viewer-popup", never, { "widget": { "alias": "widget"; "required": true; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1528
+ }
1529
+
1530
+ interface AXPWidgetPropertyInjection {
1531
+ property: AXPWidgetProperty;
1532
+ tab?: {
1533
+ name?: string;
1534
+ title?: string;
1535
+ };
1536
+ group?: {
1537
+ name?: string;
1538
+ title?: string;
1539
+ };
1540
+ }
1541
+ interface AXPWidgetPropertyViewerConfig {
1542
+ title: string;
1543
+ widget: AXPWidgetNode;
1544
+ mode?: 'simple' | 'advanced';
1545
+ /**
1546
+ * Custom property injection configuration.
1547
+ */
1548
+ custom?: {
1549
+ /**
1550
+ * Custom property injection entries.
1551
+ */
1552
+ properties: AXPWidgetPropertyInjection[];
1553
+ /**
1554
+ * Default tab fallback if property injection doesn't specify one.
1555
+ * When omitted, falls back to the first tab or "general".
1556
+ */
1557
+ defaultTab?: {
1558
+ name?: string;
1559
+ title?: string;
1560
+ };
1561
+ /**
1562
+ * Default group fallback when injection doesn't specify a group.
1563
+ * When omitted, falls back to the tab's first group or property defined group.
1564
+ */
1565
+ defaultGroup?: {
1566
+ name?: string;
1567
+ title?: string;
1568
+ };
1569
+ };
1570
+ }
1571
+ interface AXPWidgetPropertyViewerResult {
1572
+ values: any;
1573
+ mode: 'init' | 'update';
1574
+ }
1575
+ declare class AXPWidgetPropertyViewerService {
1576
+ private readonly widgetRegistryService;
1577
+ private readonly propertyViewerService;
1578
+ /**
1579
+ * Open widget property viewer popup
1580
+ */
1581
+ open(config: AXPWidgetPropertyViewerConfig): Promise<AXPWidgetPropertyViewerResult | null>;
1582
+ private buildTabs;
1583
+ private buildInitialContext;
1584
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPWidgetPropertyViewerService, never>;
1585
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPWidgetPropertyViewerService>;
1586
+ }
1587
+
1586
1588
  export { AXPActivityLogComponent, AXPCategoryTreeComponent, AXPColorPalettePickerComponent, AXPColumnItemListComponent, AXPCompareViewComponent, AXPComponentSlot, AXPComponentSlotDirective, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPDataSelectorComponent, AXPDataSelectorService, AXPDragDropListComponent, AXPDynamicFormDesignerComponent, AXPExtraPropertiesComponent, AXPExtraPropertiesSchemaComponent, AXPExtraPropertiesValuesComponent, AXPImageEditorPopupComponent, AXPImageEditorService, AXPMenuBadgeHelper, AXPPropertyViewerComponent, AXPPropertyViewerPopupComponent, AXPPropertyViewerService, 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, AXPWidgetFieldConfiguratorComponent, AXPWidgetItemComponent, AXPWidgetPropertyViewerComponent, AXPWidgetPropertyViewerPopupComponent, AXPWidgetPropertyViewerService, AXP_EXTRA_PROPERTY_TYPES, AXP_TASK_BADGE_PROVIDERS, AXP_USER_AVATAR_PROVIDER, convertDesignerFieldToFormField, convertDesignerGroupToFormGroup, convertDesignerStateToFormDefinition };
1587
1589
  export type { AXPCategoryTreeActions, AXPCategoryTreeConfig, AXPCategoryTreeDataSource, AXPCategoryTreeEvents, AXPCategoryTreeNode, AXPColumnItemListItem, AXPCompareViewField, AXPCompareViewInputs, AXPCompareViewMode, AXPCompareViewObject, AXPComponentSlotConfig, AXPComponentSlotModuleConfigs, AXPDataSelectorColumn, AXPDataSelectorConfig, AXPDragDropListConfig, AXPDragDropListDropEvent, AXPDragDropListItem, AXPDynamicFormDesignerField, AXPDynamicFormDesignerGroup, AXPDynamicFormDesignerState, AXPExtraPropertyItem, AXPExtraPropertySchemaItem, AXPExtraPropertyType, AXPFormElementWidget, AXPImageEditorOpenOptions, AXPPropertyViewerChangedEvent, AXPPropertyViewerConfig, AXPPropertyViewerGroup, AXPPropertyViewerResult, AXPPropertyViewerTab, AXPTemplateViewerConfig, AXPTemplateViewerResult, AXPUserAvatarData, AXPUserAvatarProvider, AXPUserAvatarSize, AXPUserAvatarStatus, AXPWidgetItemClickEvent, AXPWidgetItemData, AXPWidgetPropertiesChangedEvent, AXPWidgetPropertyInjection, AXPWidgetPropertyTab, AXPWidgetPropertyViewerConfig, AXPWidgetPropertyViewerResult, StateMode };
@@ -350,7 +350,7 @@ declare class AXPWidgetDesignerRendererDirective implements OnChanges, OnDestroy
350
350
  private currentNodeId;
351
351
  private service;
352
352
  private viewContainerRef;
353
- parentNode: _angular_core.InputSignal<AXPLayoutBaseWidgetComponent | null | undefined>;
353
+ parentNode: _angular_core.InputSignal<AXPLayoutBaseWidgetComponent<Record<string, any>> | null | undefined>;
354
354
  parentElement: _angular_core.InputSignal<HTMLElement | null | undefined>;
355
355
  parentComponent: _angular_core.InputSignal<ComponentRef<any> | null | undefined>;
356
356
  index: _angular_core.InputSignal<number | null | undefined>;
@@ -1,4 +1,4 @@
1
- import { AXPExecuteCommandResult, AXPMetaData, AXPGridLayoutOptions, AXPBreadcrumbItem, AXPFilterQuery, AXPFilterDefinition, AXPExecuteCommand, AXPUserReference, AXPQueryRequest, AXPPagedListResult, AXPCategoryEntity as AXPCategoryEntity$1, AXPAppStartUpService, AXPMiddlewareErrorResponse, AXPColumnQuery, AXPSortDefinition, AXPActionMenuItem, AXPExpression } from '@acorex/platform/core';
1
+ import { AXPExecuteCommandResult, AXPMetaData, AXPGridLayoutOptions, AXPBreadcrumbItem, AXPFilterQuery, AXPFilterDefinition, AXPExecuteCommand, AXPUserReference, AXPQueryRequest, AXPPagedListResult, AXPCategoryEntity as AXPCategoryEntity$1, AXPAppStartUpService, AXPMiddlewareErrorResponse, AXPColumnQuery, AXPSortDefinition, AXPDeviceService, AXPActionMenuItem, AXPExpression } from '@acorex/platform/core';
2
2
  import { AXPCommand, AXPQuery } from '@acorex/platform/runtime';
3
3
  import * as _angular_core from '@angular/core';
4
4
  import { ElementRef, InjectionToken, Injector, Type } from '@angular/core';
@@ -17,8 +17,6 @@ import { AXPWorkflowService, AXPWorkflowAction, AXPWorkflowContext, AXPWorkflow
17
17
  import { AXPopupSizeType, AXPopupService } from '@acorex/components/popup';
18
18
  import { IActionBuilder, IFormFieldBuilder, AXPDialogRef } from '@acorex/platform/layout/builder';
19
19
  import { AXPDataListWidgetComponentOptions } from '@acorex/platform/layout/widgets';
20
- import * as _ngrx_signals from '@ngrx/signals';
21
- import * as _acorex_platform_themes_shared from '@acorex/platform/themes/shared';
22
20
  import { AXFormatService } from '@acorex/core/format';
23
21
  import { AXSelectBoxComponent } from '@acorex/components/select-box';
24
22
  import { AXTagBoxComponent } from '@acorex/components/tag-box';
@@ -1040,7 +1038,7 @@ interface IPropertyFilterStage {
1040
1038
  declare class AXPEntityDynamicDialogService implements IEntitySelectorStage {
1041
1039
  private readonly entityRegistry;
1042
1040
  private readonly layoutBuilder;
1043
- private readonly layoutTheme;
1041
+ private readonly deviceService;
1044
1042
  entity(fullName: string): IInterfaceSelectorStage;
1045
1043
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPEntityDynamicDialogService, never>;
1046
1044
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPEntityDynamicDialogService>;
@@ -1185,68 +1183,7 @@ declare class AXPEntityListWidgetViewComponent extends AXPValueWidgetComponent {
1185
1183
  protected workflow: AXPWorkflowService;
1186
1184
  protected entityListTableService: AXPEntityListTableService;
1187
1185
  protected entityListToolbarService: AXPEntityListToolbarService;
1188
- protected layoutThemeService: {
1189
- currentMode: _angular_core.Signal<_acorex_platform_themes_shared.AXPThemeMode>;
1190
- currentPalette: _angular_core.Signal<string>;
1191
- systemThemeMode: _angular_core.Signal<_acorex_platform_themes_shared.AXPThemeMode>;
1192
- font: _ngrx_signals.DeepSignal<{
1193
- family: string;
1194
- size: string;
1195
- }>;
1196
- screenSize: _angular_core.Signal<_acorex_platform_themes_shared.AXPScreenSize>;
1197
- deviceType: _angular_core.Signal<_acorex_platform_themes_shared.AXPDeviceType>;
1198
- isTouchDevice: _angular_core.Signal<boolean>;
1199
- overlayLoading: _angular_core.Signal<boolean>;
1200
- navigationLoading: _angular_core.Signal<boolean>;
1201
- overlayLoadingTaskCount: _angular_core.Signal<number>;
1202
- navigationLoadingTaskCount: _angular_core.Signal<number>;
1203
- sideMenuState: _angular_core.Signal<_acorex_platform_themes_shared.AXPSideMenuState>;
1204
- sideMenuWidth: _angular_core.Signal<number>;
1205
- menuOrientation: _angular_core.Signal<_acorex_platform_themes_shared.AXPMenuOrientation>;
1206
- isPrinting: _angular_core.Signal<boolean>;
1207
- isDarkMode: _angular_core.Signal<boolean>;
1208
- isLightMode: _angular_core.Signal<boolean>;
1209
- isSystemMode: _angular_core.Signal<boolean>;
1210
- isSideMenuOpen: _angular_core.Signal<boolean>;
1211
- isSideMenuOverlay: _angular_core.Signal<boolean>;
1212
- isSmall: _angular_core.Signal<boolean>;
1213
- isMedium: _angular_core.Signal<boolean>;
1214
- isLarge: _angular_core.Signal<boolean>;
1215
- isMobileDevice: _angular_core.Signal<boolean>;
1216
- isTabletDevice: _angular_core.Signal<boolean>;
1217
- isDesktopDevice: _angular_core.Signal<boolean>;
1218
- isTouchScreen: _angular_core.Signal<boolean>;
1219
- isOverlayLoading: _angular_core.Signal<boolean>;
1220
- isNavigationLoading: _angular_core.Signal<boolean>;
1221
- isMenuHorizontal: _angular_core.Signal<boolean>;
1222
- changeThemeMode: (theme: _acorex_platform_themes_shared.AXPThemeMode) => void;
1223
- openSideMenu: () => void;
1224
- closeSideMenu: () => void;
1225
- setSideMenuWidth: (width: number) => void;
1226
- toggleSideMenu: () => void;
1227
- setNavigationLoading: (value: boolean, delay?: number) => void;
1228
- setOverlayLoading: (value: boolean, delay?: number) => void;
1229
- loadSettings: () => Promise<void>;
1230
- } & _ngrx_signals.StateSource<{
1231
- currentMode: _acorex_platform_themes_shared.AXPThemeMode;
1232
- currentPalette: string;
1233
- systemThemeMode: _acorex_platform_themes_shared.AXPThemeMode;
1234
- font: {
1235
- family: string;
1236
- size: string;
1237
- };
1238
- screenSize: _acorex_platform_themes_shared.AXPScreenSize;
1239
- deviceType: _acorex_platform_themes_shared.AXPDeviceType;
1240
- isTouchDevice: boolean;
1241
- overlayLoading: boolean;
1242
- navigationLoading: boolean;
1243
- overlayLoadingTaskCount: number;
1244
- navigationLoadingTaskCount: number;
1245
- sideMenuState: _acorex_platform_themes_shared.AXPSideMenuState;
1246
- sideMenuWidth: number;
1247
- menuOrientation: _acorex_platform_themes_shared.AXPMenuOrientation;
1248
- isPrinting: boolean;
1249
- }>;
1186
+ protected deviceService: AXPDeviceService;
1250
1187
  protected isMounted: _angular_core.WritableSignal<boolean>;
1251
1188
  readonly entity: _angular_core.WritableSignal<AXPEntity | null>;
1252
1189
  protected listNode: _angular_core.WritableSignal<AXPWidgetNode | null>;
@@ -6,9 +6,9 @@ import { AXClickEvent } from '@acorex/cdk/common';
6
6
  import * as i1 from '@acorex/cdk/drawer';
7
7
  import { AXDrawerItemDirective } from '@acorex/cdk/drawer';
8
8
  import * as _acorex_platform_core from '@acorex/platform/core';
9
- import { AXPActionMenuItem, AXPBreadcrumbItem, AXPBadge, AXPBackButton, AXPExecuteCommand, AXPExecuteCommandResult, AXPExpressionEvaluatorScope, AXPBroadcastEventService } from '@acorex/platform/core';
10
- import { AXPWorkflowService } from '@acorex/platform/workflow';
9
+ import { AXPActionMenuItem, AXPBreadcrumbItem, AXPBadge, AXPBackButton, AXPExecuteCommand, AXPDeviceService, AXPExecuteCommandResult, AXPExpressionEvaluatorScope, AXPBroadcastEventService } from '@acorex/platform/core';
11
10
  import { AXPCommandService, AXPPolicyEngineService } from '@acorex/platform/runtime';
11
+ import { AXPWorkflowService } from '@acorex/platform/workflow';
12
12
  import { AXToastService } from '@acorex/components/toast';
13
13
  import { AXFormatService } from '@acorex/core/format';
14
14
  import { AXTranslationService } from '@acorex/core/translation';
@@ -55,9 +55,6 @@ declare class AXPPageLayoutComponent {
55
55
  family: string;
56
56
  size: string;
57
57
  }>;
58
- screenSize: _angular_core.Signal<_acorex_platform_themes_shared.AXPScreenSize>;
59
- deviceType: _angular_core.Signal<_acorex_platform_themes_shared.AXPDeviceType>;
60
- isTouchDevice: _angular_core.Signal<boolean>;
61
58
  overlayLoading: _angular_core.Signal<boolean>;
62
59
  navigationLoading: _angular_core.Signal<boolean>;
63
60
  overlayLoadingTaskCount: _angular_core.Signal<number>;
@@ -70,14 +67,6 @@ declare class AXPPageLayoutComponent {
70
67
  isLightMode: _angular_core.Signal<boolean>;
71
68
  isSystemMode: _angular_core.Signal<boolean>;
72
69
  isSideMenuOpen: _angular_core.Signal<boolean>;
73
- isSideMenuOverlay: _angular_core.Signal<boolean>;
74
- isSmall: _angular_core.Signal<boolean>;
75
- isMedium: _angular_core.Signal<boolean>;
76
- isLarge: _angular_core.Signal<boolean>;
77
- isMobileDevice: _angular_core.Signal<boolean>;
78
- isTabletDevice: _angular_core.Signal<boolean>;
79
- isDesktopDevice: _angular_core.Signal<boolean>;
80
- isTouchScreen: _angular_core.Signal<boolean>;
81
70
  isOverlayLoading: _angular_core.Signal<boolean>;
82
71
  isNavigationLoading: _angular_core.Signal<boolean>;
83
72
  isMenuHorizontal: _angular_core.Signal<boolean>;
@@ -97,9 +86,6 @@ declare class AXPPageLayoutComponent {
97
86
  family: string;
98
87
  size: string;
99
88
  };
100
- screenSize: _acorex_platform_themes_shared.AXPScreenSize;
101
- deviceType: _acorex_platform_themes_shared.AXPDeviceType;
102
- isTouchDevice: boolean;
103
89
  overlayLoading: boolean;
104
90
  navigationLoading: boolean;
105
91
  overlayLoadingTaskCount: number;
@@ -109,6 +95,7 @@ declare class AXPPageLayoutComponent {
109
95
  menuOrientation: _acorex_platform_themes_shared.AXPMenuOrientation;
110
96
  isPrinting: boolean;
111
97
  }>;
98
+ protected deviceService: AXPDeviceService;
112
99
  protected startSideDrawer: _angular_core.Signal<AXDrawerItemDirective | undefined>;
113
100
  protected workflow: AXPWorkflowService;
114
101
  protected commandService: AXPCommandService;
@@ -133,9 +120,6 @@ declare abstract class AXPPageLayoutBaseComponent {
133
120
  family: string;
134
121
  size: string;
135
122
  }>;
136
- screenSize: _angular_core.Signal<_acorex_platform_themes_shared.AXPScreenSize>;
137
- deviceType: _angular_core.Signal<_acorex_platform_themes_shared.AXPDeviceType>;
138
- isTouchDevice: _angular_core.Signal<boolean>;
139
123
  overlayLoading: _angular_core.Signal<boolean>;
140
124
  navigationLoading: _angular_core.Signal<boolean>;
141
125
  overlayLoadingTaskCount: _angular_core.Signal<number>;
@@ -148,14 +132,6 @@ declare abstract class AXPPageLayoutBaseComponent {
148
132
  isLightMode: _angular_core.Signal<boolean>;
149
133
  isSystemMode: _angular_core.Signal<boolean>;
150
134
  isSideMenuOpen: _angular_core.Signal<boolean>;
151
- isSideMenuOverlay: _angular_core.Signal<boolean>;
152
- isSmall: _angular_core.Signal<boolean>;
153
- isMedium: _angular_core.Signal<boolean>;
154
- isLarge: _angular_core.Signal<boolean>;
155
- isMobileDevice: _angular_core.Signal<boolean>;
156
- isTabletDevice: _angular_core.Signal<boolean>;
157
- isDesktopDevice: _angular_core.Signal<boolean>;
158
- isTouchScreen: _angular_core.Signal<boolean>;
159
135
  isOverlayLoading: _angular_core.Signal<boolean>;
160
136
  isNavigationLoading: _angular_core.Signal<boolean>;
161
137
  isMenuHorizontal: _angular_core.Signal<boolean>;
@@ -175,9 +151,6 @@ declare abstract class AXPPageLayoutBaseComponent {
175
151
  family: string;
176
152
  size: string;
177
153
  };
178
- screenSize: _acorex_platform_themes_shared.AXPScreenSize;
179
- deviceType: _acorex_platform_themes_shared.AXPDeviceType;
180
- isTouchDevice: boolean;
181
154
  overlayLoading: boolean;
182
155
  navigationLoading: boolean;
183
156
  overlayLoadingTaskCount: number;
@@ -257,9 +230,6 @@ declare class AXPPopupLayoutComponent {
257
230
  family: string;
258
231
  size: string;
259
232
  }>;
260
- screenSize: _angular_core.Signal<_acorex_platform_themes_shared.AXPScreenSize>;
261
- deviceType: _angular_core.Signal<_acorex_platform_themes_shared.AXPDeviceType>;
262
- isTouchDevice: _angular_core.Signal<boolean>;
263
233
  overlayLoading: _angular_core.Signal<boolean>;
264
234
  navigationLoading: _angular_core.Signal<boolean>;
265
235
  overlayLoadingTaskCount: _angular_core.Signal<number>;
@@ -272,14 +242,6 @@ declare class AXPPopupLayoutComponent {
272
242
  isLightMode: _angular_core.Signal<boolean>;
273
243
  isSystemMode: _angular_core.Signal<boolean>;
274
244
  isSideMenuOpen: _angular_core.Signal<boolean>;
275
- isSideMenuOverlay: _angular_core.Signal<boolean>;
276
- isSmall: _angular_core.Signal<boolean>;
277
- isMedium: _angular_core.Signal<boolean>;
278
- isLarge: _angular_core.Signal<boolean>;
279
- isMobileDevice: _angular_core.Signal<boolean>;
280
- isTabletDevice: _angular_core.Signal<boolean>;
281
- isDesktopDevice: _angular_core.Signal<boolean>;
282
- isTouchScreen: _angular_core.Signal<boolean>;
283
245
  isOverlayLoading: _angular_core.Signal<boolean>;
284
246
  isNavigationLoading: _angular_core.Signal<boolean>;
285
247
  isMenuHorizontal: _angular_core.Signal<boolean>;
@@ -299,9 +261,6 @@ declare class AXPPopupLayoutComponent {
299
261
  family: string;
300
262
  size: string;
301
263
  };
302
- screenSize: _acorex_platform_themes_shared.AXPScreenSize;
303
- deviceType: _acorex_platform_themes_shared.AXPDeviceType;
304
- isTouchDevice: boolean;
305
264
  overlayLoading: boolean;
306
265
  navigationLoading: boolean;
307
266
  overlayLoadingTaskCount: number;
@@ -330,9 +289,6 @@ declare abstract class AXPPopupLayoutBaseComponent extends AXBasePageComponent {
330
289
  family: string;
331
290
  size: string;
332
291
  }>;
333
- screenSize: _angular_core.Signal<_acorex_platform_themes_shared.AXPScreenSize>;
334
- deviceType: _angular_core.Signal<_acorex_platform_themes_shared.AXPDeviceType>;
335
- isTouchDevice: _angular_core.Signal<boolean>;
336
292
  overlayLoading: _angular_core.Signal<boolean>;
337
293
  navigationLoading: _angular_core.Signal<boolean>;
338
294
  overlayLoadingTaskCount: _angular_core.Signal<number>;
@@ -345,14 +301,6 @@ declare abstract class AXPPopupLayoutBaseComponent extends AXBasePageComponent {
345
301
  isLightMode: _angular_core.Signal<boolean>;
346
302
  isSystemMode: _angular_core.Signal<boolean>;
347
303
  isSideMenuOpen: _angular_core.Signal<boolean>;
348
- isSideMenuOverlay: _angular_core.Signal<boolean>;
349
- isSmall: _angular_core.Signal<boolean>;
350
- isMedium: _angular_core.Signal<boolean>;
351
- isLarge: _angular_core.Signal<boolean>;
352
- isMobileDevice: _angular_core.Signal<boolean>;
353
- isTabletDevice: _angular_core.Signal<boolean>;
354
- isDesktopDevice: _angular_core.Signal<boolean>;
355
- isTouchScreen: _angular_core.Signal<boolean>;
356
304
  isOverlayLoading: _angular_core.Signal<boolean>;
357
305
  isNavigationLoading: _angular_core.Signal<boolean>;
358
306
  isMenuHorizontal: _angular_core.Signal<boolean>;
@@ -372,9 +320,6 @@ declare abstract class AXPPopupLayoutBaseComponent extends AXBasePageComponent {
372
320
  family: string;
373
321
  size: string;
374
322
  };
375
- screenSize: _acorex_platform_themes_shared.AXPScreenSize;
376
- deviceType: _acorex_platform_themes_shared.AXPDeviceType;
377
- isTouchDevice: boolean;
378
323
  overlayLoading: boolean;
379
324
  navigationLoading: boolean;
380
325
  overlayLoadingTaskCount: number;
@@ -621,6 +566,7 @@ declare class AXPLayoutDetailsViewComponent extends AXPPageLayoutBaseComponent i
621
566
  protected router: Router;
622
567
  protected route: ActivatedRoute;
623
568
  protected eventService: AXPBroadcastEventService;
569
+ protected deviceService: AXPDeviceService;
624
570
  private onSelectionChangeSubscription?;
625
571
  private readonly destroyed$;
626
572
  protected form: _angular_core.Signal<AXFormComponent | undefined>;