@praxisui/core 9.0.4-rc.14 → 9.0.4-rc.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -251,7 +251,7 @@ export const appConfig = {
251
251
 
252
252
  Use `GlobalActionRef` and the catalog helpers when declaring or validating action payloads. The host remains responsible for registered executors and policy.
253
253
 
254
- Resource action discovery also carries an optional `execution` contract. Consumers must materialize its interaction, idempotency, correlation, resource-version, selection, outcome and refresh policies instead of inferring command behavior from labels or HTTP methods. `ResourceActionOpenAdapterService` projects form-based actions into Dynamic Form inputs and fails closed when a required `If-Match` version cannot be supplied or bound at runtime.
254
+ Resource action discovery also carries an optional `execution` contract. Consumers must materialize its interaction, idempotency, correlation, resource-version, selection, outcome and refresh policies instead of inferring command behavior from labels or HTTP methods. `ResourceActionOpenAdapterService` projects form-based actions into Dynamic Form inputs, uses transient schema-owned command layout, keeps the materialized host inputs authoritative over saved preferences, and fails closed when a required `If-Match` version cannot be supplied or bound at runtime.
255
255
 
256
256
  ## Collection Export
257
257
 
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": "1.0.0",
3
- "generatedAt": "2026-08-03T16:18:47.808Z",
3
+ "generatedAt": "2026-08-03T17:53:06.824Z",
4
4
  "packageName": "@praxisui/core",
5
- "packageVersion": "9.0.4-rc.14",
5
+ "packageVersion": "9.0.4-rc.16",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 4,
@@ -15036,6 +15036,15 @@ class ResourceActionOpenAdapterService {
15036
15036
  resourcePath,
15037
15037
  formId: this.buildStableInstanceId(action),
15038
15038
  mode: 'create',
15039
+ configPersistenceStrategy: 'input-first',
15040
+ layoutPolicy: {
15041
+ source: 'schema',
15042
+ intent: 'command',
15043
+ preset: 'groupedCommand',
15044
+ lifecycle: 'live',
15045
+ persistence: 'transient',
15046
+ schemaType: 'request',
15047
+ },
15039
15048
  schemaUrl: resolvedRequestSchemaUrl,
15040
15049
  apiEndpointKey: options.endpointKey ?? null,
15041
15050
  apiUrlEntry: options.apiUrlEntry ?? (discoveryOptions ? this.discovery.resolveApiEntry(discoveryOptions) : null),
@@ -20082,6 +20091,10 @@ function normalizeSelectLike(meta) {
20082
20091
  }
20083
20092
 
20084
20093
  const SERVER_OWNED_FIELD_SEMANTIC_KEYS = [
20094
+ 'disabled',
20095
+ 'readOnly',
20096
+ 'editable',
20097
+ 'fieldAccess',
20085
20098
  'label',
20086
20099
  'hint',
20087
20100
  'helpText',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/core",
3
- "version": "9.0.4-rc.14",
3
+ "version": "9.0.4-rc.16",
4
4
  "description": "Core library for Praxis UI Workspace: types, tokens, services and utilities shared across @praxisui/* packages.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",