@acorex/platform 20.7.7 → 20.7.8
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/fesm2022/acorex-platform-layout-entity.mjs +70 -25
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +1 -0
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/layout/entity/index.d.ts +3 -2
- package/package.json +1 -1
package/layout/entity/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AXPExecuteCommandResult, AXPMetaData, AXPDataSourceDefinitionProvider, AXPDataSourceDefinition, AXPGridLayoutOptions, AXPBreadcrumbItem, AXPFilterQuery, AXPFilterDefinition, AXPExecuteCommand, AXPUserReference, AXPQueryRequest, AXPPagedListResult, AXPCategoryEntity as AXPCategoryEntity$1, AXPEntityOp, AXPMiddlewareErrorResponse, AXHighlightService, AXPExpression, AXPColumnQuery, AXPSortDefinition, AXPDeviceService, AXPBroadcastEventService, AXPActionMenuItem } from '@acorex/platform/core';
|
|
1
|
+
import { AXPExecuteCommandResult, AXPMetaData, AXPDataSourceDefinitionProvider, AXPDataSourceDefinition, AXPGridLayoutOptions, AXPBreadcrumbItem, AXPFilterQuery, AXPFilterDefinition, AXPExecuteCommand, AXPUserReference, AXPQueryRequest, AXPPagedListResult, AXPCategoryEntity as AXPCategoryEntity$1, AXPEntityOp, AXPMiddlewareErrorResponse, AXHighlightService, AXPExpression, AXPColumnQuery, AXPSortDefinition, AXPDeviceService, AXPBroadcastEventService, AXPExpressionEvaluatorService, AXPActionMenuItem } from '@acorex/platform/core';
|
|
2
2
|
import { AXPCommand, AXPQueryExecutor, AXPCommandService, AXPQuery } from '@acorex/platform/runtime';
|
|
3
3
|
import * as _angular_core from '@angular/core';
|
|
4
4
|
import { ElementRef, InjectionToken, Injector, Type, OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
@@ -1863,6 +1863,7 @@ declare class AXPEntityListWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
1863
1863
|
protected deviceService: AXPDeviceService;
|
|
1864
1864
|
protected commandService: AXPCommandService;
|
|
1865
1865
|
protected eventService: AXPBroadcastEventService;
|
|
1866
|
+
protected expressionEvaluator: AXPExpressionEvaluatorService;
|
|
1866
1867
|
protected isMounted: _angular_core.WritableSignal<boolean>;
|
|
1867
1868
|
readonly entity: _angular_core.WritableSignal<AXPEntity | null>;
|
|
1868
1869
|
protected listNode: _angular_core.WritableSignal<AXPWidgetNode | null>;
|
|
@@ -2044,7 +2045,7 @@ declare class AXPLookupWidgetEditComponent extends AXPValueWidgetComponent<any>
|
|
|
2044
2045
|
protected componentLook: _angular_core.Signal<LookupWidgetLookBase | undefined>;
|
|
2045
2046
|
protected expose: _angular_core.Signal<string | any[] | undefined>;
|
|
2046
2047
|
protected entity: _angular_core.Signal<string>;
|
|
2047
|
-
protected disabled: _angular_core.Signal<string>;
|
|
2048
|
+
protected disabled: _angular_core.Signal<string | boolean>;
|
|
2048
2049
|
protected columns: _angular_core.Signal<string[]>;
|
|
2049
2050
|
protected textField: _angular_core.Signal<string>;
|
|
2050
2051
|
protected hasClearButton: _angular_core.Signal<boolean>;
|