@praxisui/editorial-forms 1.0.0-beta.61 → 1.0.0-beta.63
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 +243 -343
- package/fesm2022/praxisui-editorial-forms.mjs +1750 -182
- package/fesm2022/praxisui-editorial-forms.mjs.map +1 -1
- package/index.d.ts +314 -8
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
2
|
import { EnvironmentProviders, Type, InjectionToken } from '@angular/core';
|
|
3
3
|
import * as _praxisui_core from '@praxisui/core';
|
|
4
|
-
import { EditorialProblemType, EditorialThemePreset, EditorialCompliancePreset, EditorialBlock, EditorialDataCollectionBlock, EditorialSolutionDefinition, EditorialTemplateInstance, FormConfig, EditorialBlockVisibilityRule, EditorialHeroBlock, EditorialRichTextBlock, EditorialPolicyListBlock, EditorialTimelineStepsBlock, EditorialReviewSummaryBlock, EditorialContextSummaryBlock, EditorialInfoCardsBlock, EditorialFaqAccordionBlock } from '@praxisui/core';
|
|
4
|
+
import { EditorialProblemType, EditorialWizardPresentation, EditorialThemePreset, EditorialCompliancePreset, EditorialStepKind, EditorialIconSpec, EditorialStepVisualConfig, EditorialBlock, EditorialDataCollectionBlock, EditorialSolutionDefinition, EditorialTemplateInstance, PraxisTranslationParams, FormConfig, EditorialLayoutConfig, EditorialStepperConfig, EditorialOrientation, EditorialThemeTokens, EditorialBlockVisibilityRule, PraxisI18nDictionary, PraxisI18nConfig, EditorialIntroHeroBlock, EditorialHeroBlock, EditorialRichTextBlock, EditorialPolicyListBlock, EditorialTimelineStepsBlock, EditorialReviewSummaryBlock, EditorialReviewSectionsBlock, EditorialContextSummaryBlock, EditorialSelectionCardsBlock, EditorialInfoCardsBlock, EditorialSuccessPanelBlock, EditorialFaqAccordionBlock, EditorialPresentationalAction, EditorialReviewSectionField } from '@praxisui/core';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Root provider entrypoint for the editorial runtime package.
|
|
@@ -15,7 +15,7 @@ declare function providePraxisEditorialForms(): EnvironmentProviders;
|
|
|
15
15
|
|
|
16
16
|
type EditorialRuntimeDiagnosticSeverity = 'info' | 'warning' | 'error';
|
|
17
17
|
type EditorialRuntimeDiagnosticScopeKind = 'global' | 'journey' | 'step' | 'block';
|
|
18
|
-
type EditorialRuntimeDiagnosticCode = 'solution-missing' | 'theme-preset-not-found' | 'compliance-preset-not-found' | 'context-required-missing' | 'compliance-context-required-missing' | 'data-collection-config-missing' | 'data-collection-config-ambiguous' | 'data-collection-adapter-missing' | 'data-collection-invalid' | 'instance-journey-block-conflict' | 'journey-override-target-missing' | 'step-override-target-missing' | 'block-override-invalid' | 'block-override-conflict' | 'block-override-target-missing';
|
|
18
|
+
type EditorialRuntimeDiagnosticCode = 'solution-missing' | 'theme-preset-not-found' | 'compliance-preset-not-found' | 'compliance-preset-problem-type-mismatch' | 'presentation-config-unsupported' | 'context-required-missing' | 'compliance-context-required-missing' | 'compliance-evidence-missing' | 'compliance-acceptance-missing' | 'data-collection-config-missing' | 'data-collection-config-ambiguous' | 'data-collection-adapter-missing' | 'data-collection-invalid' | 'instance-journey-block-conflict' | 'journey-override-target-missing' | 'step-override-target-missing' | 'block-override-invalid' | 'block-override-conflict' | 'block-override-target-missing';
|
|
19
19
|
interface EditorialRuntimeDiagnostic {
|
|
20
20
|
code: EditorialRuntimeDiagnosticCode;
|
|
21
21
|
severity: EditorialRuntimeDiagnosticSeverity;
|
|
@@ -77,6 +77,11 @@ interface EditorialResolvedStep {
|
|
|
77
77
|
stepId: string;
|
|
78
78
|
label: string;
|
|
79
79
|
description?: string;
|
|
80
|
+
kind?: EditorialStepKind;
|
|
81
|
+
icon?: EditorialIconSpec;
|
|
82
|
+
visual?: EditorialStepVisualConfig;
|
|
83
|
+
optional?: boolean;
|
|
84
|
+
editableFromReview?: boolean;
|
|
80
85
|
blocks: EditorialResolvedBlock[];
|
|
81
86
|
}
|
|
82
87
|
interface EditorialResolvedJourney {
|
|
@@ -92,6 +97,7 @@ interface EditorialRuntimeSnapshot {
|
|
|
92
97
|
description: string | null;
|
|
93
98
|
problemType: EditorialProblemType | null;
|
|
94
99
|
context: Record<string, unknown>;
|
|
100
|
+
presentation: EditorialWizardPresentation | null;
|
|
95
101
|
effectiveThemePreset: EditorialThemePreset | null;
|
|
96
102
|
effectiveCompliancePresets: EditorialCompliancePreset[];
|
|
97
103
|
journeys: EditorialResolvedJourney[];
|
|
@@ -165,6 +171,7 @@ type EditorialRuntimeOperationalEvent = EditorialRuntimeOperationalEventBase<'di
|
|
|
165
171
|
}>;
|
|
166
172
|
|
|
167
173
|
declare class EditorialFormRuntimeComponent {
|
|
174
|
+
private readonly i18n;
|
|
168
175
|
readonly solution: _angular_core.InputSignal<EditorialSolutionDefinition | null>;
|
|
169
176
|
readonly instance: _angular_core.InputSignal<EditorialTemplateInstance | null>;
|
|
170
177
|
readonly runtimeContext: _angular_core.InputSignal<Record<string, unknown> | null>;
|
|
@@ -175,6 +182,8 @@ declare class EditorialFormRuntimeComponent {
|
|
|
175
182
|
private readonly state;
|
|
176
183
|
private readonly solutionState;
|
|
177
184
|
private readonly instanceState;
|
|
185
|
+
private readonly runtimeContextState;
|
|
186
|
+
private readonly compactViewport;
|
|
178
187
|
private lastSnapshotSignature;
|
|
179
188
|
private lastDiagnosticsSignature;
|
|
180
189
|
private lastFallbackSignature;
|
|
@@ -201,13 +210,23 @@ declare class EditorialFormRuntimeComponent {
|
|
|
201
210
|
protected readonly activeStepDiagnostics: _angular_core.Signal<EditorialRuntimeDiagnostic[]>;
|
|
202
211
|
protected readonly activeStepHasErrors: _angular_core.Signal<boolean>;
|
|
203
212
|
protected readonly activeStepHasWarnings: _angular_core.Signal<boolean>;
|
|
204
|
-
protected readonly diagnosticsMessage: _angular_core.Signal<
|
|
213
|
+
protected readonly diagnosticsMessage: _angular_core.Signal<string>;
|
|
205
214
|
protected readonly activeGlobalDiagnostics: _angular_core.Signal<EditorialRuntimeDiagnostic[]>;
|
|
206
215
|
protected readonly visibleBlocks: _angular_core.Signal<_praxisui_core.EditorialBlock[]>;
|
|
207
216
|
protected readonly runtimeTitle: _angular_core.Signal<string | null>;
|
|
208
217
|
protected readonly runtimeDescription: _angular_core.Signal<string | null>;
|
|
209
218
|
protected readonly runtimeEyebrow: _angular_core.Signal<_praxisui_core.EditorialProblemType | null>;
|
|
210
|
-
protected readonly
|
|
219
|
+
protected readonly presentation: _angular_core.Signal<_praxisui_core.EditorialWizardPresentation | null>;
|
|
220
|
+
protected readonly runtimeCssVars: _angular_core.Signal<string>;
|
|
221
|
+
protected readonly runtimeLayoutCss: _angular_core.Signal<string>;
|
|
222
|
+
protected readonly runtimeStyleAttr: _angular_core.Signal<string>;
|
|
223
|
+
protected readonly effectiveOrientation: _angular_core.Signal<_praxisui_core.EditorialOrientation>;
|
|
224
|
+
protected readonly shellVariant: _angular_core.Signal<string>;
|
|
225
|
+
protected readonly effectiveDensity: _angular_core.Signal<string>;
|
|
226
|
+
protected readonly stepperConfig: _angular_core.Signal<_praxisui_core.EditorialStepperConfig | null>;
|
|
227
|
+
protected readonly stepperVisible: _angular_core.Signal<boolean>;
|
|
228
|
+
protected readonly stepSelectionBlocker: (stepId: string) => boolean;
|
|
229
|
+
protected readonly fallbackLabel: _angular_core.Signal<string>;
|
|
211
230
|
protected readonly currentStepIndex: _angular_core.Signal<number>;
|
|
212
231
|
protected readonly hasPreviousStep: _angular_core.Signal<boolean>;
|
|
213
232
|
protected readonly hasNextStep: _angular_core.Signal<boolean>;
|
|
@@ -216,6 +235,11 @@ declare class EditorialFormRuntimeComponent {
|
|
|
216
235
|
protected selectStep(stepId: string): void;
|
|
217
236
|
protected goToPreviousStep(): void;
|
|
218
237
|
protected goToNextStep(): void;
|
|
238
|
+
protected handleBlockAction(action: {
|
|
239
|
+
blockId: string;
|
|
240
|
+
actionId: string;
|
|
241
|
+
}): void;
|
|
242
|
+
protected updateRuntimeContext(nextContext: Record<string, unknown>): void;
|
|
219
243
|
protected journeyErrorCount(journeyId: string): number;
|
|
220
244
|
protected journeyWarningCount(journeyId: string): number;
|
|
221
245
|
protected stepErrorCount(stepId: string): number;
|
|
@@ -228,11 +252,17 @@ declare class EditorialFormRuntimeComponent {
|
|
|
228
252
|
protected navigationBlockingMessage(): string;
|
|
229
253
|
private countDiagnostics;
|
|
230
254
|
protected emitOperationalEvent(event: EditorialRuntimeOperationalEvent): void;
|
|
255
|
+
protected t(key: string, fallback: string, params?: PraxisTranslationParams): string;
|
|
231
256
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditorialFormRuntimeComponent, never>;
|
|
232
257
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditorialFormRuntimeComponent, "praxis-editorial-form-runtime", never, { "solution": { "alias": "solution"; "required": false; "isSignal": true; }; "instance": { "alias": "instance"; "required": false; "isSignal": true; }; "runtimeContext": { "alias": "runtimeContext"; "required": false; "isSignal": true; }; "hostConfig": { "alias": "hostConfig"; "required": false; "isSignal": true; }; }, { "snapshotChange": "snapshotChange"; "fallbackChange": "fallbackChange"; "operationalEvent": "operationalEvent"; }, never, never, true, never>;
|
|
233
258
|
}
|
|
234
259
|
|
|
235
260
|
type EditorialDataBlockComponentInputs = Record<string, unknown>;
|
|
261
|
+
interface EditorialDataBlockValueChangeEvent {
|
|
262
|
+
formData: Record<string, unknown>;
|
|
263
|
+
mode?: 'merge' | 'replace';
|
|
264
|
+
removedKeys?: string[];
|
|
265
|
+
}
|
|
236
266
|
interface EditorialDataBlockContext {
|
|
237
267
|
block: EditorialDataCollectionBlock;
|
|
238
268
|
runtimeContext: Record<string, unknown> | null;
|
|
@@ -295,14 +325,21 @@ type DataCollectionOutletState = {
|
|
|
295
325
|
details?: string;
|
|
296
326
|
};
|
|
297
327
|
declare class EditorialDataCollectionBlockOutletComponent {
|
|
328
|
+
private readonly i18n;
|
|
298
329
|
private readonly adapters;
|
|
330
|
+
private readonly destroyRef;
|
|
299
331
|
private readonly adapterRegistry;
|
|
332
|
+
private readonly adapterHost;
|
|
300
333
|
private loadVersion;
|
|
301
334
|
private lastAdapterEventSignature;
|
|
335
|
+
private componentRef;
|
|
336
|
+
private renderedComponentType;
|
|
337
|
+
private componentOutputSubscriptions;
|
|
302
338
|
readonly block: _angular_core.InputSignal<EditorialDataCollectionBlock | EditorialResolvedDataCollectionBlock>;
|
|
303
339
|
readonly runtimeContext: _angular_core.InputSignal<Record<string, unknown> | null>;
|
|
304
340
|
readonly solution: _angular_core.InputSignal<EditorialSolutionDefinition | null>;
|
|
305
341
|
readonly instance: _angular_core.InputSignal<EditorialTemplateInstance | null>;
|
|
342
|
+
readonly runtimeContextChange: _angular_core.OutputEmitterRef<Record<string, unknown>>;
|
|
306
343
|
readonly operationalEvent: _angular_core.OutputEmitterRef<EditorialRuntimeOperationalEvent>;
|
|
307
344
|
private readonly resolvedComponent;
|
|
308
345
|
protected readonly state: _angular_core.WritableSignal<DataCollectionOutletState>;
|
|
@@ -329,12 +366,18 @@ declare class EditorialDataCollectionBlockOutletComponent {
|
|
|
329
366
|
} | null>;
|
|
330
367
|
protected readonly adapterInputs: _angular_core.Signal<{}>;
|
|
331
368
|
protected readonly fallbackMessage: _angular_core.Signal<string>;
|
|
369
|
+
protected readonly effectiveSurface: _angular_core.Signal<"card" | "plain">;
|
|
332
370
|
constructor();
|
|
333
371
|
private loadAdapterComponent;
|
|
334
372
|
private applyResolvedComponent;
|
|
335
373
|
private emitAdapterResolutionEvent;
|
|
374
|
+
private applyComponentInputs;
|
|
375
|
+
private bindComponentOutputs;
|
|
376
|
+
private mergeFormDataIntoRuntimeContext;
|
|
377
|
+
private destroyRenderedComponent;
|
|
378
|
+
protected t(key: string, fallback: string, params?: Record<string, string | number | boolean | null | undefined>): string;
|
|
336
379
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditorialDataCollectionBlockOutletComponent, never>;
|
|
337
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditorialDataCollectionBlockOutletComponent, "praxis-editorial-data-collection-block-outlet", never, { "block": { "alias": "block"; "required": true; "isSignal": true; }; "runtimeContext": { "alias": "runtimeContext"; "required": false; "isSignal": true; }; "solution": { "alias": "solution"; "required": false; "isSignal": true; }; "instance": { "alias": "instance"; "required": false; "isSignal": true; }; }, { "operationalEvent": "operationalEvent"; }, never, never, true, never>;
|
|
380
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditorialDataCollectionBlockOutletComponent, "praxis-editorial-data-collection-block-outlet", never, { "block": { "alias": "block"; "required": true; "isSignal": true; }; "runtimeContext": { "alias": "runtimeContext"; "required": false; "isSignal": true; }; "solution": { "alias": "solution"; "required": false; "isSignal": true; }; "instance": { "alias": "instance"; "required": false; "isSignal": true; }; }, { "runtimeContextChange": "runtimeContextChange"; "operationalEvent": "operationalEvent"; }, never, never, true, never>;
|
|
338
381
|
}
|
|
339
382
|
|
|
340
383
|
interface EditorialDynamicFormAdapterOptions {
|
|
@@ -355,6 +398,12 @@ interface ResolveEditorialRuntimeSnapshotInput {
|
|
|
355
398
|
}
|
|
356
399
|
declare function resolveEditorialRuntimeSnapshot(input: ResolveEditorialRuntimeSnapshotInput): EditorialRuntimeSnapshot;
|
|
357
400
|
|
|
401
|
+
declare function resolveRuntimeOrientation(layout?: EditorialLayoutConfig | null, stepper?: EditorialStepperConfig | null, compactViewport?: boolean): EditorialOrientation;
|
|
402
|
+
declare function resolveShellVariant(layout?: EditorialLayoutConfig | null): string;
|
|
403
|
+
declare function resolveDensity(layout?: EditorialLayoutConfig | null): string;
|
|
404
|
+
declare function buildRuntimeLayoutCss(layout?: EditorialLayoutConfig | null): string;
|
|
405
|
+
declare function getStepDisplayState(step: EditorialResolvedStep, steps: ReadonlyArray<EditorialResolvedStep>, activeStepId: string | null, isBlocked: boolean): 'pending' | 'active' | 'completed' | 'blocked';
|
|
406
|
+
|
|
358
407
|
declare class EditorialRuntimeState {
|
|
359
408
|
private readonly journeyId;
|
|
360
409
|
private readonly stepId;
|
|
@@ -370,6 +419,8 @@ declare class EditorialRuntimeState {
|
|
|
370
419
|
selectStep(stepId: string): void;
|
|
371
420
|
}
|
|
372
421
|
|
|
422
|
+
declare function buildRuntimeCssVars(theme?: EditorialThemeTokens | null): string;
|
|
423
|
+
|
|
373
424
|
declare function resolveActiveJourney<TJourney extends {
|
|
374
425
|
journeyId: string;
|
|
375
426
|
}>(journeys: ReadonlyArray<TJourney>, journeyId: string | null | undefined): TJourney | null;
|
|
@@ -383,26 +434,281 @@ declare function isBlockVisible(block: EditorialBlock, runtimeContext: Record<st
|
|
|
383
434
|
declare function matchesVisibilityRule(rule: EditorialBlockVisibilityRule, runtimeContext: Record<string, unknown> | null | undefined): boolean;
|
|
384
435
|
declare function getValueAtPath(source: Record<string, unknown>, path: string): unknown;
|
|
385
436
|
|
|
437
|
+
declare const PRAXIS_EDITORIAL_FORMS_EN_US: {
|
|
438
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.title': "Runtime diagnostics";
|
|
439
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.severitySummary': "Severity summary";
|
|
440
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.globalErrors': "Global runtime errors";
|
|
441
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.details': "View details ({count})";
|
|
442
|
+
readonly 'praxis.editorialForms.runtime.journeys.ariaLabel': "Editorial journeys";
|
|
443
|
+
readonly 'praxis.editorialForms.runtime.journeys.errors': "Journey has errors";
|
|
444
|
+
readonly 'praxis.editorialForms.runtime.journeys.warnings': "Journey has warnings";
|
|
445
|
+
readonly 'praxis.editorialForms.runtime.step.counter': "Step {current} of {total}";
|
|
446
|
+
readonly 'praxis.editorialForms.runtime.step.statusTitle': "Current step status";
|
|
447
|
+
readonly 'praxis.editorialForms.runtime.step.globalErrorTitle': "Global runtime error";
|
|
448
|
+
readonly 'praxis.editorialForms.runtime.actions.previous': "Previous step";
|
|
449
|
+
readonly 'praxis.editorialForms.runtime.actions.next': "Next step";
|
|
450
|
+
readonly 'praxis.editorialForms.runtime.actions.nextBlocked': "Fix the errors to continue";
|
|
451
|
+
readonly 'praxis.editorialForms.runtime.empty.noJourneyTitle': "Editorial runtime without journey";
|
|
452
|
+
readonly 'praxis.editorialForms.runtime.empty.noJourneyDescription': "No editorial journey was resolved for the current state.";
|
|
453
|
+
readonly 'praxis.editorialForms.runtime.empty.noSolutionTitle': "Empty editorial runtime";
|
|
454
|
+
readonly 'praxis.editorialForms.runtime.empty.noSolutionDescription': "Provide an editorial solution or instance to materialize the journey.";
|
|
455
|
+
readonly 'praxis.editorialForms.runtime.fallback.blocked': "Runtime blocked";
|
|
456
|
+
readonly 'praxis.editorialForms.runtime.fallback.degraded': "Runtime degraded";
|
|
457
|
+
readonly 'praxis.editorialForms.runtime.fallback.warning': "Runtime warning";
|
|
458
|
+
readonly 'praxis.editorialForms.runtime.fallback.healthy': "Runtime healthy";
|
|
459
|
+
readonly 'praxis.editorialForms.runtime.navigation.globalBlocked': "Forward navigation was blocked because the runtime has a global error that must be fixed before continuing.";
|
|
460
|
+
readonly 'praxis.editorialForms.runtime.navigation.stepBlocked': "Forward navigation was blocked because the current step has a structural error.";
|
|
461
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.severity.error': "Error";
|
|
462
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.severity.warning': "Warning";
|
|
463
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.severity.info': "Info";
|
|
464
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.errorsCount': "Errors: {count}";
|
|
465
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.warningsCount': "Warnings: {count}";
|
|
466
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.infoCount': "Info: {count}";
|
|
467
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.message.blocked': "Blocking inconsistencies prevent the editorial flow from progressing safely.";
|
|
468
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.message.degraded': "The runtime is operating in a degraded mode and requires operational attention.";
|
|
469
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.message.error': "There are inconsistencies that may compromise the editorial experience.";
|
|
470
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.message.warning': "There are operational warnings to review for this editorial instance.";
|
|
471
|
+
readonly 'praxis.editorialForms.runtime.scope.global': "Scope: global runtime";
|
|
472
|
+
readonly 'praxis.editorialForms.runtime.scope.journey': "Journey";
|
|
473
|
+
readonly 'praxis.editorialForms.runtime.scope.step': "Step";
|
|
474
|
+
readonly 'praxis.editorialForms.runtime.scope.block': "Block";
|
|
475
|
+
readonly 'praxis.editorialForms.runtime.scope.path': "Path";
|
|
476
|
+
readonly 'praxis.editorialForms.stepper.ariaLabel': "Journey steps";
|
|
477
|
+
readonly 'praxis.editorialForms.stepper.state.completed': "completed";
|
|
478
|
+
readonly 'praxis.editorialForms.stepper.state.active': "current step";
|
|
479
|
+
readonly 'praxis.editorialForms.stepper.state.blocked': "blocked";
|
|
480
|
+
readonly 'praxis.editorialForms.stepper.state.pending': "pending";
|
|
481
|
+
readonly 'praxis.editorialForms.selection.state.selected': "selected";
|
|
482
|
+
readonly 'praxis.editorialForms.selection.state.unselected': "not selected";
|
|
483
|
+
readonly 'praxis.editorialForms.selection.group.label': "Selection group";
|
|
484
|
+
readonly 'praxis.editorialForms.review.empty': "-";
|
|
485
|
+
readonly 'praxis.editorialForms.review.boolean.true': "Yes";
|
|
486
|
+
readonly 'praxis.editorialForms.review.boolean.false': "No";
|
|
487
|
+
readonly 'praxis.editorialForms.dataCollection.loadingTitle': "Preparing data collection";
|
|
488
|
+
readonly 'praxis.editorialForms.dataCollection.unavailableTitle': "Data collection unavailable";
|
|
489
|
+
readonly 'praxis.editorialForms.dataCollection.error.incompatibleTitle': "Incompatible adapter";
|
|
490
|
+
readonly 'praxis.editorialForms.dataCollection.error.missingConfigTitle': "Missing data collection configuration";
|
|
491
|
+
readonly 'praxis.editorialForms.dataCollection.error.incompleteAdapterTitle': "Incomplete adapter";
|
|
492
|
+
readonly 'praxis.editorialForms.dataCollection.error.loadFailureTitle': "Failed to load engine";
|
|
493
|
+
readonly 'praxis.editorialForms.dataCollection.error.unresolvedComponentTitle': "Component not resolved";
|
|
494
|
+
readonly 'praxis.editorialForms.dataCollection.error.invalidComponentTitle': "Incompatible component";
|
|
495
|
+
readonly 'praxis.editorialForms.dataCollection.fallback.invalid': "Block \"{formBlockId}\" was materialized with an invalid state. Review formBlockId, formConfigRef and inherited editorial configuration.";
|
|
496
|
+
readonly 'praxis.editorialForms.dataCollection.fallback.missingConfig': "Block \"{formBlockId}\" did not find data collection configuration. Lookup key checked: {lookupKey}.";
|
|
497
|
+
readonly 'praxis.editorialForms.dataCollection.fallback.incompatible': "Block \"{formBlockId}\" found registered adapters ({adapterIds}), but none declared compatibility for this data collection.";
|
|
498
|
+
readonly 'praxis.editorialForms.dataCollection.fallback.missingAdapter': "Block \"{formBlockId}\" did not find data collection configuration nor a registered adapter. Check the host provider and editorial FormConfig materialization.";
|
|
499
|
+
readonly 'praxis.editorialForms.dataCollection.fallback.adapterWithoutConfig': "Block \"{formBlockId}\" found an adapter, but did not find FormConfig at {lookupKey}.";
|
|
500
|
+
readonly 'praxis.editorialForms.dataCollection.fallback.unresolvedEngine': "Configuration exists for \"{formBlockId}\" ({source}), but no data collection adapter was registered to materialize the engine.";
|
|
501
|
+
readonly 'praxis.editorialForms.dataCollection.error.incompatibleMessage': "No registered adapter accepted block \"{formBlockId}\".";
|
|
502
|
+
readonly 'praxis.editorialForms.dataCollection.error.availableAdapters': "Available adapters: {adapterIds}.";
|
|
503
|
+
readonly 'praxis.editorialForms.dataCollection.error.missingConfigMessage': "Block \"{formBlockId}\" has no resolved FormConfig for the data collection engine.";
|
|
504
|
+
readonly 'praxis.editorialForms.dataCollection.error.lookupSource': "Lookup source: {lookupKey}.";
|
|
505
|
+
readonly 'praxis.editorialForms.dataCollection.error.adapterRegistrationHint': "Register a compatible component or implement resolveComponent().";
|
|
506
|
+
readonly 'praxis.editorialForms.dataCollection.error.incompleteAdapterMessage': "Adapter \"{adapterName}\" did not expose a data collection component.";
|
|
507
|
+
readonly 'praxis.editorialForms.dataCollection.loadingMessage': "Loading the data collection engine for \"{formBlockId}\"...";
|
|
508
|
+
readonly 'praxis.editorialForms.dataCollection.error.loadFailureMessage': "Adapter \"{adapterName}\" failed while preparing block \"{formBlockId}\".";
|
|
509
|
+
readonly 'praxis.editorialForms.dataCollection.error.loadFailureDetails': "Validate the optional host provider and the availability of a compatible component.";
|
|
510
|
+
readonly 'praxis.editorialForms.dataCollection.error.unresolvedComponentMessage': "Adapter \"{adapterName}\" did not return a component for block \"{formBlockId}\".";
|
|
511
|
+
readonly 'praxis.editorialForms.dataCollection.error.unresolvedComponentDetails': "Implement component or resolveComponent() with a compatible Angular component.";
|
|
512
|
+
readonly 'praxis.editorialForms.dataCollection.error.invalidComponentMessage': "Adapter \"{adapterName}\" returned an incompatible component for \"{formBlockId}\".";
|
|
513
|
+
};
|
|
514
|
+
|
|
515
|
+
interface PraxisEditorialFormsI18nOptions {
|
|
516
|
+
locale?: string;
|
|
517
|
+
fallbackLocale?: string;
|
|
518
|
+
dictionaries?: Record<string, PraxisI18nDictionary>;
|
|
519
|
+
}
|
|
520
|
+
declare function createPraxisEditorialFormsI18nConfig(options?: PraxisEditorialFormsI18nOptions): Partial<PraxisI18nConfig>;
|
|
521
|
+
declare function providePraxisEditorialFormsI18n(options?: PraxisEditorialFormsI18nOptions): _angular_core.Provider;
|
|
522
|
+
|
|
523
|
+
declare const PRAXIS_EDITORIAL_FORMS_PT_BR: {
|
|
524
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.title': "Diagnosticos do runtime";
|
|
525
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.severitySummary': "Resumo de severidade";
|
|
526
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.globalErrors': "Erros globais do runtime";
|
|
527
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.details': "Ver detalhes ({count})";
|
|
528
|
+
readonly 'praxis.editorialForms.runtime.journeys.ariaLabel': "Jornadas editoriais";
|
|
529
|
+
readonly 'praxis.editorialForms.runtime.journeys.errors': "Jornada com erros";
|
|
530
|
+
readonly 'praxis.editorialForms.runtime.journeys.warnings': "Jornada com avisos";
|
|
531
|
+
readonly 'praxis.editorialForms.runtime.step.counter': "Etapa {current} de {total}";
|
|
532
|
+
readonly 'praxis.editorialForms.runtime.step.statusTitle': "Situacao desta etapa";
|
|
533
|
+
readonly 'praxis.editorialForms.runtime.step.globalErrorTitle': "Erro global do runtime";
|
|
534
|
+
readonly 'praxis.editorialForms.runtime.actions.previous': "Etapa anterior";
|
|
535
|
+
readonly 'praxis.editorialForms.runtime.actions.next': "Proxima etapa";
|
|
536
|
+
readonly 'praxis.editorialForms.runtime.actions.nextBlocked': "Corrija os erros para avancar";
|
|
537
|
+
readonly 'praxis.editorialForms.runtime.empty.noJourneyTitle': "Editorial runtime sem jornada";
|
|
538
|
+
readonly 'praxis.editorialForms.runtime.empty.noJourneyDescription': "Nenhuma jornada editorial foi resolvida para o estado atual.";
|
|
539
|
+
readonly 'praxis.editorialForms.runtime.empty.noSolutionTitle': "Editorial runtime vazio";
|
|
540
|
+
readonly 'praxis.editorialForms.runtime.empty.noSolutionDescription': "Forneca uma solution ou instance editorial para materializar a jornada.";
|
|
541
|
+
readonly 'praxis.editorialForms.runtime.fallback.blocked': "Runtime bloqueado";
|
|
542
|
+
readonly 'praxis.editorialForms.runtime.fallback.degraded': "Runtime degradado";
|
|
543
|
+
readonly 'praxis.editorialForms.runtime.fallback.warning': "Runtime com aviso";
|
|
544
|
+
readonly 'praxis.editorialForms.runtime.fallback.healthy': "Runtime saudavel";
|
|
545
|
+
readonly 'praxis.editorialForms.runtime.navigation.globalBlocked': "A navegacao de avanço foi bloqueada porque o runtime possui erro global que precisa ser corrigido antes de continuar.";
|
|
546
|
+
readonly 'praxis.editorialForms.runtime.navigation.stepBlocked': "A navegacao de avanço foi bloqueada porque a etapa atual possui erro estrutural.";
|
|
547
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.severity.error': "Erro";
|
|
548
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.severity.warning': "Aviso";
|
|
549
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.severity.info': "Info";
|
|
550
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.errorsCount': "Erros: {count}";
|
|
551
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.warningsCount': "Avisos: {count}";
|
|
552
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.infoCount': "Infos: {count}";
|
|
553
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.message.blocked': "Existem inconsistencias bloqueadoras que impedem a progressao segura do fluxo editorial.";
|
|
554
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.message.degraded': "O runtime esta operando de forma degradada e requer atencao operacional.";
|
|
555
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.message.error': "Existem inconsistencias que podem comprometer a experiencia editorial.";
|
|
556
|
+
readonly 'praxis.editorialForms.runtime.diagnostics.message.warning': "Existem avisos operacionais para revisar nesta instancia editorial.";
|
|
557
|
+
readonly 'praxis.editorialForms.runtime.scope.global': "Escopo: runtime global";
|
|
558
|
+
readonly 'praxis.editorialForms.runtime.scope.journey': "Jornada";
|
|
559
|
+
readonly 'praxis.editorialForms.runtime.scope.step': "Etapa";
|
|
560
|
+
readonly 'praxis.editorialForms.runtime.scope.block': "Bloco";
|
|
561
|
+
readonly 'praxis.editorialForms.runtime.scope.path': "Path";
|
|
562
|
+
readonly 'praxis.editorialForms.stepper.ariaLabel': "Etapas da jornada";
|
|
563
|
+
readonly 'praxis.editorialForms.stepper.state.completed': "concluida";
|
|
564
|
+
readonly 'praxis.editorialForms.stepper.state.active': "etapa atual";
|
|
565
|
+
readonly 'praxis.editorialForms.stepper.state.blocked': "bloqueada";
|
|
566
|
+
readonly 'praxis.editorialForms.stepper.state.pending': "pendente";
|
|
567
|
+
readonly 'praxis.editorialForms.selection.state.selected': "selecionado";
|
|
568
|
+
readonly 'praxis.editorialForms.selection.state.unselected': "nao selecionado";
|
|
569
|
+
readonly 'praxis.editorialForms.selection.group.label': "Grupo de selecao";
|
|
570
|
+
readonly 'praxis.editorialForms.review.empty': "-";
|
|
571
|
+
readonly 'praxis.editorialForms.review.boolean.true': "Sim";
|
|
572
|
+
readonly 'praxis.editorialForms.review.boolean.false': "Nao";
|
|
573
|
+
readonly 'praxis.editorialForms.dataCollection.loadingTitle': "Preparando coleta";
|
|
574
|
+
readonly 'praxis.editorialForms.dataCollection.unavailableTitle': "Coleta nao disponivel";
|
|
575
|
+
readonly 'praxis.editorialForms.dataCollection.error.incompatibleTitle': "Adaptador incompatível";
|
|
576
|
+
readonly 'praxis.editorialForms.dataCollection.error.missingConfigTitle': "Configuracao de coleta ausente";
|
|
577
|
+
readonly 'praxis.editorialForms.dataCollection.error.incompleteAdapterTitle': "Adaptador incompleto";
|
|
578
|
+
readonly 'praxis.editorialForms.dataCollection.error.loadFailureTitle': "Falha ao carregar a engine";
|
|
579
|
+
readonly 'praxis.editorialForms.dataCollection.error.unresolvedComponentTitle': "Componente nao resolvido";
|
|
580
|
+
readonly 'praxis.editorialForms.dataCollection.error.invalidComponentTitle': "Componente incompatível";
|
|
581
|
+
readonly 'praxis.editorialForms.dataCollection.fallback.invalid': "O bloco \"{formBlockId}\" foi materializado com estado invalido. Revise formBlockId, formConfigRef e a configuracao editorial herdada.";
|
|
582
|
+
readonly 'praxis.editorialForms.dataCollection.fallback.missingConfig': "O bloco \"{formBlockId}\" nao encontrou configuracao de coleta. Chave consultada: {lookupKey}.";
|
|
583
|
+
readonly 'praxis.editorialForms.dataCollection.fallback.incompatible': "O bloco \"{formBlockId}\" encontrou adapters registrados ({adapterIds}), mas nenhum declarou compatibilidade para esta coleta.";
|
|
584
|
+
readonly 'praxis.editorialForms.dataCollection.fallback.missingAdapter': "O bloco \"{formBlockId}\" nao encontrou configuracao de coleta nem adaptador registrado. Verifique o provider do host e a materializacao do FormConfig editorial.";
|
|
585
|
+
readonly 'praxis.editorialForms.dataCollection.fallback.adapterWithoutConfig': "O bloco \"{formBlockId}\" encontrou um adaptador, mas nao encontrou FormConfig em {lookupKey}.";
|
|
586
|
+
readonly 'praxis.editorialForms.dataCollection.fallback.unresolvedEngine': "Existe configuracao para \"{formBlockId}\" ({source}), mas nenhum adaptador de coleta foi registrado para materializar a engine.";
|
|
587
|
+
readonly 'praxis.editorialForms.dataCollection.error.incompatibleMessage': "Nenhum adaptador registrado aceitou o bloco \"{formBlockId}\".";
|
|
588
|
+
readonly 'praxis.editorialForms.dataCollection.error.availableAdapters': "Adapters disponiveis: {adapterIds}.";
|
|
589
|
+
readonly 'praxis.editorialForms.dataCollection.error.missingConfigMessage': "O bloco \"{formBlockId}\" nao possui FormConfig resolvido para a engine de coleta.";
|
|
590
|
+
readonly 'praxis.editorialForms.dataCollection.error.lookupSource': "Origem consultada: {lookupKey}.";
|
|
591
|
+
readonly 'praxis.editorialForms.dataCollection.error.adapterRegistrationHint': "Registre um componente compatível ou implemente resolveComponent().";
|
|
592
|
+
readonly 'praxis.editorialForms.dataCollection.error.incompleteAdapterMessage': "O adaptador \"{adapterName}\" nao expôs um componente de coleta.";
|
|
593
|
+
readonly 'praxis.editorialForms.dataCollection.loadingMessage': "Carregando a engine de coleta para \"{formBlockId}\"...";
|
|
594
|
+
readonly 'praxis.editorialForms.dataCollection.error.loadFailureMessage': "O adaptador \"{adapterName}\" falhou ao preparar a coleta do bloco \"{formBlockId}\".";
|
|
595
|
+
readonly 'praxis.editorialForms.dataCollection.error.loadFailureDetails': "Valide o provider opcional do host e a disponibilidade do componente compatível.";
|
|
596
|
+
readonly 'praxis.editorialForms.dataCollection.error.unresolvedComponentMessage': "O adaptador \"{adapterName}\" nao retornou um componente para o bloco \"{formBlockId}\".";
|
|
597
|
+
readonly 'praxis.editorialForms.dataCollection.error.unresolvedComponentDetails': "Implemente component ou resolveComponent() com um componente Angular compatível.";
|
|
598
|
+
readonly 'praxis.editorialForms.dataCollection.error.invalidComponentMessage': "O adaptador \"{adapterName}\" retornou um componente incompatível para \"{formBlockId}\".";
|
|
599
|
+
};
|
|
600
|
+
|
|
386
601
|
declare class EditorialBlockRendererComponent {
|
|
387
602
|
readonly block: _angular_core.InputSignal<EditorialBlock>;
|
|
388
603
|
readonly runtimeContext: _angular_core.InputSignal<Record<string, unknown> | null>;
|
|
389
604
|
readonly solution: _angular_core.InputSignal<EditorialSolutionDefinition | null>;
|
|
390
605
|
readonly instance: _angular_core.InputSignal<EditorialTemplateInstance | null>;
|
|
606
|
+
readonly runtimeContextChange: _angular_core.OutputEmitterRef<Record<string, unknown>>;
|
|
391
607
|
readonly operationalEvent: _angular_core.OutputEmitterRef<EditorialRuntimeOperationalEvent>;
|
|
608
|
+
readonly blockAction: _angular_core.OutputEmitterRef<{
|
|
609
|
+
blockId: string;
|
|
610
|
+
actionId: string;
|
|
611
|
+
}>;
|
|
612
|
+
protected readonly introHero: _angular_core.Signal<EditorialIntroHeroBlock>;
|
|
392
613
|
protected readonly hero: _angular_core.Signal<EditorialHeroBlock>;
|
|
393
614
|
protected readonly richText: _angular_core.Signal<EditorialRichTextBlock>;
|
|
394
615
|
protected readonly policyList: _angular_core.Signal<EditorialPolicyListBlock>;
|
|
395
616
|
protected readonly timeline: _angular_core.Signal<EditorialTimelineStepsBlock>;
|
|
396
617
|
protected readonly review: _angular_core.Signal<EditorialReviewSummaryBlock>;
|
|
618
|
+
protected readonly reviewSections: _angular_core.Signal<EditorialReviewSectionsBlock>;
|
|
397
619
|
protected readonly contextSummary: _angular_core.Signal<EditorialContextSummaryBlock>;
|
|
620
|
+
protected readonly selectionCards: _angular_core.Signal<EditorialSelectionCardsBlock>;
|
|
398
621
|
protected readonly infoCards: _angular_core.Signal<EditorialInfoCardsBlock>;
|
|
622
|
+
protected readonly successPanel: _angular_core.Signal<EditorialSuccessPanelBlock>;
|
|
399
623
|
protected readonly faq: _angular_core.Signal<EditorialFaqAccordionBlock>;
|
|
400
624
|
protected readonly dataCollection: _angular_core.Signal<EditorialDataCollectionBlock>;
|
|
401
625
|
protected readonly customWidget: _angular_core.Signal<_praxisui_core.EditorialCustomWidgetBlock>;
|
|
402
626
|
protected resolveValue(valuePath?: string, fallback?: string): string;
|
|
403
627
|
protected resolveContextPath(valuePath?: string): string | undefined;
|
|
404
628
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditorialBlockRendererComponent, never>;
|
|
405
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditorialBlockRendererComponent, "praxis-editorial-block-renderer", never, { "block": { "alias": "block"; "required": true; "isSignal": true; }; "runtimeContext": { "alias": "runtimeContext"; "required": false; "isSignal": true; }; "solution": { "alias": "solution"; "required": false; "isSignal": true; }; "instance": { "alias": "instance"; "required": false; "isSignal": true; }; }, { "operationalEvent": "operationalEvent"; }, never, never, true, never>;
|
|
629
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditorialBlockRendererComponent, "praxis-editorial-block-renderer", never, { "block": { "alias": "block"; "required": true; "isSignal": true; }; "runtimeContext": { "alias": "runtimeContext"; "required": false; "isSignal": true; }; "solution": { "alias": "solution"; "required": false; "isSignal": true; }; "instance": { "alias": "instance"; "required": false; "isSignal": true; }; }, { "runtimeContextChange": "runtimeContextChange"; "operationalEvent": "operationalEvent"; "blockAction": "blockAction"; }, never, never, true, never>;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
declare class EditorialIntroHeroBlockComponent {
|
|
633
|
+
readonly block: _angular_core.InputSignal<EditorialIntroHeroBlock>;
|
|
634
|
+
readonly actionTriggered: _angular_core.OutputEmitterRef<string>;
|
|
635
|
+
protected triggerAction(action: EditorialPresentationalAction): void;
|
|
636
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditorialIntroHeroBlockComponent, never>;
|
|
637
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditorialIntroHeroBlockComponent, "praxis-editorial-intro-hero-block", never, { "block": { "alias": "block"; "required": true; "isSignal": true; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
declare class EditorialReviewSectionsBlockComponent {
|
|
641
|
+
private readonly i18n;
|
|
642
|
+
readonly block: _angular_core.InputSignal<EditorialReviewSectionsBlock>;
|
|
643
|
+
readonly runtimeContext: _angular_core.InputSignal<Record<string, unknown> | null>;
|
|
644
|
+
protected visibleFields(fields: EditorialReviewSectionField[]): EditorialReviewSectionField[];
|
|
645
|
+
protected resolveValue(field: EditorialReviewSectionField): string;
|
|
646
|
+
private readValue;
|
|
647
|
+
private formatValue;
|
|
648
|
+
private formatDateValue;
|
|
649
|
+
private formatPhoneValue;
|
|
650
|
+
private formatBooleanValue;
|
|
651
|
+
private formatListValue;
|
|
652
|
+
private t;
|
|
653
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditorialReviewSectionsBlockComponent, never>;
|
|
654
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditorialReviewSectionsBlockComponent, "praxis-editorial-review-sections-block", never, { "block": { "alias": "block"; "required": true; "isSignal": true; }; "runtimeContext": { "alias": "runtimeContext"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
declare class EditorialSelectionCardsBlockComponent {
|
|
658
|
+
private readonly i18n;
|
|
659
|
+
readonly block: _angular_core.InputSignal<EditorialSelectionCardsBlock>;
|
|
660
|
+
readonly runtimeContext: _angular_core.InputSignal<Record<string, unknown> | null>;
|
|
661
|
+
readonly runtimeContextChange: _angular_core.OutputEmitterRef<Record<string, unknown>>;
|
|
662
|
+
readonly valueChange: _angular_core.OutputEmitterRef<{
|
|
663
|
+
field: string;
|
|
664
|
+
value: string | string[] | null;
|
|
665
|
+
}>;
|
|
666
|
+
protected readonly groupId: _angular_core.Signal<string>;
|
|
667
|
+
protected readonly gridTemplateColumns: _angular_core.Signal<string>;
|
|
668
|
+
protected readonly groupAriaLabel: _angular_core.Signal<string>;
|
|
669
|
+
protected isSelected(value: string): boolean;
|
|
670
|
+
protected toggleValue(value: string): void;
|
|
671
|
+
protected itemTabIndex(value: string): number;
|
|
672
|
+
protected handleKeydown(event: KeyboardEvent, value: string): void;
|
|
673
|
+
protected buildItemAriaLabel(label: string, value: string): string;
|
|
674
|
+
private currentValue;
|
|
675
|
+
private buildNextRuntimeContext;
|
|
676
|
+
private readFormData;
|
|
677
|
+
private cloneFormData;
|
|
678
|
+
private enabledItemValues;
|
|
679
|
+
private focusItem;
|
|
680
|
+
private t;
|
|
681
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditorialSelectionCardsBlockComponent, never>;
|
|
682
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditorialSelectionCardsBlockComponent, "praxis-editorial-selection-cards-block", never, { "block": { "alias": "block"; "required": true; "isSignal": true; }; "runtimeContext": { "alias": "runtimeContext"; "required": false; "isSignal": true; }; }, { "runtimeContextChange": "runtimeContextChange"; "valueChange": "valueChange"; }, never, never, true, never>;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
declare class EditorialStepperComponent {
|
|
686
|
+
private readonly i18n;
|
|
687
|
+
readonly steps: _angular_core.InputSignal<EditorialResolvedStep[]>;
|
|
688
|
+
readonly activeStepId: _angular_core.InputSignal<string | null>;
|
|
689
|
+
readonly config: _angular_core.InputSignal<EditorialStepperConfig | null>;
|
|
690
|
+
readonly orientation: _angular_core.InputSignal<EditorialOrientation>;
|
|
691
|
+
readonly progressionBlocked: _angular_core.InputSignal<boolean>;
|
|
692
|
+
readonly isStepSelectionBlocked: _angular_core.InputSignal<(stepId: string) => boolean>;
|
|
693
|
+
readonly stepSelected: _angular_core.OutputEmitterRef<string>;
|
|
694
|
+
protected readonly effectiveOrientation: _angular_core.Signal<EditorialOrientation>;
|
|
695
|
+
protected readonly stepperAriaLabel: _angular_core.Signal<string>;
|
|
696
|
+
protected stepState(step: EditorialResolvedStep): string;
|
|
697
|
+
protected stepNumber(step: EditorialResolvedStep): number;
|
|
698
|
+
protected isSelectionBlocked(stepId: string): boolean;
|
|
699
|
+
protected onStepClick(stepId: string): void;
|
|
700
|
+
protected buildStepAriaLabel(step: EditorialResolvedStep): string;
|
|
701
|
+
private t;
|
|
702
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditorialStepperComponent, never>;
|
|
703
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditorialStepperComponent, "praxis-editorial-stepper", never, { "steps": { "alias": "steps"; "required": true; "isSignal": true; }; "activeStepId": { "alias": "activeStepId"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "progressionBlocked": { "alias": "progressionBlocked"; "required": false; "isSignal": true; }; "isStepSelectionBlocked": { "alias": "isStepSelectionBlocked"; "required": false; "isSignal": true; }; }, { "stepSelected": "stepSelected"; }, never, never, true, never>;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
declare class EditorialSuccessPanelBlockComponent {
|
|
707
|
+
readonly block: _angular_core.InputSignal<EditorialSuccessPanelBlock>;
|
|
708
|
+
readonly actionTriggered: _angular_core.OutputEmitterRef<string>;
|
|
709
|
+
protected triggerAction(action: EditorialPresentationalAction): void;
|
|
710
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditorialSuccessPanelBlockComponent, never>;
|
|
711
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditorialSuccessPanelBlockComponent, "praxis-editorial-success-panel-block", never, { "block": { "alias": "block"; "required": true; "isSignal": true; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
|
|
406
712
|
}
|
|
407
713
|
|
|
408
714
|
declare class HarnessDataEngineComponent {
|
|
@@ -434,5 +740,5 @@ interface EditorialRuntimeHarnessCatalog {
|
|
|
434
740
|
declare function createEditorialRuntimeHarnessCatalog(): EditorialRuntimeHarnessCatalog;
|
|
435
741
|
declare function getHarnessDataEngineComponent(): Type<unknown>;
|
|
436
742
|
|
|
437
|
-
export { DEFAULT_EDITORIAL_RUNTIME_HOST_CONFIG, EDITORIAL_DATA_BLOCK_ADAPTER, EditorialBlockRendererComponent, EditorialDataBlockAdapterRegistry, EditorialDataCollectionBlockOutletComponent, EditorialFormRuntimeComponent, EditorialRuntimeState, HarnessDataEngineComponent, createEditorialDynamicFormAdapter, createEditorialRuntimeHarnessCatalog, deriveRuntimeFallbackState, getHarnessDataEngineComponent, getValueAtPath, getVisibleBlocks, isBlockVisible, matchesVisibilityRule, provideEditorialDataBlockAdapter, provideEditorialDynamicFormAdapter, providePraxisEditorialForms, resolveActiveJourney, resolveActiveStep, resolveEditorialDataBlockAdapter, resolveEditorialDataBlockFormConfig, resolveEditorialDataBlockFormConfigDetails, resolveEditorialRuntimeSnapshot };
|
|
438
|
-
export type { DynamicFormCompatibleComponent, EditorialDataBlockAdapter, EditorialDataBlockAdapterResolution, EditorialDataBlockAdapterResolutionStatus, EditorialDataBlockComponentInputs, EditorialDataBlockContext, EditorialDataBlockResolution, EditorialDynamicFormAdapterOptions, EditorialResolvedBlock, EditorialResolvedBlockBase, EditorialResolvedBlockCompositionEntry, EditorialResolvedBlockCompositionOperation, EditorialResolvedBlockProvenance, EditorialResolvedBlockSourceKind, EditorialResolvedBlockSourceRef, EditorialResolvedDataCollectionBlock, EditorialResolvedDataCollectionState, EditorialResolvedJourney, EditorialResolvedStep, EditorialRuntimeDiagnostic, EditorialRuntimeDiagnosticCode, EditorialRuntimeDiagnosticScopeKind, EditorialRuntimeDiagnosticSeverity, EditorialRuntimeDiagnostics, EditorialRuntimeFallbackMode, EditorialRuntimeFallbackScope, EditorialRuntimeFallbackState, EditorialRuntimeFixture, EditorialRuntimeHarnessCatalog, EditorialRuntimeHostConfig, EditorialRuntimeInput, EditorialRuntimeOperationalEvent, EditorialRuntimeOperationalEventBase, EditorialRuntimeOperationalEventSeverity, EditorialRuntimeOperationalEventType, EditorialRuntimeSnapshot, ResolveEditorialRuntimeSnapshotInput };
|
|
743
|
+
export { DEFAULT_EDITORIAL_RUNTIME_HOST_CONFIG, EDITORIAL_DATA_BLOCK_ADAPTER, EditorialBlockRendererComponent, EditorialDataBlockAdapterRegistry, EditorialDataCollectionBlockOutletComponent, EditorialFormRuntimeComponent, EditorialIntroHeroBlockComponent, EditorialReviewSectionsBlockComponent, EditorialRuntimeState, EditorialSelectionCardsBlockComponent, EditorialStepperComponent, EditorialSuccessPanelBlockComponent, HarnessDataEngineComponent, PRAXIS_EDITORIAL_FORMS_EN_US, PRAXIS_EDITORIAL_FORMS_PT_BR, buildRuntimeCssVars, buildRuntimeLayoutCss, createEditorialDynamicFormAdapter, createEditorialRuntimeHarnessCatalog, createPraxisEditorialFormsI18nConfig, deriveRuntimeFallbackState, getHarnessDataEngineComponent, getStepDisplayState, getValueAtPath, getVisibleBlocks, isBlockVisible, matchesVisibilityRule, provideEditorialDataBlockAdapter, provideEditorialDynamicFormAdapter, providePraxisEditorialForms, providePraxisEditorialFormsI18n, resolveActiveJourney, resolveActiveStep, resolveDensity, resolveEditorialDataBlockAdapter, resolveEditorialDataBlockFormConfig, resolveEditorialDataBlockFormConfigDetails, resolveEditorialRuntimeSnapshot, resolveRuntimeOrientation, resolveShellVariant };
|
|
744
|
+
export type { DynamicFormCompatibleComponent, EditorialDataBlockAdapter, EditorialDataBlockAdapterResolution, EditorialDataBlockAdapterResolutionStatus, EditorialDataBlockComponentInputs, EditorialDataBlockContext, EditorialDataBlockResolution, EditorialDataBlockValueChangeEvent, EditorialDynamicFormAdapterOptions, EditorialResolvedBlock, EditorialResolvedBlockBase, EditorialResolvedBlockCompositionEntry, EditorialResolvedBlockCompositionOperation, EditorialResolvedBlockProvenance, EditorialResolvedBlockSourceKind, EditorialResolvedBlockSourceRef, EditorialResolvedDataCollectionBlock, EditorialResolvedDataCollectionState, EditorialResolvedJourney, EditorialResolvedStep, EditorialRuntimeDiagnostic, EditorialRuntimeDiagnosticCode, EditorialRuntimeDiagnosticScopeKind, EditorialRuntimeDiagnosticSeverity, EditorialRuntimeDiagnostics, EditorialRuntimeFallbackMode, EditorialRuntimeFallbackScope, EditorialRuntimeFallbackState, EditorialRuntimeFixture, EditorialRuntimeHarnessCatalog, EditorialRuntimeHostConfig, EditorialRuntimeInput, EditorialRuntimeOperationalEvent, EditorialRuntimeOperationalEventBase, EditorialRuntimeOperationalEventSeverity, EditorialRuntimeOperationalEventType, EditorialRuntimeSnapshot, PraxisEditorialFormsI18nOptions, ResolveEditorialRuntimeSnapshotInput };
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/editorial-forms",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.63",
|
|
4
4
|
"description": "Editorial form runtime for Praxis UI: journeys, presets, semantic blocks, and specialist hosting for editorial experiences.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.0.0",
|
|
7
7
|
"@angular/core": "^20.0.0",
|
|
8
|
-
"@praxisui/core": "^1.0.0-beta.
|
|
8
|
+
"@praxisui/core": "^1.0.0-beta.63"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"tslib": "^2.3.0"
|