@acorex/platform 20.3.0-next.21 → 20.3.0-next.23

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.
@@ -443,6 +443,7 @@ interface AXPDataSelectorColumn {
443
443
  name: string;
444
444
  title: string;
445
445
  visible: boolean;
446
+ dataPath?: string;
446
447
  widget: {
447
448
  type: string;
448
449
  options: any;
@@ -1224,6 +1224,7 @@ declare class AXPEntityListWidgetViewComponent extends AXPValueWidgetComponent {
1224
1224
  protected excludeColumns: _angular_core.Signal<string[]>;
1225
1225
  protected includeColumns: _angular_core.Signal<string[]>;
1226
1226
  protected externalActions: _angular_core.Signal<AXPEntityAction[]>;
1227
+ protected maxHeight: _angular_core.Signal<string>;
1227
1228
  protected showEntityActions: _angular_core.Signal<any>;
1228
1229
  protected showToolbar: _angular_core.Signal<any>;
1229
1230
  protected allActions: _angular_core.Signal<AXPEntityCommandTriggerViewModel[]>;
@@ -1638,6 +1639,7 @@ declare class AXPEntityPerformDeleteAction extends AXPWorkflowAction {
1638
1639
  private dialogService;
1639
1640
  private loadingDialog;
1640
1641
  private translationService;
1642
+ private settingService;
1641
1643
  execute(context: AXPWorkflowContext): Promise<void>;
1642
1644
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPEntityPerformDeleteAction, never>;
1643
1645
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPEntityPerformDeleteAction>;
@@ -650,7 +650,6 @@ declare class AXPLayoutDetailsViewComponent extends AXPPageLayoutBaseComponent i
650
650
  protected getPageTitle(): Promise<string>;
651
651
  getPageDescription(): Promise<string | null>;
652
652
  getBackButton(): Promise<AXPBackButton | null>;
653
- getPageBadge(): Promise<AXPBadge | null>;
654
653
  onBackButtonClick(): Promise<void>;
655
654
  execute(command: AXPExecuteCommand): Promise<void>;
656
655
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLayoutDetailsViewComponent, never>;
@@ -149,6 +149,7 @@ interface AXPWidgetTypesMap {
149
149
  dateTimeFilter: 'datetime-filter';
150
150
  booleanFilter: 'boolean-filter';
151
151
  lookupFilter: 'lookup-filter';
152
+ timeDurationFilter: 'time-duration-filter';
152
153
  flexOptions: 'flex-options';
153
154
  flexItemOptions: 'flex-item-options';
154
155
  gridOptions: 'grid-options';
@@ -183,6 +184,7 @@ interface AXPWidgetTypesMap {
183
184
  fontStyleChooser: 'font-style-chooser';
184
185
  fontSizeChooser: 'font-size-chooser';
185
186
  iconChooser: 'icon-chooser';
187
+ icon: 'icon';
186
188
  themeColorChooser: 'theme-color-chooser';
187
189
  panel: 'panel';
188
190
  notification: 'notification';
@@ -331,7 +333,7 @@ interface AXPWidgetConfig<T = any> {
331
333
  type: AXPExtractWidgetConfig<T>['type'];
332
334
  designer?: AXPExtractWidgetConfig<T>['designer'];
333
335
  options?: Record<string, any>;
334
- defaultFilterWidgetName?: 'string-filter' | 'number-filter' | 'datetime-filter' | 'boolean-filter' | 'select-filter' | 'lookup-filter';
336
+ defaultFilterWidgetName?: 'string-filter' | 'number-filter' | 'datetime-filter' | 'boolean-filter' | 'select-filter' | 'lookup-filter' | 'time-duration-filter';
335
337
  }
336
338
  interface extendedWidget {
337
339
  widget: AXPWidgetConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/platform",
3
- "version": "20.3.0-next.21",
3
+ "version": "20.3.0-next.23",
4
4
  "peerDependencies": {
5
5
  "@acorex/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",
6
6
  "@acorex/core": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",