@praxisui/tabs 9.0.4-rc.24 → 9.0.4-rc.26
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"generatedAt": "2026-08-
|
|
3
|
+
"generatedAt": "2026-08-04T22:30:51.687Z",
|
|
4
4
|
"packageName": "@praxisui/tabs",
|
|
5
|
-
"packageVersion": "9.0.4-rc.
|
|
5
|
+
"packageVersion": "9.0.4-rc.26",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 1,
|
|
@@ -3195,6 +3195,11 @@ class PraxisTabs {
|
|
|
3195
3195
|
this.loadStoredConfigForCurrentIdentity({ warnMissingId: false });
|
|
3196
3196
|
}
|
|
3197
3197
|
if (changes['config'] && this.config) {
|
|
3198
|
+
// Composition links may replace the container config while preserving the
|
|
3199
|
+
// identity of an affected nested widget. Cached clones must not keep the
|
|
3200
|
+
// previous inputs in that case (for example, a newly selected parent
|
|
3201
|
+
// identity projected into a related-resource outlet).
|
|
3202
|
+
this.widgetDefinitionCache = new WeakMap();
|
|
3198
3203
|
// Reset loaded caches on config change and seed with current selections
|
|
3199
3204
|
this.syncSelectionFromConfig();
|
|
3200
3205
|
this.syncGeneratedContentForm();
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/tabs",
|
|
3
|
-
"version": "9.0.4-rc.
|
|
3
|
+
"version": "9.0.4-rc.26",
|
|
4
4
|
"description": "Configurable tabs (group and nav) for Praxis UI with metadata-driven content and runtime editor.",
|
|
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
9
|
"@angular/cdk": "^21.0.0",
|
|
10
|
-
"@praxisui/core": "^9.0.4-rc.
|
|
11
|
-
"@praxisui/dynamic-fields": "^9.0.4-rc.
|
|
12
|
-
"@praxisui/settings-panel": "^9.0.4-rc.
|
|
10
|
+
"@praxisui/core": "^9.0.4-rc.26",
|
|
11
|
+
"@praxisui/dynamic-fields": "^9.0.4-rc.26",
|
|
12
|
+
"@praxisui/settings-panel": "^9.0.4-rc.26",
|
|
13
13
|
"@angular/forms": "^21.0.0",
|
|
14
14
|
"@angular/router": "^21.0.0",
|
|
15
|
-
"@praxisui/ai": "^9.0.4-rc.
|
|
15
|
+
"@praxisui/ai": "^9.0.4-rc.26",
|
|
16
16
|
"rxjs": "~7.8.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
package/types/praxisui-tabs.d.ts
CHANGED
|
@@ -207,7 +207,7 @@ declare class PraxisTabs implements OnInit, OnChanges, OnDestroy {
|
|
|
207
207
|
private navLoaded;
|
|
208
208
|
private controlledSelectedIndex?;
|
|
209
209
|
private readonly destroy$;
|
|
210
|
-
private
|
|
210
|
+
private widgetDefinitionCache;
|
|
211
211
|
private readonly generatedContentForm;
|
|
212
212
|
ngOnInit(): void;
|
|
213
213
|
ngOnChanges(changes: SimpleChanges): void;
|