@praxisui/page-builder 9.0.0-beta.84 → 9.0.0-beta.85
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-07-
|
|
3
|
+
"generatedAt": "2026-07-21T15:34:49.320Z",
|
|
4
4
|
"packageName": "@praxisui/page-builder",
|
|
5
|
-
"packageVersion": "9.0.0-beta.
|
|
5
|
+
"packageVersion": "9.0.0-beta.85",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 1,
|
|
@@ -2751,6 +2751,7 @@ const PRAXIS_PAGE_BUILDER_EN_US = {
|
|
|
2751
2751
|
'praxis.pageBuilder.agentic.context.governedDomainContextResolved': 'Available',
|
|
2752
2752
|
'praxis.pageBuilder.agentic.context.governedDomainContextRequestedUnavailable': 'Requested, but unavailable',
|
|
2753
2753
|
'praxis.pageBuilder.agentic.context.governedDomainContextNotRequested': 'Not requested',
|
|
2754
|
+
'praxis.pageBuilder.agentic.context.governedDomainContextUsedInDecision': 'Used in the semantic decision',
|
|
2754
2755
|
'praxis.pageBuilder.agentic.context.governedDomainContextUnknown': 'unknown',
|
|
2755
2756
|
'praxis.pageBuilder.agentic.context.governedDomainContextPolicy': 'Policy profile',
|
|
2756
2757
|
'praxis.pageBuilder.agentic.context.governedDomainContextSource': 'Context source',
|
|
@@ -3371,6 +3372,7 @@ const PRAXIS_PAGE_BUILDER_PT_BR = {
|
|
|
3371
3372
|
'praxis.pageBuilder.agentic.context.governedDomainContextResolved': 'Disponível',
|
|
3372
3373
|
'praxis.pageBuilder.agentic.context.governedDomainContextRequestedUnavailable': 'Solicitado, mas indisponível',
|
|
3373
3374
|
'praxis.pageBuilder.agentic.context.governedDomainContextNotRequested': 'Não solicitado',
|
|
3375
|
+
'praxis.pageBuilder.agentic.context.governedDomainContextUsedInDecision': 'Usado na decisão semântica',
|
|
3374
3376
|
'praxis.pageBuilder.agentic.context.governedDomainContextUnknown': 'desconhecido',
|
|
3375
3377
|
'praxis.pageBuilder.agentic.context.governedDomainContextPolicy': 'Perfil de política',
|
|
3376
3378
|
'praxis.pageBuilder.agentic.context.governedDomainContextSource': 'Fonte do contexto',
|
|
@@ -16413,11 +16415,11 @@ class PageBuilderAgenticAuthoringTurnFlow {
|
|
|
16413
16415
|
if (reservedKpiKey) {
|
|
16414
16416
|
return reservedKpiKey;
|
|
16415
16417
|
}
|
|
16416
|
-
const
|
|
16418
|
+
const resourcePathSegments = this.dashboardRepairResourcePath(contextHints)
|
|
16417
16419
|
.split('?')[0]
|
|
16418
16420
|
.split('/')
|
|
16419
|
-
.filter(Boolean)
|
|
16420
|
-
|
|
16421
|
+
.filter(Boolean);
|
|
16422
|
+
const resourceSegment = resourcePathSegments[resourcePathSegments.length - 1]
|
|
16421
16423
|
?.normalize('NFD')
|
|
16422
16424
|
.replace(/[\u0300-\u036f]/g, '')
|
|
16423
16425
|
.toLowerCase()
|
|
@@ -20063,7 +20065,7 @@ function projectKnowledgeTarget(changeSet, conceptKey) {
|
|
|
20063
20065
|
};
|
|
20064
20066
|
}
|
|
20065
20067
|
|
|
20066
|
-
const
|
|
20068
|
+
const AGENTIC_AUTHORING_TURN_INACTIVITY_TIMEOUT_MS = 90_000;
|
|
20067
20069
|
const AGENTIC_PAGE_COMPOSITION_REQUEST_OUTPUT = 'agenticPageCompositionRequested';
|
|
20068
20070
|
class DynamicPageBuilderComponent {
|
|
20069
20071
|
dialog;
|
|
@@ -20100,6 +20102,7 @@ class DynamicPageBuilderComponent {
|
|
|
20100
20102
|
agenticAuthoringEtag;
|
|
20101
20103
|
agenticAuthoringIncludeLlmDiagnostics = false;
|
|
20102
20104
|
agenticAuthoringEnableStreaming = false;
|
|
20105
|
+
agenticAuthoringVoiceInputMode = 'disabled';
|
|
20103
20106
|
agenticAuthoringContextHints;
|
|
20104
20107
|
showPageLifecycleActions = false;
|
|
20105
20108
|
canDeleteSavedPage = false;
|
|
@@ -20170,7 +20173,7 @@ class DynamicPageBuilderComponent {
|
|
|
20170
20173
|
agenticTurnController;
|
|
20171
20174
|
agenticTurnCancel$ = new Subject();
|
|
20172
20175
|
agenticTurnRunId = 0;
|
|
20173
|
-
|
|
20176
|
+
agenticAuthoringTurnInactivityTimeoutMs = AGENTIC_AUTHORING_TURN_INACTIVITY_TIMEOUT_MS;
|
|
20174
20177
|
sharedRuleHandoffRevision = 0;
|
|
20175
20178
|
agenticAuthoringPanelLayoutTouched = false;
|
|
20176
20179
|
observabilityMetricsSubscription;
|
|
@@ -21514,7 +21517,18 @@ class DynamicPageBuilderComponent {
|
|
|
21514
21517
|
this.clearProjectKnowledgeCockpitState();
|
|
21515
21518
|
this.agenticAuthoringStatus.set(this.tx('agentic.status.resolvingIntent', 'Entendendo o pedido...'));
|
|
21516
21519
|
try {
|
|
21517
|
-
const
|
|
21520
|
+
const actionContextHints = action.contextHints
|
|
21521
|
+
? this.toRecord(this.cloneValue(action.contextHints)) ?? undefined
|
|
21522
|
+
: undefined;
|
|
21523
|
+
const contextHints = actionContextHints
|
|
21524
|
+
? {
|
|
21525
|
+
...actionContextHints,
|
|
21526
|
+
recommendedIntent: {
|
|
21527
|
+
id: intent.id,
|
|
21528
|
+
...actionContextHints,
|
|
21529
|
+
},
|
|
21530
|
+
}
|
|
21531
|
+
: undefined;
|
|
21518
21532
|
await this.consumeAgenticTurn(this.ensureAgenticTurnController().submitPrompt(prompt, {
|
|
21519
21533
|
kind: 'recommended-intent',
|
|
21520
21534
|
id: intent.id,
|
|
@@ -21581,16 +21595,17 @@ class DynamicPageBuilderComponent {
|
|
|
21581
21595
|
&& !this.isGovernedConfirmationQuickReply(reply, contextHints)
|
|
21582
21596
|
? 'clarify'
|
|
21583
21597
|
: replyKind || 'quick-reply';
|
|
21584
|
-
|
|
21598
|
+
const turnStates$ = controller.submitPrompt(submittedPrompt, {
|
|
21585
21599
|
kind: actionKind,
|
|
21586
21600
|
id: reply.id,
|
|
21587
|
-
value: reply.prompt,
|
|
21601
|
+
value: this.cloneValue(reply.value ?? reply.prompt),
|
|
21588
21602
|
displayPrompt: visiblePrompt,
|
|
21589
21603
|
contextHints: activeSemanticDecision
|
|
21590
21604
|
? { ...(contextHints ?? {}), semanticDecision: activeSemanticDecision }
|
|
21591
21605
|
: contextHints,
|
|
21592
21606
|
activeSemanticDecision,
|
|
21593
|
-
})
|
|
21607
|
+
});
|
|
21608
|
+
await this.consumeAgenticTurn(turnStates$, turnRunId);
|
|
21594
21609
|
this.agenticAuthoringPrompt.set('');
|
|
21595
21610
|
}
|
|
21596
21611
|
catch (error) {
|
|
@@ -21616,10 +21631,7 @@ class DynamicPageBuilderComponent {
|
|
|
21616
21631
|
return (reply.label || prompt || this.tx('agentic.quickReplies.confirm', 'Confirm')).trim();
|
|
21617
21632
|
}
|
|
21618
21633
|
if (!this.isResourceQuickReply(reply, contextHints)) {
|
|
21619
|
-
return prompt;
|
|
21620
|
-
}
|
|
21621
|
-
if (this.isHumanSafeResourceQuickReplyPrompt(prompt, contextHints)) {
|
|
21622
|
-
return prompt;
|
|
21634
|
+
return (reply.label || prompt).trim();
|
|
21623
21635
|
}
|
|
21624
21636
|
const label = (reply.label || this.describeResourceContext(contextHints) || reply.prompt).trim();
|
|
21625
21637
|
return this.tx('agentic.quickReplies.resourceSelectionPrompt', 'Usar {label} como fonte de dados.')
|
|
@@ -23122,10 +23134,10 @@ class DynamicPageBuilderComponent {
|
|
|
23122
23134
|
return of(state);
|
|
23123
23135
|
}
|
|
23124
23136
|
return from(this.applyAgenticTurnState(state)).pipe(map(() => state));
|
|
23125
|
-
}),
|
|
23126
|
-
|
|
23137
|
+
}), timeout({
|
|
23138
|
+
each: this.agenticAuthoringTurnInactivityTimeoutMs,
|
|
23127
23139
|
with: () => of(this.createAgenticTurnTimeoutState()),
|
|
23128
|
-
}), take(1))).then(async (state) => {
|
|
23140
|
+
}), filter((state) => this.isAgenticTurnTerminalState(state)), take(1))).then(async (state) => {
|
|
23129
23141
|
if (this.isCurrentAgenticTurn(turnRunId) && this.isAgenticTurnTimeoutState(state)) {
|
|
23130
23142
|
await this.applyAgenticTurnState(state);
|
|
23131
23143
|
}
|
|
@@ -23175,7 +23187,8 @@ class DynamicPageBuilderComponent {
|
|
|
23175
23187
|
timeout: {
|
|
23176
23188
|
schemaVersion: 'praxis-page-builder-agentic-turn-timeout.v1',
|
|
23177
23189
|
source: 'dynamic-page-builder',
|
|
23178
|
-
elapsedMs: this.
|
|
23190
|
+
elapsedMs: this.agenticAuthoringTurnInactivityTimeoutMs,
|
|
23191
|
+
timeoutKind: 'inactivity',
|
|
23179
23192
|
},
|
|
23180
23193
|
},
|
|
23181
23194
|
};
|
|
@@ -23340,6 +23353,9 @@ class DynamicPageBuilderComponent {
|
|
|
23340
23353
|
if (normalized === 'not_requested') {
|
|
23341
23354
|
return this.tx('agentic.context.governedDomainContextNotRequested', 'Not requested');
|
|
23342
23355
|
}
|
|
23356
|
+
if (normalized === 'not_recaptured_for_diagnostics') {
|
|
23357
|
+
return this.tx('agentic.context.governedDomainContextUsedInDecision', 'Used in the semantic decision');
|
|
23358
|
+
}
|
|
23343
23359
|
return this.tx('agentic.context.governedDomainContextUnknown', 'unknown');
|
|
23344
23360
|
}
|
|
23345
23361
|
trimmedString(value) {
|
|
@@ -23526,7 +23542,7 @@ class DynamicPageBuilderComponent {
|
|
|
23526
23542
|
case 'rejected-duplicate-field':
|
|
23527
23543
|
return this.tx('agentic.errors.duplicateField', 'Este campo já existe no formulário selecionado.');
|
|
23528
23544
|
case 'rejected-non-local-field-removal':
|
|
23529
|
-
return this.tx('agentic.errors.nonLocalFieldRemoval', '
|
|
23545
|
+
return this.tx('agentic.errors.nonLocalFieldRemoval', 'Somente campos locais criados pela IA podem ser removidos neste fluxo.');
|
|
23530
23546
|
default:
|
|
23531
23547
|
break;
|
|
23532
23548
|
}
|
|
@@ -23621,7 +23637,7 @@ class DynamicPageBuilderComponent {
|
|
|
23621
23637
|
return resolvePraxisPageBuilderText(this.i18n, key, fallback);
|
|
23622
23638
|
}
|
|
23623
23639
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: DynamicPageBuilderComponent, deps: [{ token: i1.MatDialog }, { token: SETTINGS_PANEL_BRIDGE, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
23624
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.14", type: DynamicPageBuilderComponent, isStandalone: true, selector: "praxis-dynamic-page-builder", inputs: { page: "page", context: "context", strictValidation: "strictValidation", autoPersist: "autoPersist", enableCustomization: "enableCustomization", showSettingsButton: "showSettingsButton", pageIdentity: "pageIdentity", componentInstanceId: "componentInstanceId", pageEditorComponent: "pageEditorComponent", componentPaletteAllowedWidgetIds: "componentPaletteAllowedWidgetIds", componentPaletteAllowedWidgetTags: "componentPaletteAllowedWidgetTags", componentPaletteAllowedPresetIds: "componentPaletteAllowedPresetIds", enableAgenticAuthoring: "enableAgenticAuthoring", agenticAuthoringProvider: "agenticAuthoringProvider", agenticAuthoringModel: "agenticAuthoringModel", agenticAuthoringApiKey: "agenticAuthoringApiKey", agenticAuthoringComponentId: "agenticAuthoringComponentId", agenticAuthoringScope: "agenticAuthoringScope", agenticAuthoringEtag: "agenticAuthoringEtag", agenticAuthoringIncludeLlmDiagnostics: "agenticAuthoringIncludeLlmDiagnostics", agenticAuthoringEnableStreaming: "agenticAuthoringEnableStreaming", agenticAuthoringContextHints: "agenticAuthoringContextHints", showPageLifecycleActions: "showPageLifecycleActions", canDeleteSavedPage: "canDeleteSavedPage", pageLifecycleBusy: "pageLifecycleBusy", pageLifecycleResetRevision: "pageLifecycleResetRevision" }, outputs: { pageChange: "pageChange", widgetEvent: "widgetEvent", pageSaveRequested: "pageSaveRequested", agenticAuthoringApplied: "agenticAuthoringApplied", agenticAuthoringSharedRuleHandoff: "agenticAuthoringSharedRuleHandoff", pageRestart: "pageRestart", savedPageDeleteRequested: "savedPageDeleteRequested" }, providers: [
|
|
23640
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.14", type: DynamicPageBuilderComponent, isStandalone: true, selector: "praxis-dynamic-page-builder", inputs: { page: "page", context: "context", strictValidation: "strictValidation", autoPersist: "autoPersist", enableCustomization: "enableCustomization", showSettingsButton: "showSettingsButton", pageIdentity: "pageIdentity", componentInstanceId: "componentInstanceId", pageEditorComponent: "pageEditorComponent", componentPaletteAllowedWidgetIds: "componentPaletteAllowedWidgetIds", componentPaletteAllowedWidgetTags: "componentPaletteAllowedWidgetTags", componentPaletteAllowedPresetIds: "componentPaletteAllowedPresetIds", enableAgenticAuthoring: "enableAgenticAuthoring", agenticAuthoringProvider: "agenticAuthoringProvider", agenticAuthoringModel: "agenticAuthoringModel", agenticAuthoringApiKey: "agenticAuthoringApiKey", agenticAuthoringComponentId: "agenticAuthoringComponentId", agenticAuthoringScope: "agenticAuthoringScope", agenticAuthoringEtag: "agenticAuthoringEtag", agenticAuthoringIncludeLlmDiagnostics: "agenticAuthoringIncludeLlmDiagnostics", agenticAuthoringEnableStreaming: "agenticAuthoringEnableStreaming", agenticAuthoringVoiceInputMode: "agenticAuthoringVoiceInputMode", agenticAuthoringContextHints: "agenticAuthoringContextHints", showPageLifecycleActions: "showPageLifecycleActions", canDeleteSavedPage: "canDeleteSavedPage", pageLifecycleBusy: "pageLifecycleBusy", pageLifecycleResetRevision: "pageLifecycleResetRevision" }, outputs: { pageChange: "pageChange", widgetEvent: "widgetEvent", pageSaveRequested: "pageSaveRequested", agenticAuthoringApplied: "agenticAuthoringApplied", agenticAuthoringSharedRuleHandoff: "agenticAuthoringSharedRuleHandoff", pageRestart: "pageRestart", savedPageDeleteRequested: "savedPageDeleteRequested" }, providers: [
|
|
23625
23641
|
providePraxisPageBuilderI18n(),
|
|
23626
23642
|
{ provide: DYNAMIC_PAGE_SHELL_EDITOR, useValue: WidgetShellEditorComponent },
|
|
23627
23643
|
], viewQueries: [{ propertyName: "runtime", first: true, predicate: ["runtime"], descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
|
@@ -23719,6 +23735,7 @@ class DynamicPageBuilderComponent {
|
|
|
23719
23735
|
[primaryAction]="agenticAuthoringSubmitAction()"
|
|
23720
23736
|
[showAttachAction]="false"
|
|
23721
23737
|
[enablePastedAttachments]="false"
|
|
23738
|
+
[voiceInputMode]="agenticAuthoringVoiceInputMode"
|
|
23722
23739
|
[layout]="agenticAuthoringPanelLayout()"
|
|
23723
23740
|
[minWidth]="320"
|
|
23724
23741
|
[minHeight]="280"
|
|
@@ -24273,6 +24290,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
24273
24290
|
[primaryAction]="agenticAuthoringSubmitAction()"
|
|
24274
24291
|
[showAttachAction]="false"
|
|
24275
24292
|
[enablePastedAttachments]="false"
|
|
24293
|
+
[voiceInputMode]="agenticAuthoringVoiceInputMode"
|
|
24276
24294
|
[layout]="agenticAuthoringPanelLayout()"
|
|
24277
24295
|
[minWidth]="320"
|
|
24278
24296
|
[minHeight]="280"
|
|
@@ -24767,6 +24785,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
24767
24785
|
type: Input
|
|
24768
24786
|
}], agenticAuthoringEnableStreaming: [{
|
|
24769
24787
|
type: Input
|
|
24788
|
+
}], agenticAuthoringVoiceInputMode: [{
|
|
24789
|
+
type: Input
|
|
24770
24790
|
}], agenticAuthoringContextHints: [{
|
|
24771
24791
|
type: Input
|
|
24772
24792
|
}], showPageLifecycleActions: [{
|
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.85",
|
|
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.85",
|
|
12
|
+
"@praxisui/core": "^9.0.0-beta.85",
|
|
13
|
+
"@praxisui/settings-panel": "^9.0.0-beta.85",
|
|
14
14
|
"rxjs": "~7.8.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
@@ -6,7 +6,7 @@ import * as rxjs from 'rxjs';
|
|
|
6
6
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
7
7
|
import { FormGroup, FormControl, FormArray } from '@angular/forms';
|
|
8
8
|
import { SettingsValueProvider } from '@praxisui/settings-panel';
|
|
9
|
-
import { AgenticAuthoringAttachmentSummaryContract, AgenticAuthoringCandidateContract, AiJsonValue, AgenticAuthoringComponentCapabilitiesResultContract, AgenticAuthoringComponentCapabilityCatalogContract, AgenticAuthoringComponentCapabilityContract, AgenticAuthoringComponentFieldAliasContract, AgenticAuthoringComponentCapabilityExampleContract, AgenticAuthoringConversationMessageContract, AgenticAuthoringIntentResolutionRequestContract, AiJsonObject, AgenticAuthoringQuickReplyContract, AgenticAuthoringPendingClarificationContract, AiContextHintsContract, AgenticAuthoringSemanticDecisionContract, AgenticAuthoringPlanRequestContract, AgenticAuthoringResourceCandidatesRequestContract, AgenticAuthoringResourceCandidatesResultContract, AgenticAuthoringTurnStreamContextHintsContract, AgenticAuthoringTurnStreamEnvelopeContract, AgenticAuthoringTurnStreamStartResponseContract, PraxisAssistantShellMessage, PraxisAssistantShellQuickReply, PraxisAssistantShellAttachment, PraxisAssistantShellLayout, PraxisAssistantSessionSnapshot, PraxisAssistantShellLabels, PraxisAssistantRecommendedIntent, PraxisAssistantShellAction, PraxisAssistantShellState, PraxisAssistantShellContextItem } from '@praxisui/ai';
|
|
9
|
+
import { AgenticAuthoringAttachmentSummaryContract, AgenticAuthoringCandidateContract, AiJsonValue, AgenticAuthoringComponentCapabilitiesResultContract, AgenticAuthoringComponentCapabilityCatalogContract, AgenticAuthoringComponentCapabilityContract, AgenticAuthoringComponentFieldAliasContract, AgenticAuthoringComponentCapabilityExampleContract, AgenticAuthoringConversationMessageContract, AgenticAuthoringIntentResolutionRequestContract, AiJsonObject, AgenticAuthoringQuickReplyContract, AgenticAuthoringPendingClarificationContract, AiContextHintsContract, AgenticAuthoringSemanticDecisionContract, AgenticAuthoringPlanRequestContract, AgenticAuthoringResourceCandidatesRequestContract, AgenticAuthoringResourceCandidatesResultContract, AgenticAuthoringTurnStreamContextHintsContract, AgenticAuthoringTurnStreamEnvelopeContract, AgenticAuthoringTurnStreamStartResponseContract, PraxisAssistantVoiceInputMode, PraxisAssistantShellMessage, PraxisAssistantShellQuickReply, PraxisAssistantShellAttachment, PraxisAssistantShellLayout, PraxisAssistantSessionSnapshot, PraxisAssistantShellLabels, PraxisAssistantRecommendedIntent, PraxisAssistantShellAction, PraxisAssistantShellState, PraxisAssistantShellContextItem } from '@praxisui/ai';
|
|
10
10
|
|
|
11
11
|
declare const PLACEHOLDER = 1;
|
|
12
12
|
|
|
@@ -1750,6 +1750,7 @@ declare class DynamicPageBuilderComponent implements OnChanges, OnDestroy {
|
|
|
1750
1750
|
agenticAuthoringEtag?: string;
|
|
1751
1751
|
agenticAuthoringIncludeLlmDiagnostics: boolean;
|
|
1752
1752
|
agenticAuthoringEnableStreaming: boolean;
|
|
1753
|
+
agenticAuthoringVoiceInputMode: PraxisAssistantVoiceInputMode;
|
|
1753
1754
|
agenticAuthoringContextHints?: Record<string, unknown> | null;
|
|
1754
1755
|
showPageLifecycleActions: boolean;
|
|
1755
1756
|
canDeleteSavedPage: boolean;
|
|
@@ -1814,7 +1815,7 @@ declare class DynamicPageBuilderComponent implements OnChanges, OnDestroy {
|
|
|
1814
1815
|
private agenticTurnController?;
|
|
1815
1816
|
private readonly agenticTurnCancel$;
|
|
1816
1817
|
private agenticTurnRunId;
|
|
1817
|
-
private
|
|
1818
|
+
private agenticAuthoringTurnInactivityTimeoutMs;
|
|
1818
1819
|
private sharedRuleHandoffRevision;
|
|
1819
1820
|
private agenticAuthoringPanelLayoutTouched;
|
|
1820
1821
|
private readonly observabilityMetricsSubscription;
|
|
@@ -2060,7 +2061,7 @@ declare class DynamicPageBuilderComponent implements OnChanges, OnDestroy {
|
|
|
2060
2061
|
private cloneValue;
|
|
2061
2062
|
tx(key: string, fallback: string): string;
|
|
2062
2063
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DynamicPageBuilderComponent, [null, { optional: true; }]>;
|
|
2063
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DynamicPageBuilderComponent, "praxis-dynamic-page-builder", never, { "page": { "alias": "page"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "autoPersist": { "alias": "autoPersist"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "showSettingsButton": { "alias": "showSettingsButton"; "required": false; }; "pageIdentity": { "alias": "pageIdentity"; "required": false; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; "pageEditorComponent": { "alias": "pageEditorComponent"; "required": false; }; "componentPaletteAllowedWidgetIds": { "alias": "componentPaletteAllowedWidgetIds"; "required": false; }; "componentPaletteAllowedWidgetTags": { "alias": "componentPaletteAllowedWidgetTags"; "required": false; }; "componentPaletteAllowedPresetIds": { "alias": "componentPaletteAllowedPresetIds"; "required": false; }; "enableAgenticAuthoring": { "alias": "enableAgenticAuthoring"; "required": false; }; "agenticAuthoringProvider": { "alias": "agenticAuthoringProvider"; "required": false; }; "agenticAuthoringModel": { "alias": "agenticAuthoringModel"; "required": false; }; "agenticAuthoringApiKey": { "alias": "agenticAuthoringApiKey"; "required": false; }; "agenticAuthoringComponentId": { "alias": "agenticAuthoringComponentId"; "required": false; }; "agenticAuthoringScope": { "alias": "agenticAuthoringScope"; "required": false; }; "agenticAuthoringEtag": { "alias": "agenticAuthoringEtag"; "required": false; }; "agenticAuthoringIncludeLlmDiagnostics": { "alias": "agenticAuthoringIncludeLlmDiagnostics"; "required": false; }; "agenticAuthoringEnableStreaming": { "alias": "agenticAuthoringEnableStreaming"; "required": false; }; "agenticAuthoringContextHints": { "alias": "agenticAuthoringContextHints"; "required": false; }; "showPageLifecycleActions": { "alias": "showPageLifecycleActions"; "required": false; }; "canDeleteSavedPage": { "alias": "canDeleteSavedPage"; "required": false; }; "pageLifecycleBusy": { "alias": "pageLifecycleBusy"; "required": false; }; "pageLifecycleResetRevision": { "alias": "pageLifecycleResetRevision"; "required": false; }; }, { "pageChange": "pageChange"; "widgetEvent": "widgetEvent"; "pageSaveRequested": "pageSaveRequested"; "agenticAuthoringApplied": "agenticAuthoringApplied"; "agenticAuthoringSharedRuleHandoff": "agenticAuthoringSharedRuleHandoff"; "pageRestart": "pageRestart"; "savedPageDeleteRequested": "savedPageDeleteRequested"; }, never, never, true, never>;
|
|
2064
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DynamicPageBuilderComponent, "praxis-dynamic-page-builder", never, { "page": { "alias": "page"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "autoPersist": { "alias": "autoPersist"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "showSettingsButton": { "alias": "showSettingsButton"; "required": false; }; "pageIdentity": { "alias": "pageIdentity"; "required": false; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; "pageEditorComponent": { "alias": "pageEditorComponent"; "required": false; }; "componentPaletteAllowedWidgetIds": { "alias": "componentPaletteAllowedWidgetIds"; "required": false; }; "componentPaletteAllowedWidgetTags": { "alias": "componentPaletteAllowedWidgetTags"; "required": false; }; "componentPaletteAllowedPresetIds": { "alias": "componentPaletteAllowedPresetIds"; "required": false; }; "enableAgenticAuthoring": { "alias": "enableAgenticAuthoring"; "required": false; }; "agenticAuthoringProvider": { "alias": "agenticAuthoringProvider"; "required": false; }; "agenticAuthoringModel": { "alias": "agenticAuthoringModel"; "required": false; }; "agenticAuthoringApiKey": { "alias": "agenticAuthoringApiKey"; "required": false; }; "agenticAuthoringComponentId": { "alias": "agenticAuthoringComponentId"; "required": false; }; "agenticAuthoringScope": { "alias": "agenticAuthoringScope"; "required": false; }; "agenticAuthoringEtag": { "alias": "agenticAuthoringEtag"; "required": false; }; "agenticAuthoringIncludeLlmDiagnostics": { "alias": "agenticAuthoringIncludeLlmDiagnostics"; "required": false; }; "agenticAuthoringEnableStreaming": { "alias": "agenticAuthoringEnableStreaming"; "required": false; }; "agenticAuthoringVoiceInputMode": { "alias": "agenticAuthoringVoiceInputMode"; "required": false; }; "agenticAuthoringContextHints": { "alias": "agenticAuthoringContextHints"; "required": false; }; "showPageLifecycleActions": { "alias": "showPageLifecycleActions"; "required": false; }; "canDeleteSavedPage": { "alias": "canDeleteSavedPage"; "required": false; }; "pageLifecycleBusy": { "alias": "pageLifecycleBusy"; "required": false; }; "pageLifecycleResetRevision": { "alias": "pageLifecycleResetRevision"; "required": false; }; }, { "pageChange": "pageChange"; "widgetEvent": "widgetEvent"; "pageSaveRequested": "pageSaveRequested"; "agenticAuthoringApplied": "agenticAuthoringApplied"; "agenticAuthoringSharedRuleHandoff": "agenticAuthoringSharedRuleHandoff"; "pageRestart": "pageRestart"; "savedPageDeleteRequested": "savedPageDeleteRequested"; }, never, never, true, never>;
|
|
2064
2065
|
}
|
|
2065
2066
|
|
|
2066
2067
|
/** Metadata for Praxis Page Builder component */
|