@praxisui/page-builder 9.0.0-beta.14 → 9.0.0-beta.16
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/README.md +14 -0
- package/ai/component-registry.json +2 -2
- package/fesm2022/praxisui-page-builder.mjs +656 -38
- package/package.json +4 -4
- package/types/praxisui-page-builder.d.ts +28 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/page-builder",
|
|
3
|
-
"version": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.16",
|
|
4
4
|
"description": "Page and widget builder utilities for Praxis UI (grid, dynamic widgets, editors).",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"@angular/forms": "^21.0.0",
|
|
9
9
|
"@angular/cdk": "^21.0.0",
|
|
10
10
|
"@angular/material": "^21.0.0",
|
|
11
|
-
"@praxisui/ai": "^9.0.0-beta.
|
|
12
|
-
"@praxisui/core": "^9.0.0-beta.
|
|
13
|
-
"@praxisui/settings-panel": "^9.0.0-beta.
|
|
11
|
+
"@praxisui/ai": "^9.0.0-beta.16",
|
|
12
|
+
"@praxisui/core": "^9.0.0-beta.16",
|
|
13
|
+
"@praxisui/settings-panel": "^9.0.0-beta.16",
|
|
14
14
|
"rxjs": "~7.8.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
@@ -456,6 +456,7 @@ declare class ConnectionEditorComponent {
|
|
|
456
456
|
readonly selectedWidgetId: _angular_core.WritableSignal<string | null>;
|
|
457
457
|
readonly selectedLinkId: _angular_core.WritableSignal<string | null>;
|
|
458
458
|
readonly recentLinkId: _angular_core.WritableSignal<string | null>;
|
|
459
|
+
readonly lastCreatedLinkId: _angular_core.WritableSignal<string | null>;
|
|
459
460
|
readonly hoveredLinkId: _angular_core.WritableSignal<string | null>;
|
|
460
461
|
readonly expandedNodeId: _angular_core.WritableSignal<string | null>;
|
|
461
462
|
readonly activeDockTab: _angular_core.WritableSignal<ConnectionEditorDockTab>;
|
|
@@ -553,6 +554,8 @@ declare class ConnectionEditorComponent {
|
|
|
553
554
|
readonly modeMatchedNodeIds: _angular_core.Signal<Set<string>>;
|
|
554
555
|
readonly modeMatchedPortIds: _angular_core.Signal<Set<string>>;
|
|
555
556
|
readonly smartSuggestions: _angular_core.Signal<ConnectionEditorSuggestion[]>;
|
|
557
|
+
readonly recommendedMasterDetailSuggestion: _angular_core.Signal<ConnectionEditorSuggestion | null>;
|
|
558
|
+
readonly masterDetailReadinessDiagnostic: _angular_core.Signal<string | null>;
|
|
556
559
|
readonly traceSteps: _angular_core.Signal<ConnectionEditorTraceStep[]>;
|
|
557
560
|
readonly activeTraceStepIndex: _angular_core.Signal<number>;
|
|
558
561
|
readonly traceActiveStep: _angular_core.Signal<ConnectionEditorTraceStep>;
|
|
@@ -670,6 +673,9 @@ declare class ConnectionEditorComponent {
|
|
|
670
673
|
segmentLabelTransform(segment: ConnectionEditorSegmentGeometry, node: ConnectionEditorNode): string;
|
|
671
674
|
nodeRotationHandleTransform(node: ConnectionEditorNode): string;
|
|
672
675
|
segmentDisplayLabel(label: string): string;
|
|
676
|
+
isNestedPort(port: ConnectionEditorPort): boolean;
|
|
677
|
+
nestedPortPathText(port: ConnectionEditorPort): string;
|
|
678
|
+
portDescription(port: ConnectionEditorPort): string;
|
|
673
679
|
segmentKindGlyph(kind: ConnectionEditorPortKind): string;
|
|
674
680
|
nodeIcon(node: ConnectionEditorNode): string;
|
|
675
681
|
dockTabLabel(tab: ConnectionEditorDockTabDefinition): string;
|
|
@@ -677,6 +683,9 @@ declare class ConnectionEditorComponent {
|
|
|
677
683
|
dockPanelId(tab: ConnectionEditorDockTab): string;
|
|
678
684
|
dockToggleLabel(): string;
|
|
679
685
|
segmentKindText(kind: ConnectionEditorPortKind): string;
|
|
686
|
+
connectionHasNestedEndpoint(connection: ConnectionEditorConnection): boolean;
|
|
687
|
+
connectionNestedSummary(connection: ConnectionEditorConnection): string;
|
|
688
|
+
private formatNestedPath;
|
|
680
689
|
connectionHasErrors(connection: ConnectionEditorConnection): boolean;
|
|
681
690
|
connectionHasWarnings(connection: ConnectionEditorConnection): boolean;
|
|
682
691
|
connectionHasPolicy(connection: ConnectionEditorConnection): boolean;
|
|
@@ -696,7 +705,24 @@ declare class ConnectionEditorComponent {
|
|
|
696
705
|
diagnosticSeverityLabel(diagnostic: ConnectionEditorDiagnostic): string;
|
|
697
706
|
diagnosticText(diagnostic: ConnectionEditorDiagnostic): string;
|
|
698
707
|
suggestionReasonText(reason: ConnectionEditorSuggestionReason): string;
|
|
708
|
+
connectionSemanticLabel(connection: ConnectionEditorConnection): string;
|
|
709
|
+
connectionHumanSummary(connection: ConnectionEditorConnection): string;
|
|
710
|
+
connectionDeliveryPreview(connection: ConnectionEditorConnection): string;
|
|
711
|
+
suggestionSemanticLabel(suggestion: ConnectionEditorSuggestion): string;
|
|
712
|
+
suggestionPreviewText(suggestion: ConnectionEditorSuggestion): string;
|
|
713
|
+
suggestionOutcomeText(suggestion: ConnectionEditorSuggestion): string;
|
|
714
|
+
suggestionRouteTechnicalText(suggestion: ConnectionEditorSuggestion): string;
|
|
715
|
+
suggestionActionText(suggestion: ConnectionEditorSuggestion): string;
|
|
716
|
+
connectionCreatedFeedback(connection: ConnectionEditorConnection): string;
|
|
717
|
+
portAriaLabel(node: ConnectionEditorNode, port: ConnectionEditorPort, role: 'input' | 'output' | 'state'): string;
|
|
699
718
|
transformKindText(kind: TransformKind): string;
|
|
719
|
+
private readableEndpointLabel;
|
|
720
|
+
private isSelectionToDetailConnection;
|
|
721
|
+
private isSuggestedMasterDetail;
|
|
722
|
+
private isCanonicalSelectionToDetailConnection;
|
|
723
|
+
private isTableSelectionOutput;
|
|
724
|
+
private isFormResourceIdInput;
|
|
725
|
+
private portComponentType;
|
|
700
726
|
expandedPorts(node: ConnectionEditorNode): ConnectionEditorPort[];
|
|
701
727
|
movePort(node: ConnectionEditorNode, port: ConnectionEditorPort, direction: -1 | 1, event: Event): void;
|
|
702
728
|
toggleSegments(node: ConnectionEditorNode, event: Event): void;
|
|
@@ -758,6 +784,7 @@ declare class ConnectionEditorComponent {
|
|
|
758
784
|
private showInvalidDropFeedback;
|
|
759
785
|
private clearInvalidDropFeedback;
|
|
760
786
|
private markRecentLink;
|
|
787
|
+
private scrollConnectionSidePanelToTop;
|
|
761
788
|
private clearPreviewConnectionState;
|
|
762
789
|
private shouldIgnoreEditorShortcut;
|
|
763
790
|
private scrollActiveModeIntoView;
|
|
@@ -1691,6 +1718,7 @@ declare class DynamicPageBuilderComponent implements OnChanges, OnDestroy {
|
|
|
1691
1718
|
savedPageDeleteRequested: EventEmitter<void>;
|
|
1692
1719
|
readonly currentPage: _angular_core.WritableSignal<WidgetPageDefinition>;
|
|
1693
1720
|
readonly hasPageWidgets: _angular_core.Signal<boolean>;
|
|
1721
|
+
readonly hasRecommendedConnectionSuggestion: _angular_core.Signal<boolean>;
|
|
1694
1722
|
readonly premiumReadinessIssues: _angular_core.Signal<PageBuilderPremiumReadinessIssue[]>;
|
|
1695
1723
|
readonly connectionsViewerOpen: _angular_core.WritableSignal<boolean>;
|
|
1696
1724
|
readonly agenticAuthoringOpen: _angular_core.WritableSignal<boolean>;
|