@acorex/platform 20.6.0-next.1 → 20.6.0-next.2
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-widget-core.mjs +68 -49
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +3 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/layout/widget-core/index.d.ts +5 -0
- package/package.json +1 -1
|
@@ -470,6 +470,11 @@ declare abstract class AXPDataListWidgetComponent extends AXPValueWidgetComponen
|
|
|
470
470
|
protected dataSource: _angular_core.WritableSignal<AXDataSource<any>>;
|
|
471
471
|
protected isReady: _angular_core.Signal<boolean>;
|
|
472
472
|
selectedItems: _angular_core.WritableSignal<any[]>;
|
|
473
|
+
/**
|
|
474
|
+
* Track the last loaded string dataSource reference to prevent infinite loops
|
|
475
|
+
* Only used for string-based datasources (not arrays or AXDataSource instances)
|
|
476
|
+
*/
|
|
477
|
+
private lastStringDataSourceRef;
|
|
473
478
|
private rf;
|
|
474
479
|
protected extractItem(item: unknown): Promise<any>;
|
|
475
480
|
private effect2;
|