@praxisui/list 8.0.0-beta.84 → 8.0.0-beta.86
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/praxisui-list.mjs +107 -23
- package/package.json +6 -6
- package/types/praxisui-list.d.ts +8 -2
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/list",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.86",
|
|
4
4
|
"description": "List components and helpers for Praxis UI.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
7
7
|
"@angular/core": "^21.0.0",
|
|
8
8
|
"@angular/material": "^21.0.0",
|
|
9
|
-
"@praxisui/dynamic-fields": "^8.0.0-beta.
|
|
9
|
+
"@praxisui/dynamic-fields": "^8.0.0-beta.86",
|
|
10
10
|
"rxjs": ">=7 <9",
|
|
11
11
|
"@angular/forms": "^21.0.0",
|
|
12
12
|
"@angular/router": "^21.0.0",
|
|
13
|
-
"@praxisui/ai": "^8.0.0-beta.
|
|
14
|
-
"@praxisui/core": "^8.0.0-beta.
|
|
15
|
-
"@praxisui/rich-content": "^8.0.0-beta.
|
|
16
|
-
"@praxisui/settings-panel": "^8.0.0-beta.
|
|
13
|
+
"@praxisui/ai": "^8.0.0-beta.86",
|
|
14
|
+
"@praxisui/core": "^8.0.0-beta.86",
|
|
15
|
+
"@praxisui/rich-content": "^8.0.0-beta.86",
|
|
16
|
+
"@praxisui/settings-panel": "^8.0.0-beta.86"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"tslib": "^2.3.0",
|
package/types/praxisui-list.d.ts
CHANGED
|
@@ -401,6 +401,7 @@ declare class ListDataService<T = any> {
|
|
|
401
401
|
getQuerySnapshot(): Record<string, any>;
|
|
402
402
|
groupedStream(): Observable<ListSection<T>[]>;
|
|
403
403
|
private buildConfigSignature;
|
|
404
|
+
private buildRequestSignature;
|
|
404
405
|
private buildLocalDataSignature;
|
|
405
406
|
private ensureObjectId;
|
|
406
407
|
private safeSerialize;
|
|
@@ -464,7 +465,9 @@ declare class PraxisList implements OnInit, OnChanges, OnDestroy {
|
|
|
464
465
|
listId: string;
|
|
465
466
|
componentInstanceId?: string;
|
|
466
467
|
configPersistenceStrategy: 'local-first' | 'input-first';
|
|
467
|
-
|
|
468
|
+
private runtimeQueryContext?;
|
|
469
|
+
set queryContext(value: PraxisDataQueryContext | null | undefined);
|
|
470
|
+
get queryContext(): PraxisDataQueryContext | null | undefined;
|
|
468
471
|
form?: FormGroup | null;
|
|
469
472
|
set enableCustomization(value: boolean);
|
|
470
473
|
get enableCustomization(): boolean;
|
|
@@ -614,6 +617,7 @@ declare class PraxisList implements OnInit, OnChanges, OnDestroy {
|
|
|
614
617
|
private buildMetricView;
|
|
615
618
|
private buildComposeView;
|
|
616
619
|
private buildMetricProgress;
|
|
620
|
+
private isEmptyComposeNode;
|
|
617
621
|
private metricLayout;
|
|
618
622
|
private metricAlign;
|
|
619
623
|
private metricIconPosition;
|
|
@@ -793,7 +797,7 @@ declare class PraxisList implements OnInit, OnChanges, OnDestroy {
|
|
|
793
797
|
ratingIconStyle(def?: any): string;
|
|
794
798
|
ratingRange(def?: any): number[];
|
|
795
799
|
trackBySection: (_: number, s: ListSection<any>) => string | number;
|
|
796
|
-
trackByItem: (i: number, it: any) =>
|
|
800
|
+
trackByItem: (i: number, it: any) => string | number | boolean;
|
|
797
801
|
isActionLoading(actionId: string, item: any, index: number): boolean;
|
|
798
802
|
private evaluateActionVisibility;
|
|
799
803
|
private evaluateRuntimeCondition;
|
|
@@ -807,6 +811,8 @@ declare class PraxisList implements OnInit, OnChanges, OnDestroy {
|
|
|
807
811
|
private toggleExpanded;
|
|
808
812
|
private syncExpansionState;
|
|
809
813
|
private itemExpansionKey;
|
|
814
|
+
private itemStableKey;
|
|
815
|
+
private isStablePrimitiveKey;
|
|
810
816
|
t(key: string, fallback: string): string;
|
|
811
817
|
private tWithLocale;
|
|
812
818
|
private ensureExpansionItemObjectId;
|