@praxisui/core 9.0.56 → 9.0.57
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-09-
|
|
3
|
+
"generatedAt": "2026-09-01T14:12:48.929Z",
|
|
4
4
|
"packageName": "@praxisui/core",
|
|
5
|
-
"packageVersion": "9.0.
|
|
5
|
+
"packageVersion": "9.0.57",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 4,
|
|
@@ -39593,7 +39593,25 @@ class DynamicWidgetPageComponent {
|
|
|
39593
39593
|
!endpoint.ref.nestedPath?.length);
|
|
39594
39594
|
}
|
|
39595
39595
|
areNestedPathsEqual(left, right) {
|
|
39596
|
-
|
|
39596
|
+
const leftPath = left == null ? [] : left;
|
|
39597
|
+
const rightPath = right == null ? [] : right;
|
|
39598
|
+
if (!Array.isArray(leftPath) || !Array.isArray(rightPath)) {
|
|
39599
|
+
return false;
|
|
39600
|
+
}
|
|
39601
|
+
if (leftPath.length !== rightPath.length) {
|
|
39602
|
+
return false;
|
|
39603
|
+
}
|
|
39604
|
+
return leftPath.every((leftSegment, index) => {
|
|
39605
|
+
const rightSegment = rightPath[index];
|
|
39606
|
+
if (!leftSegment || !rightSegment) {
|
|
39607
|
+
return leftSegment === rightSegment;
|
|
39608
|
+
}
|
|
39609
|
+
return leftSegment.kind === rightSegment.kind
|
|
39610
|
+
&& leftSegment.id === rightSegment.id
|
|
39611
|
+
&& leftSegment.key === rightSegment.key
|
|
39612
|
+
&& leftSegment.index === rightSegment.index
|
|
39613
|
+
&& leftSegment.componentType === rightSegment.componentType;
|
|
39614
|
+
});
|
|
39597
39615
|
}
|
|
39598
39616
|
stateFromCompositionSnapshot(previousState, primaryValues) {
|
|
39599
39617
|
const normalized = this.stateRuntime.normalizeState(previousState);
|
package/package.json
CHANGED