@praxisui/editorial-forms 8.0.0-beta.1 → 8.0.0-beta.11

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 CHANGED
@@ -40,6 +40,31 @@ Optional integration:
40
40
 
41
41
  - `@praxisui/dynamic-form` if your `dataCollection` blocks should render real forms instead of fallback content
42
42
 
43
+ ## App provider
44
+
45
+ Register the package provider in hosts that render the runtime through dynamic
46
+ widget composition, including `@praxisui/core` dynamic pages, page-builder
47
+ previews, examples, recipes and labs:
48
+
49
+ ```ts
50
+ import { providePraxisEditorialForms } from '@praxisui/editorial-forms';
51
+
52
+ export const appConfig = {
53
+ providers: [
54
+ providePraxisEditorialForms(),
55
+ ],
56
+ };
57
+ ```
58
+
59
+ `providePraxisEditorialForms()` registers the package dynamic widget metadata for
60
+ `praxis-editorial-form-runtime`. It does not register the optional
61
+ `@praxisui/dynamic-form` adapter and does not create a global singleton runtime
62
+ graph.
63
+
64
+ Without this provider, hosts may still use `EditorialFormRuntimeComponent`
65
+ directly through a standalone import, but `DynamicWidgetLoader` cannot discover
66
+ `praxis-editorial-form-runtime` from a JSON page definition.
67
+
43
68
  ## Core concepts
44
69
 
45
70
  - `solution`: canonical editorial definition
@@ -144,6 +169,34 @@ Recommended host usage:
144
169
  - use `operationalEvent` for technical telemetry, not as primary user-facing UI content
145
170
  - keep `runtimeContext` immutable from the host side; the runtime now emits refreshed state as blocks and adapters materialize `formData`
146
171
 
172
+ ## Dynamic widget composition
173
+
174
+ The runtime publishes `praxis-editorial-form-runtime` as dynamic widget metadata
175
+ with these canonical component ports:
176
+
177
+ Inputs:
178
+
179
+ - `solution`
180
+ - `instance`
181
+ - `runtimeContext`
182
+ - `hostConfig`
183
+
184
+ Outputs:
185
+
186
+ - `snapshotChange`
187
+ - `fallbackChange`
188
+ - `operationalEvent`
189
+
190
+ Nested dynamic page links must target these ports through
191
+ `composition.links` using `component-port` endpoints. When the editorial runtime
192
+ is nested inside a container such as Tabs or Expansion, persist the nested child
193
+ identity through `nestedPath` and keep the terminal segment as a widget segment
194
+ with stable `key` and `componentType: "praxis-editorial-form-runtime"`.
195
+
196
+ Do not expose `widgetEvent`, `bindingPath`, host-specific aliases, or
197
+ container-owned child-specific ports as the final contract for editorial runtime
198
+ composition.
199
+
147
200
  ## Presentation layer
148
201
 
149
202
  The runtime now supports an optional `presentation` contract inside the editorial `solution`.
@@ -1,22 +1,10 @@
1
1
  import * as i0 from '@angular/core';
2
- import { makeEnvironmentProviders, InjectionToken, inject, DestroyRef, viewChild, ViewContainerRef, input, output, signal, computed, effect, ChangeDetectionStrategy, Component, reflectComponentType, Input } from '@angular/core';
2
+ import { InjectionToken, makeEnvironmentProviders, inject, DestroyRef, viewChild, ViewContainerRef, input, output, signal, computed, effect, ChangeDetectionStrategy, Component, ENVIRONMENT_INITIALIZER, reflectComponentType, Input } from '@angular/core';
3
+ import { PraxisI18nService, PraxisIconDirective, DynamicWidgetLoaderDirective, ComponentMetadataRegistry, providePraxisI18n } from '@praxisui/core';
3
4
  import { CommonModule } from '@angular/common';
4
- import { PraxisI18nService, PraxisIconDirective, DynamicWidgetLoaderDirective, providePraxisI18n } from '@praxisui/core';
5
5
  import * as i1 from '@angular/material/icon';
6
6
  import { MatIconModule } from '@angular/material/icon';
7
7
 
8
- /**
9
- * Root provider entrypoint for the editorial runtime package.
10
- *
11
- * Intentionally minimal in v1:
12
- * - no global singleton graph yet
13
- * - no dependency on @praxisui/dynamic-form
14
- * - safe to consume from apps without pulling generic form authoring
15
- */
16
- function providePraxisEditorialForms() {
17
- return makeEnvironmentProviders([]);
18
- }
19
-
20
8
  const DEFAULT_EDITORIAL_RUNTIME_HOST_CONFIG = {
21
9
  emitOperationalEvents: true,
22
10
  forwardAdapterOperationalEvents: true,
@@ -3775,6 +3763,172 @@ function formatScopeLabel(labelName, label, id) {
3775
3763
  return null;
3776
3764
  }
3777
3765
 
3766
+ const EDITORIAL_FORM_RUNTIME_PORTS = [
3767
+ {
3768
+ id: 'solution',
3769
+ label: 'Editorial solution',
3770
+ direction: 'input',
3771
+ semanticKind: 'config-fragment',
3772
+ schema: {
3773
+ id: 'EditorialSolutionDefinition',
3774
+ kind: 'ts-type',
3775
+ ref: 'EditorialSolutionDefinition',
3776
+ },
3777
+ description: 'Canonical editorial solution definition consumed by the runtime.',
3778
+ exposure: { public: true, group: 'config' },
3779
+ },
3780
+ {
3781
+ id: 'instance',
3782
+ label: 'Editorial instance',
3783
+ direction: 'input',
3784
+ semanticKind: 'config-fragment',
3785
+ schema: {
3786
+ id: 'EditorialTemplateInstance',
3787
+ kind: 'ts-type',
3788
+ ref: 'EditorialTemplateInstance',
3789
+ },
3790
+ description: 'Runtime instance with persisted context, overrides and selected template reference.',
3791
+ exposure: { public: true, group: 'config' },
3792
+ },
3793
+ {
3794
+ id: 'runtimeContext',
3795
+ label: 'Runtime context',
3796
+ direction: 'input',
3797
+ semanticKind: 'view-context',
3798
+ schema: {
3799
+ id: 'Record<string, unknown>',
3800
+ kind: 'ts-type',
3801
+ ref: 'Record<string, unknown>',
3802
+ },
3803
+ description: 'Host-provided context merged with the editorial instance context.',
3804
+ exposure: { public: true, group: 'context' },
3805
+ },
3806
+ {
3807
+ id: 'snapshotChange',
3808
+ label: 'Snapshot change',
3809
+ direction: 'output',
3810
+ semanticKind: 'event',
3811
+ cardinality: 'stream',
3812
+ schema: {
3813
+ id: 'EditorialRuntimeSnapshot',
3814
+ kind: 'ts-type',
3815
+ ref: 'EditorialRuntimeSnapshot',
3816
+ },
3817
+ description: 'Resolved editorial runtime snapshot emitted when solution, instance or context changes.',
3818
+ exposure: { public: true, group: 'events' },
3819
+ },
3820
+ {
3821
+ id: 'fallbackChange',
3822
+ label: 'Fallback change',
3823
+ direction: 'output',
3824
+ semanticKind: 'status',
3825
+ cardinality: 'stream',
3826
+ schema: {
3827
+ id: 'EditorialRuntimeFallbackState',
3828
+ kind: 'ts-type',
3829
+ ref: 'EditorialRuntimeFallbackState',
3830
+ },
3831
+ description: 'Operational fallback state emitted when diagnostics affect runtime health.',
3832
+ exposure: { public: true, group: 'status' },
3833
+ },
3834
+ {
3835
+ id: 'operationalEvent',
3836
+ label: 'Operational event',
3837
+ direction: 'output',
3838
+ semanticKind: 'diagnostic',
3839
+ cardinality: 'stream',
3840
+ schema: {
3841
+ id: 'EditorialRuntimeOperationalEvent',
3842
+ kind: 'ts-type',
3843
+ ref: 'EditorialRuntimeOperationalEvent',
3844
+ },
3845
+ description: 'Technical event stream for diagnostics, blocking errors and adapter state.',
3846
+ exposure: { public: true, advanced: true, group: 'diagnostics' },
3847
+ },
3848
+ ];
3849
+ const EDITORIAL_FORM_RUNTIME_COMPONENT_METADATA = {
3850
+ id: 'praxis-editorial-form-runtime',
3851
+ componentType: 'praxis-editorial-form-runtime',
3852
+ selector: 'praxis-editorial-form-runtime',
3853
+ component: EditorialFormRuntimeComponent,
3854
+ friendlyName: 'Praxis Editorial Form Runtime',
3855
+ displayName: 'Praxis Editorial Form Runtime',
3856
+ description: 'Guided editorial runtime for solution and instance driven form experiences.',
3857
+ icon: 'article',
3858
+ lib: '@praxisui/editorial-forms',
3859
+ tags: ['widget', 'editorial', 'forms', 'runtime', 'guided-flow'],
3860
+ inputs: [
3861
+ {
3862
+ name: 'solution',
3863
+ type: 'EditorialSolutionDefinition | null',
3864
+ description: 'Canonical editorial solution definition.',
3865
+ },
3866
+ {
3867
+ name: 'instance',
3868
+ type: 'EditorialTemplateInstance | null',
3869
+ description: 'Editorial instance with context and overrides.',
3870
+ },
3871
+ {
3872
+ name: 'runtimeContext',
3873
+ type: 'Record<string, unknown> | null',
3874
+ description: 'Host context merged into the resolved runtime context.',
3875
+ },
3876
+ {
3877
+ name: 'hostConfig',
3878
+ type: 'EditorialRuntimeHostConfig | null',
3879
+ description: 'Host controls for operational event forwarding.',
3880
+ },
3881
+ ],
3882
+ outputs: [
3883
+ {
3884
+ name: 'snapshotChange',
3885
+ type: 'EditorialRuntimeSnapshot',
3886
+ description: 'Resolved snapshot emitted by the editorial runtime.',
3887
+ },
3888
+ {
3889
+ name: 'fallbackChange',
3890
+ type: 'EditorialRuntimeFallbackState',
3891
+ description: 'Fallback state emitted when diagnostics affect runtime health.',
3892
+ },
3893
+ {
3894
+ name: 'operationalEvent',
3895
+ type: 'EditorialRuntimeOperationalEvent',
3896
+ description: 'Operational diagnostics event stream.',
3897
+ },
3898
+ ],
3899
+ ports: EDITORIAL_FORM_RUNTIME_PORTS,
3900
+ layoutHints: {
3901
+ recommendedCols: 6,
3902
+ recommendedRows: 6,
3903
+ minCols: 4,
3904
+ minRows: 4,
3905
+ },
3906
+ };
3907
+ function providePraxisEditorialFormRuntimeMetadata() {
3908
+ return {
3909
+ provide: ENVIRONMENT_INITIALIZER,
3910
+ multi: true,
3911
+ useFactory: (registry) => () => {
3912
+ registry.register(EDITORIAL_FORM_RUNTIME_COMPONENT_METADATA);
3913
+ },
3914
+ deps: [ComponentMetadataRegistry],
3915
+ };
3916
+ }
3917
+
3918
+ /**
3919
+ * Root provider entrypoint for the editorial runtime package.
3920
+ *
3921
+ * Registers the public DynamicWidgetLoader metadata for
3922
+ * praxis-editorial-form-runtime in ComponentMetadataRegistry. This is the
3923
+ * canonical setup hook for hosts that render editorial forms through dynamic
3924
+ * composition; it does not introduce a separate global runtime singleton graph.
3925
+ */
3926
+ function providePraxisEditorialForms() {
3927
+ return makeEnvironmentProviders([
3928
+ providePraxisEditorialFormRuntimeMetadata(),
3929
+ ]);
3930
+ }
3931
+
3778
3932
  const REQUIRED_DYNAMIC_FORM_INPUTS = ['config', 'formId', 'editorialContext'];
3779
3933
  function readRuntimeFormData(runtimeContext) {
3780
3934
  const formData = runtimeContext?.['formData'];
@@ -4301,4 +4455,4 @@ function getHarnessDataEngineComponent() {
4301
4455
  * Generated bundle index. Do not edit.
4302
4456
  */
4303
4457
 
4304
- 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 };
4458
+ export { DEFAULT_EDITORIAL_RUNTIME_HOST_CONFIG, EDITORIAL_DATA_BLOCK_ADAPTER, EDITORIAL_FORM_RUNTIME_COMPONENT_METADATA, 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, providePraxisEditorialFormRuntimeMetadata, providePraxisEditorialForms, providePraxisEditorialFormsI18n, resolveActiveJourney, resolveActiveStep, resolveDensity, resolveEditorialDataBlockAdapter, resolveEditorialDataBlockFormConfig, resolveEditorialDataBlockFormConfigDetails, resolveEditorialRuntimeSnapshot, resolveRuntimeOrientation, resolveShellVariant };
package/index.d.ts CHANGED
@@ -1,15 +1,15 @@
1
1
  import * as _angular_core from '@angular/core';
2
- import { EnvironmentProviders, Type, InjectionToken } from '@angular/core';
2
+ import { EnvironmentProviders, Provider, Type, InjectionToken } from '@angular/core';
3
3
  import * as _praxisui_core 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';
4
+ import { EditorialProblemType, EditorialWizardPresentation, EditorialThemePreset, EditorialCompliancePreset, EditorialStepKind, EditorialIconSpec, EditorialStepVisualConfig, EditorialBlock, EditorialDataCollectionBlock, EditorialSolutionDefinition, EditorialTemplateInstance, PraxisTranslationParams, ComponentDocMeta, 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.
8
8
  *
9
- * Intentionally minimal in v1:
10
- * - no global singleton graph yet
11
- * - no dependency on @praxisui/dynamic-form
12
- * - safe to consume from apps without pulling generic form authoring
9
+ * Registers the public DynamicWidgetLoader metadata for
10
+ * praxis-editorial-form-runtime in ComponentMetadataRegistry. This is the
11
+ * canonical setup hook for hosts that render editorial forms through dynamic
12
+ * composition; it does not introduce a separate global runtime singleton graph.
13
13
  */
14
14
  declare function providePraxisEditorialForms(): EnvironmentProviders;
15
15
 
@@ -257,6 +257,9 @@ declare class EditorialFormRuntimeComponent {
257
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>;
258
258
  }
259
259
 
260
+ declare const EDITORIAL_FORM_RUNTIME_COMPONENT_METADATA: ComponentDocMeta;
261
+ declare function providePraxisEditorialFormRuntimeMetadata(): Provider;
262
+
260
263
  type EditorialDataBlockComponentInputs = Record<string, unknown>;
261
264
  interface EditorialDataBlockValueChangeEvent {
262
265
  formData: Record<string, unknown>;
@@ -748,5 +751,5 @@ interface EditorialRuntimeHarnessCatalog {
748
751
  declare function createEditorialRuntimeHarnessCatalog(): EditorialRuntimeHarnessCatalog;
749
752
  declare function getHarnessDataEngineComponent(): Type<unknown>;
750
753
 
751
- 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 };
754
+ export { DEFAULT_EDITORIAL_RUNTIME_HOST_CONFIG, EDITORIAL_DATA_BLOCK_ADAPTER, EDITORIAL_FORM_RUNTIME_COMPONENT_METADATA, 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, providePraxisEditorialFormRuntimeMetadata, providePraxisEditorialForms, providePraxisEditorialFormsI18n, resolveActiveJourney, resolveActiveStep, resolveDensity, resolveEditorialDataBlockAdapter, resolveEditorialDataBlockFormConfig, resolveEditorialDataBlockFormConfigDetails, resolveEditorialRuntimeSnapshot, resolveRuntimeOrientation, resolveShellVariant };
752
755
  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": "8.0.0-beta.1",
3
+ "version": "8.0.0-beta.11",
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": "^8.0.0-beta.1"
8
+ "@praxisui/core": "^8.0.0-beta.11"
9
9
  },
10
10
  "dependencies": {
11
11
  "tslib": "^2.3.0"