@praxisui/dynamic-fields 8.0.0-beta.11 → 8.0.0-beta.13

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
@@ -188,10 +188,11 @@ Estado atual da trilha:
188
188
  - **Component family:** `praxis-dynamic-fields`
189
189
  - **Config Schema:** `FieldMetadata`
190
190
  - **Editable targets:** 7 target kinds: `controlType`, `controlAlias`, `editorialDescriptor`, `selectorMapping`, `fieldMetadataPath`, `runtimeCoverage`, `editorCoverage`.
191
- - **Operation families:** 7 operations: `controlType.register`, `controlType.alias.add`, `controlType.alias.remove`, `descriptor.update`, `metadata.mapping.set`, `editorCoverage.validate`, `runtimeCoverage.validate`.
192
- - **Validation:** 13 validators separam cobertura runtime de cobertura editorial/tooling, protegem aliases deterministas, alinham capabilities de `FieldMetadata` e exigem evidencia de cobertura.
191
+ - **Operation families:** 8 operations: `controlType.register`, `controlType.alias.add`, `controlType.alias.remove`, `descriptor.update`, `selector.mapping.set`, `metadata.mapping.set`, `editorCoverage.validate`, `runtimeCoverage.validate`.
192
+ - **Validation:** 14 validators separam cobertura runtime de cobertura editorial/tooling, protegem aliases e selector mappings deterministas, alinham capabilities de `FieldMetadata` e exigem evidencia de cobertura.
193
193
  - **Control profiles:** 18 perfis (`text-input`, `numeric`, `currency`, `select`, `entity-lookup`, `tree-select`, `list-transfer`, `date`, `date-range`, `time-range`, `toggle`, `color`, `regional-document`, `file-upload`, `collection`, `avatar`, `display-action`, `field-shell`) adicionam operacoes, validators e examples granulares por classe de controle sem duplicar 1 manifesto completo por componente.
194
194
  - **Registry projection:** o manifesto e projetado na entrada agregada `praxis-dynamic-fields` e tambem nos componentes de `@praxisui/dynamic-fields` no `ai_registry`; cada componente projetado recebe `authoringManifestProfiles` com o perfil aplicavel, e runtime render sozinho nao e evidencia suficiente de suporte editorial.
195
+ - **Selector mappings:** `selector.mapping.set` governa entradas do `FieldSelectorRegistry`; selectors de host precisam ser registrados explicitamente em vez de depender de convencao textual ou fallback por nome parecido.
195
196
 
196
197
  ### Componentes Suportados
197
198
 
@@ -0,0 +1 @@
1
+ export { InlineEntityLookupComponent, PDX_ENTITY_LOOKUP_COMPONENT_METADATA, PDX_INLINE_ENTITY_LOOKUP_COMPONENT_METADATA } from './praxisui-dynamic-fields.mjs';
@@ -4664,12 +4664,9 @@ class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent {
4664
4664
  if (ariaLabel.length) {
4665
4665
  return ariaLabel;
4666
4666
  }
4667
- return this.label?.trim() ? null : this.humanizeName(metadata?.name);
4667
+ return this.label?.trim() || this.humanizeName(metadata?.name);
4668
4668
  }
4669
4669
  booleanLabelledBy() {
4670
- if (this.label?.trim()) {
4671
- return this.booleanLabelId();
4672
- }
4673
4670
  return null;
4674
4671
  }
4675
4672
  booleanDescribedBy() {
@@ -4797,7 +4794,7 @@ class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent {
4797
4794
  : null;
4798
4795
  }
4799
4796
  optionAriaLabel(option) {
4800
- return option.label?.trim() ? null : this.humanizeName(this.metadata()?.name);
4797
+ return option.label?.trim() || this.humanizeName(this.metadata()?.name);
4801
4798
  }
4802
4799
  optionSupportingText(option) {
4803
4800
  const parts = [
@@ -4868,7 +4865,7 @@ class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent {
4868
4865
  [color]="metadata()?.color"
4869
4866
  [indeterminate]="metadata()?.indeterminate"
4870
4867
  [required]="isRequiredCheckbox()"
4871
- [ariaLabel]="booleanAriaLabel()"
4868
+ [aria-label]="booleanAriaLabel()"
4872
4869
  [attr.aria-required]="isRequiredCheckbox() ? 'true' : null"
4873
4870
  [attr.aria-labelledby]="booleanLabelledBy()"
4874
4871
  [attr.aria-describedby]="booleanDescribedBy()"
@@ -4921,7 +4918,7 @@ class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent {
4921
4918
  class="pdx-checkbox-option-control pdx-checkbox-select-all"
4922
4919
  [checked]="isAllSelected()"
4923
4920
  [color]="metadata()?.color"
4924
- [ariaLabel]="selectAllAriaLabel()"
4921
+ [aria-label]="selectAllAriaLabel()"
4925
4922
  [attr.aria-labelledby]="selectAllLabelId()"
4926
4923
  (change)="toggleSelectAll()"
4927
4924
  (click)="$event.stopPropagation()"
@@ -4949,7 +4946,7 @@ class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent {
4949
4946
  [disabled]="isOptionDisabled(option)"
4950
4947
  [color]="metadata()?.color"
4951
4948
  [required]="isRequiredCheckbox()"
4952
- [ariaLabel]="optionAriaLabel(option)"
4949
+ [aria-label]="optionAriaLabel(option)"
4953
4950
  [attr.aria-required]="isRequiredCheckbox() ? 'true' : null"
4954
4951
  [attr.aria-labelledby]="optionLabelId(option)"
4955
4952
  [attr.aria-describedby]="optionDescriptionId(option)"
@@ -5003,7 +5000,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.17", ngImpo
5003
5000
  [color]="metadata()?.color"
5004
5001
  [indeterminate]="metadata()?.indeterminate"
5005
5002
  [required]="isRequiredCheckbox()"
5006
- [ariaLabel]="booleanAriaLabel()"
5003
+ [aria-label]="booleanAriaLabel()"
5007
5004
  [attr.aria-required]="isRequiredCheckbox() ? 'true' : null"
5008
5005
  [attr.aria-labelledby]="booleanLabelledBy()"
5009
5006
  [attr.aria-describedby]="booleanDescribedBy()"
@@ -5056,7 +5053,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.17", ngImpo
5056
5053
  class="pdx-checkbox-option-control pdx-checkbox-select-all"
5057
5054
  [checked]="isAllSelected()"
5058
5055
  [color]="metadata()?.color"
5059
- [ariaLabel]="selectAllAriaLabel()"
5056
+ [aria-label]="selectAllAriaLabel()"
5060
5057
  [attr.aria-labelledby]="selectAllLabelId()"
5061
5058
  (change)="toggleSelectAll()"
5062
5059
  (click)="$event.stopPropagation()"
@@ -5084,7 +5081,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.17", ngImpo
5084
5081
  [disabled]="isOptionDisabled(option)"
5085
5082
  [color]="metadata()?.color"
5086
5083
  [required]="isRequiredCheckbox()"
5087
- [ariaLabel]="optionAriaLabel(option)"
5084
+ [aria-label]="optionAriaLabel(option)"
5088
5085
  [attr.aria-required]="isRequiredCheckbox() ? 'true' : null"
5089
5086
  [attr.aria-labelledby]="optionLabelId(option)"
5090
5087
  [attr.aria-describedby]="optionDescriptionId(option)"
@@ -6545,8 +6542,8 @@ class ComponentRegistryService {
6545
6542
  this.register(INLINE_SELECT_CONTROL_TYPE, lazyComponent(() => import('./praxisui-dynamic-fields-index-ByxZ2zjO.mjs'), 'InlineSelectComponent'));
6546
6543
  this.register(INLINE_SEARCHABLE_SELECT_CONTROL_TYPE, lazyComponent(() => import('./praxisui-dynamic-fields-index-BrxXd7br.mjs'), 'InlineSearchableSelectComponent'));
6547
6544
  this.register(INLINE_ASYNC_SELECT_CONTROL_TYPE, lazyComponent(() => import('./praxisui-dynamic-fields-index-DWYQVXB2.mjs'), 'InlineAsyncSelectComponent'));
6548
- this.register(INLINE_ENTITY_LOOKUP_CONTROL_TYPE, lazyComponent(() => import('./praxisui-dynamic-fields-index-XvVS6lAQ.mjs'), 'InlineEntityLookupComponent'));
6549
- this.register(FieldControlType.ENTITY_LOOKUP, lazyComponent(() => import('./praxisui-dynamic-fields-index-XvVS6lAQ.mjs'), 'InlineEntityLookupComponent'));
6545
+ this.register(INLINE_ENTITY_LOOKUP_CONTROL_TYPE, lazyComponent(() => import('./praxisui-dynamic-fields-index-CIk5K3rF.mjs'), 'InlineEntityLookupComponent'));
6546
+ this.register(FieldControlType.ENTITY_LOOKUP, lazyComponent(() => import('./praxisui-dynamic-fields-index-CIk5K3rF.mjs'), 'InlineEntityLookupComponent'));
6550
6547
  this.register(INLINE_AUTOCOMPLETE_CONTROL_TYPE, lazyComponent(() => import('./praxisui-dynamic-fields-index-RfosTXa6.mjs'), 'InlineAutocompleteComponent'));
6551
6548
  this.register(INLINE_NUMBER_CONTROL_TYPE, lazyComponent(() => import('./praxisui-dynamic-fields-index-D_JTu38N.mjs'), 'InlineNumberComponent'));
6552
6549
  this.register(INLINE_CURRENCY_CONTROL_TYPE, lazyComponent(() => import('./praxisui-dynamic-fields-index-CR5-JQ4D.mjs'), 'InlineCurrencyComponent'));
@@ -47828,43 +47825,8 @@ const PDX_INLINE_ASYNC_SELECT_COMPONENT_METADATA = {
47828
47825
  lib: '@praxisui/dynamic-fields',
47829
47826
  };
47830
47827
 
47831
- const PDX_INLINE_ENTITY_LOOKUP_COMPONENT_METADATA = {
47832
- id: 'pdx-inline-entity-lookup',
47833
- selector: 'pdx-inline-entity-lookup',
47834
- component: InlineEntityLookupComponent,
47835
- friendlyName: 'Inline Entity Lookup',
47836
- description: 'Lookup corporativo compacto para barra de filtro, com exibicao id + descricao, busca e reset rapido.',
47837
- icon: 'manage_search',
47838
- inputs: [
47839
- { name: 'metadata', type: 'MaterialSelectMetadata', description: 'Configuracao do campo' },
47840
- {
47841
- name: 'readonlyMode',
47842
- type: 'boolean',
47843
- default: false,
47844
- description: 'Define modo somente leitura',
47845
- },
47846
- {
47847
- name: 'disabledMode',
47848
- type: 'boolean',
47849
- default: false,
47850
- description: 'Desabilita o campo',
47851
- },
47852
- {
47853
- name: 'visible',
47854
- type: 'boolean',
47855
- default: true,
47856
- description: 'Controla a visibilidade',
47857
- },
47858
- {
47859
- name: 'presentationMode',
47860
- type: 'boolean',
47861
- default: false,
47862
- description: 'Modo de apresentacao',
47863
- },
47864
- ],
47865
- tags: ['widget', 'field', 'entity-lookup', 'filter', 'inline'],
47866
- lib: '@praxisui/dynamic-fields',
47867
- };
47828
+ const PDX_ENTITY_LOOKUP_COMPONENT_METADATA = createEntityLookupComponentMetadata();
47829
+ const PDX_INLINE_ENTITY_LOOKUP_COMPONENT_METADATA = PDX_ENTITY_LOOKUP_COMPONENT_METADATA;
47868
47830
 
47869
47831
  const PDX_INLINE_MULTI_SELECT_COMPONENT_METADATA = {
47870
47832
  id: 'pdx-inline-multi-select',
@@ -52681,7 +52643,7 @@ function fieldMetadataProfile(params) {
52681
52643
  title: params.operationTitle,
52682
52644
  scope: 'fieldMetadataPath',
52683
52645
  targetKind: 'fieldMetadataPath',
52684
- target: { kind: 'fieldMetadataPath', resolver: 'field-metadata-json-path', required: true },
52646
+ target: { kind: 'fieldMetadataPath', resolver: 'field-metadata-json-path', ambiguityPolicy: 'fail', required: true },
52685
52647
  inputSchema: {
52686
52648
  type: 'object',
52687
52649
  minProperties: 1,
@@ -52694,7 +52656,9 @@ function fieldMetadataProfile(params) {
52694
52656
  'editor-tooling-discovers-control',
52695
52657
  ],
52696
52658
  affectedPaths: params.affectedPaths,
52697
- submissionImpact: params.submissionImpact ?? true,
52659
+ submissionImpact: params.submissionImpact ?? 'affects-schema-backed-data',
52660
+ destructive: false,
52661
+ requiresConfirmation: false,
52698
52662
  preconditions: ['field-metadata-initialized'],
52699
52663
  },
52700
52664
  ],
@@ -52771,7 +52735,7 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_PROFILES = [
52771
52735
  profileId: 'entity-lookup',
52772
52736
  title: 'Entity lookup controls',
52773
52737
  description: 'Profile for entity lookup controls that bind to remote resources.',
52774
- componentIds: ['pdx-inline-entity-lookup'],
52738
+ componentIds: ['pdx-entity-lookup', 'pdx-inline-entity-lookup'],
52775
52739
  targetDescription: 'Entity lookup metadata paths such as resourcePath, value/display fields and search behavior.',
52776
52740
  operationId: 'field.entityLookup.configure',
52777
52741
  operationTitle: 'Configure entity lookup field metadata',
@@ -52955,7 +52919,7 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_PROFILES = [
52955
52919
  validators: [{ validatorId: 'avatar-presentation-valid', level: 'error', code: 'PDFP023', description: 'Avatar controls must keep display metadata separate from submitted domain value semantics.' }],
52956
52920
  operationValidators: ['avatar-presentation-valid'],
52957
52921
  affectedPaths: ['fieldMetadata.imageUrlField', 'fieldMetadata.initialsField', 'fieldMetadata.fallbackIcon', 'fieldMetadata.size', 'fieldMetadata.altText'],
52958
- submissionImpact: false,
52922
+ submissionImpact: 'visual-only',
52959
52923
  example: { id: 'configure-avatar-fields', request: 'Use profileImageUrl as the avatar image and name as the initials fallback.', operationId: 'field.avatar.configure', params: { imageUrlField: 'profileImageUrl', initialsField: 'name', fallbackIcon: 'person' }, isPositive: true },
52960
52924
  }),
52961
52925
  fieldMetadataProfile({
@@ -52970,7 +52934,7 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_PROFILES = [
52970
52934
  validators: [{ validatorId: 'display-action-contract-valid', level: 'error', code: 'PDFP018', description: 'Display/action controls must not silently mutate submitted domain data unless an explicit action contract exists.' }],
52971
52935
  operationValidators: ['display-action-contract-valid'],
52972
52936
  affectedPaths: ['fieldMetadata.label', 'fieldMetadata.icon', 'fieldMetadata.actionId', 'fieldMetadata.presentationOnly', 'fieldMetadata.loadingStatePath'],
52973
- submissionImpact: false,
52937
+ submissionImpact: 'config-only',
52974
52938
  example: { id: 'configure-action-button', request: 'Configure a button field to trigger the refresh action.', operationId: 'field.displayAction.configure', params: { label: 'Refresh', icon: 'refresh', actionId: 'refresh' }, isPositive: true },
52975
52939
  }),
52976
52940
  fieldMetadataProfile({
@@ -52985,7 +52949,7 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_PROFILES = [
52985
52949
  validators: [{ validatorId: 'field-shell-child-valid', level: 'error', code: 'PDFP019', description: 'Field shell controls must delegate child semantics to the child control profile instead of redefining them.' }],
52986
52950
  operationValidators: ['field-shell-child-valid'],
52987
52951
  affectedPaths: ['fieldMetadata.label', 'fieldMetadata.hint', 'fieldMetadata.errorMode', 'fieldMetadata.childControlType'],
52988
- submissionImpact: false,
52952
+ submissionImpact: 'config-only',
52989
52953
  example: { id: 'configure-field-shell-label', request: 'Set shell label and delegate rendering to inline select.', operationId: 'field.shell.configure', params: { label: 'Status', childControlType: 'inlineSelect' }, isPositive: true },
52990
52954
  }),
52991
52955
  ];
@@ -53017,7 +52981,7 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53017
52981
  title: 'Register control type runtime support',
53018
52982
  scope: 'controlType',
53019
52983
  targetKind: 'controlType',
53020
- target: { kind: 'controlType', resolver: 'field-control-type-token', required: false },
52984
+ target: { kind: 'controlType', resolver: 'field-control-type-token', ambiguityPolicy: 'fail', required: false },
53021
52985
  inputSchema: {
53022
52986
  type: 'object',
53023
52987
  required: ['controlType', 'selector', 'componentExport'],
@@ -53053,7 +53017,9 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53053
53017
  }],
53054
53018
  validators: ['control-type-unique', 'runtime-component-resolves', 'field-metadata-compatible'],
53055
53019
  affectedPaths: ['componentRegistry', 'fieldMetadata.controlType'],
53056
- submissionImpact: false,
53020
+ submissionImpact: 'config-only',
53021
+ destructive: false,
53022
+ requiresConfirmation: false,
53057
53023
  preconditions: ['registry-initialized'],
53058
53024
  },
53059
53025
  {
@@ -53061,7 +53027,7 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53061
53027
  title: 'Add control type alias',
53062
53028
  scope: 'controlAlias',
53063
53029
  targetKind: 'controlAlias',
53064
- target: { kind: 'controlAlias', resolver: 'normalized-control-type-alias', required: false },
53030
+ target: { kind: 'controlAlias', resolver: 'normalized-control-type-alias', ambiguityPolicy: 'fail', required: false },
53065
53031
  inputSchema: {
53066
53032
  type: 'object',
53067
53033
  required: ['alias', 'controlType'],
@@ -53093,7 +53059,9 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53093
53059
  }],
53094
53060
  validators: ['alias-resolves-deterministically', 'runtime-component-resolves', 'editor-tooling-discovers-control'],
53095
53061
  affectedPaths: ['controlTypeAliases', 'fieldMetadata.controlType'],
53096
- submissionImpact: false,
53062
+ submissionImpact: 'config-only',
53063
+ destructive: false,
53064
+ requiresConfirmation: false,
53097
53065
  preconditions: ['registry-initialized'],
53098
53066
  },
53099
53067
  {
@@ -53101,7 +53069,7 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53101
53069
  title: 'Remove control type alias',
53102
53070
  scope: 'controlAlias',
53103
53071
  targetKind: 'controlAlias',
53104
- target: { kind: 'controlAlias', resolver: 'normalized-control-type-alias', required: true },
53072
+ target: { kind: 'controlAlias', resolver: 'normalized-control-type-alias', ambiguityPolicy: 'fail', required: true },
53105
53073
  inputSchema: {
53106
53074
  type: 'object',
53107
53075
  required: ['alias'],
@@ -53133,7 +53101,7 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53133
53101
  requiresConfirmation: true,
53134
53102
  validators: ['alias-exists', 'alias-removal-safe', 'destructive-removal-confirmation'],
53135
53103
  affectedPaths: ['controlTypeAliases'],
53136
- submissionImpact: false,
53104
+ submissionImpact: 'config-only',
53137
53105
  preconditions: ['registry-initialized', 'target-exists'],
53138
53106
  },
53139
53107
  {
@@ -53141,7 +53109,7 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53141
53109
  title: 'Update editorial descriptor',
53142
53110
  scope: 'editorialDescriptor',
53143
53111
  targetKind: 'editorialDescriptor',
53144
- target: { kind: 'editorialDescriptor', resolver: 'component-metadata-editorial-descriptor', required: true },
53112
+ target: { kind: 'editorialDescriptor', resolver: 'component-metadata-editorial-descriptor', ambiguityPolicy: 'fail', required: true },
53145
53113
  inputSchema: {
53146
53114
  type: 'object',
53147
53115
  minProperties: 1,
@@ -53158,7 +53126,53 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53158
53126
  effects: [{ kind: 'merge-by-key', path: 'editorialDescriptors[]', key: 'controlType' }],
53159
53127
  validators: ['descriptor-exists', 'editorial-source-canonical', 'editor-tooling-discovers-control'],
53160
53128
  affectedPaths: ['editorialDescriptors[]', 'componentMetadata[]'],
53161
- submissionImpact: false,
53129
+ submissionImpact: 'config-only',
53130
+ destructive: false,
53131
+ requiresConfirmation: false,
53132
+ preconditions: ['registry-initialized', 'target-exists'],
53133
+ },
53134
+ {
53135
+ operationId: 'selector.mapping.set',
53136
+ title: 'Set selector mapping',
53137
+ scope: 'selectorMapping',
53138
+ targetKind: 'selectorMapping',
53139
+ target: { kind: 'selectorMapping', resolver: 'field-selector-registry-entry', ambiguityPolicy: 'fail', required: true },
53140
+ inputSchema: {
53141
+ type: 'object',
53142
+ required: ['selector', 'controlType'],
53143
+ properties: {
53144
+ selector: { type: 'string' },
53145
+ controlType: { type: 'string' },
53146
+ overwrite: { type: 'boolean' },
53147
+ source: { enum: ['package-default', 'host-extension'] },
53148
+ },
53149
+ },
53150
+ effects: [{
53151
+ kind: 'compile-domain-patch',
53152
+ handler: 'dynamic-fields-selector-mapping-set',
53153
+ handlerContract: {
53154
+ reads: ['FieldSelectorRegistry', 'DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP', 'componentRegistry'],
53155
+ writes: ['FieldSelectorRegistry'],
53156
+ identityKeys: ['selector', 'controlType'],
53157
+ inputSchema: {
53158
+ type: 'object',
53159
+ required: ['selector', 'controlType'],
53160
+ properties: {
53161
+ selector: { type: 'string' },
53162
+ controlType: { type: 'string' },
53163
+ overwrite: { type: 'boolean' },
53164
+ source: { enum: ['package-default', 'host-extension'] },
53165
+ },
53166
+ },
53167
+ failureModes: ['selector-already-mapped', 'control-type-unresolvable', 'selector-mapping-would-shadow-package-default'],
53168
+ description: 'Maps a selector to a deterministic controlType through FieldSelectorRegistry without using host-only selector conventions.',
53169
+ },
53170
+ }],
53171
+ validators: ['selector-mapping-deterministic', 'runtime-component-resolves', 'editor-tooling-discovers-control'],
53172
+ affectedPaths: ['selectorMappings[]', 'fieldMetadata.controlType'],
53173
+ submissionImpact: 'config-only',
53174
+ destructive: false,
53175
+ requiresConfirmation: false,
53162
53176
  preconditions: ['registry-initialized', 'target-exists'],
53163
53177
  },
53164
53178
  {
@@ -53166,7 +53180,7 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53166
53180
  title: 'Set metadata path mapping',
53167
53181
  scope: 'fieldMetadataPath',
53168
53182
  targetKind: 'fieldMetadataPath',
53169
- target: { kind: 'fieldMetadataPath', resolver: 'field-metadata-json-path', required: true },
53183
+ target: { kind: 'fieldMetadataPath', resolver: 'field-metadata-json-path', ambiguityPolicy: 'fail', required: true },
53170
53184
  inputSchema: {
53171
53185
  type: 'object',
53172
53186
  required: ['path', 'valueKind'],
@@ -53181,7 +53195,9 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53181
53195
  effects: [{ kind: 'merge-by-key', path: 'fieldMetadataCapabilities[]', key: 'path' }],
53182
53196
  validators: ['field-metadata-compatible', 'metadata-capability-aligned', 'editor-tooling-discovers-control'],
53183
53197
  affectedPaths: ['fieldMetadataCapabilities[]'],
53184
- submissionImpact: false,
53198
+ submissionImpact: 'config-only',
53199
+ destructive: false,
53200
+ requiresConfirmation: false,
53185
53201
  preconditions: ['registry-initialized', 'target-exists'],
53186
53202
  },
53187
53203
  {
@@ -53189,7 +53205,7 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53189
53205
  title: 'Validate editor coverage',
53190
53206
  scope: 'editorCoverage',
53191
53207
  targetKind: 'editorCoverage',
53192
- target: { kind: 'editorCoverage', resolver: 'metadata-editor-tooling-coverage', required: true },
53208
+ target: { kind: 'editorCoverage', resolver: 'metadata-editor-tooling-coverage', ambiguityPolicy: 'fail', required: true },
53193
53209
  inputSchema: {
53194
53210
  type: 'object',
53195
53211
  required: ['controlType'],
@@ -53225,7 +53241,9 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53225
53241
  }],
53226
53242
  validators: ['editor-tooling-discovers-control', 'runtime-editor-coverage-not-divergent', 'coverage-evidence-present'],
53227
53243
  affectedPaths: ['editorCoverage', 'componentMetadata[]', 'editorialDescriptors[]'],
53228
- submissionImpact: false,
53244
+ submissionImpact: 'config-only',
53245
+ destructive: false,
53246
+ requiresConfirmation: false,
53229
53247
  preconditions: ['registry-initialized', 'target-exists'],
53230
53248
  },
53231
53249
  {
@@ -53233,7 +53251,7 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53233
53251
  title: 'Validate runtime coverage',
53234
53252
  scope: 'runtimeCoverage',
53235
53253
  targetKind: 'runtimeCoverage',
53236
- target: { kind: 'runtimeCoverage', resolver: 'component-registry-coverage', required: true },
53254
+ target: { kind: 'runtimeCoverage', resolver: 'component-registry-coverage', ambiguityPolicy: 'fail', required: true },
53237
53255
  inputSchema: {
53238
53256
  type: 'object',
53239
53257
  required: ['controlType'],
@@ -53269,7 +53287,9 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53269
53287
  }],
53270
53288
  validators: ['runtime-component-resolves', 'runtime-editor-coverage-not-divergent', 'coverage-evidence-present'],
53271
53289
  affectedPaths: ['runtimeCoverage', 'componentRegistry'],
53272
- submissionImpact: false,
53290
+ submissionImpact: 'config-only',
53291
+ destructive: false,
53292
+ requiresConfirmation: false,
53273
53293
  preconditions: ['registry-initialized', 'target-exists'],
53274
53294
  },
53275
53295
  ],
@@ -53287,6 +53307,7 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53287
53307
  { validatorId: 'metadata-capability-aligned', level: 'error', code: 'PDF011', description: 'Metadata mappings must align with FIELD_METADATA_CAPABILITIES and control-family capabilities.' },
53288
53308
  { validatorId: 'runtime-editor-coverage-not-divergent', level: 'error', code: 'PDF012', description: 'Runtime support and editor/tooling coverage must not diverge silently.' },
53289
53309
  { validatorId: 'coverage-evidence-present', level: 'error', code: 'PDF013', description: 'Coverage validation operations must include concrete evidence paths or spec names.' },
53310
+ { validatorId: 'selector-mapping-deterministic', level: 'error', code: 'PDF014', description: 'Selector mappings must resolve to one controlType through FieldSelectorRegistry and must not shadow package defaults implicitly.' },
53290
53311
  ],
53291
53312
  roundTripRequirements: [
53292
53313
  'Runtime support, editorial descriptor, ComponentDocMeta and playground/catalog projection must remain aligned for package-owned fields.',
@@ -53324,6 +53345,14 @@ const PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST = {
53324
53345
  params: { friendlyName: 'My Control', icon: 'widgets', i18nNamespace: 'dynamicFields' },
53325
53346
  isPositive: true,
53326
53347
  },
53348
+ {
53349
+ id: 'set-selector-mapping',
53350
+ request: 'Map pdx-my-control to myControl in the selector registry.',
53351
+ operationId: 'selector.mapping.set',
53352
+ target: 'pdx-my-control',
53353
+ params: { selector: 'pdx-my-control', controlType: 'myControl', source: 'package-default' },
53354
+ isPositive: true,
53355
+ },
53327
53356
  {
53328
53357
  id: 'set-field-metadata-mapping',
53329
53358
  request: 'Publish a metadata capability path for option source mapping.',
@@ -53861,4 +53890,4 @@ function supportsClearButtonControlType(controlType) {
53861
53890
  * Generated bundle index. Do not edit.
53862
53891
  */
53863
53892
 
53864
- export { BRAZIL_INPUTS_AI_CAPABILITIES, CACHE_TTL, CHIPS_CONTROLS_AI_CAPABILITIES, CLEAR_BUTTON_CONTROL_TYPES, COLOR_CONTROLS_AI_CAPABILITIES, CONTROL_TYPE_AI_CATALOGS, ColorInputComponent, ComponentPreloaderService, ComponentRegistryService, ConfirmDialogComponent, DATE_CONTROLS_AI_CAPABILITIES, DISPLAY_ACTION_AI_CAPABILITIES, DYNAMIC_FIELDS_PLAYGROUND_CATALOG, DYNAMIC_FIELD_BASE_STATE_RECIPES, DYNAMIC_FIELD_DEFAULT_STATE_RECIPE, DYNAMIC_FIELD_DISABLED_STATE_RECIPE, DYNAMIC_FIELD_ERROR_STATE_RECIPE, DYNAMIC_FIELD_FILLED_STATE_RECIPE, DYNAMIC_FIELD_PRESENTATION_STATE_RECIPE, DYNAMIC_FIELD_READONLY_STATE_RECIPE, DateInputComponent, DateUtilsService, DatetimeLocalInputComponent, DynamicFieldLoaderDirective, EditableCollectionComponent, EmailInputComponent, FILE_UPLOAD_AI_CAPABILITIES, InlineAsyncSelectComponent, InlineAutocompleteComponent, InlineColorLabelComponent, InlineCurrencyComponent, InlineCurrencyRangeComponent, InlineDateComponent, InlineDateRangeComponent, InlineDistanceRadiusComponent, InlineEntityLookupComponent, InlineInputComponent, InlineMonthRangeComponent, InlineMultiSelectComponent, InlineNumberComponent, InlinePeriodRangeComponent, InlinePipelineStatusComponent, InlineRangeSliderComponent, InlineRatingComponent, InlineRelativePeriodComponent, InlineScorePriorityComponent, InlineSearchableSelectComponent, InlineSelectComponent, InlineSentimentComponent, InlineTimeComponent, InlineTimeRangeComponent, InlineToggleComponent, InlineTreeSelectComponent, InlineYearRangeComponent, KeyboardShortcutService, LIST_CONTROLS_AI_CAPABILITIES, LoggerPresets, MAX_LOAD_ATTEMPTS, MaterialAsyncSelectComponent, MaterialAutocompleteComponent, MaterialAvatarComponent, MaterialButtonComponent, MaterialButtonToggleComponent, MaterialCheckboxGroupComponent, MaterialChipsComponent, MaterialColorPickerComponent, MaterialCpfCnpjInputComponent, MaterialCurrencyComponent, MaterialDateRangeComponent, MaterialDatepickerComponent, MaterialFileUploadComponent, MaterialMultiSelectComponent, MaterialMultiSelectTreeComponent, MaterialPriceRangeComponent, MaterialRadioGroupComponent, MaterialRatingComponent, MaterialSearchableSelectComponent, MaterialSelectComponent, MaterialSelectionListComponent, MaterialSlideToggleComponent, MaterialSliderComponent, MaterialTextareaComponent, MaterialTimepickerComponent, MaterialTransferListComponent, MaterialTreeSelectComponent, MonthInputComponent, NUMERIC_INPUTS_AI_CAPABILITIES, NumberInputComponent, OptionStore, PDX_COLOR_INPUT_COMPONENT_METADATA, PDX_COLOR_PICKER_COMPONENT_METADATA, PDX_DATETIME_LOCAL_INPUT_COMPONENT_METADATA, PDX_DATE_INPUT_COMPONENT_METADATA, PDX_EDITABLE_COLLECTION_COMPONENT_METADATA, PDX_EMAIL_INPUT_COMPONENT_METADATA, PDX_FIELD_SHELL_COMPONENT_METADATA, PDX_INLINE_ASYNC_SELECT_COMPONENT_METADATA, PDX_INLINE_AUTOCOMPLETE_COMPONENT_METADATA, PDX_INLINE_COLOR_LABEL_COMPONENT_METADATA, PDX_INLINE_CURRENCY_COMPONENT_METADATA, PDX_INLINE_CURRENCY_RANGE_COMPONENT_METADATA, PDX_INLINE_DATE_COMPONENT_METADATA, PDX_INLINE_DATE_RANGE_COMPONENT_METADATA, PDX_INLINE_DISTANCE_RADIUS_COMPONENT_METADATA, PDX_INLINE_ENTITY_LOOKUP_COMPONENT_METADATA, PDX_INLINE_INPUT_COMPONENT_METADATA, PDX_INLINE_MONTH_RANGE_COMPONENT_METADATA, PDX_INLINE_MULTI_SELECT_COMPONENT_METADATA, PDX_INLINE_NUMBER_COMPONENT_METADATA, PDX_INLINE_PERIOD_RANGE_COMPONENT_METADATA, PDX_INLINE_PIPELINE_STATUS_COMPONENT_METADATA, PDX_INLINE_RANGE_SLIDER_COMPONENT_METADATA, PDX_INLINE_RATING_COMPONENT_METADATA, PDX_INLINE_RELATIVE_PERIOD_COMPONENT_METADATA, PDX_INLINE_SCORE_PRIORITY_COMPONENT_METADATA, PDX_INLINE_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_INLINE_SELECT_COMPONENT_METADATA, PDX_INLINE_SENTIMENT_COMPONENT_METADATA, PDX_INLINE_TIME_COMPONENT_METADATA, PDX_INLINE_TIME_RANGE_COMPONENT_METADATA, PDX_INLINE_TOGGLE_COMPONENT_METADATA, PDX_INLINE_TREE_SELECT_COMPONENT_METADATA, PDX_INLINE_YEAR_RANGE_COMPONENT_METADATA, PDX_MATERIAL_AVATAR_COMPONENT_METADATA, PDX_MATERIAL_BUTTON_COMPONENT_METADATA, PDX_MATERIAL_BUTTON_TOGGLE_COMPONENT_METADATA, PDX_MATERIAL_CHECKBOX_GROUP_COMPONENT_METADATA, PDX_MATERIAL_CHIPS_COMPONENT_METADATA, PDX_MATERIAL_COLORPICKER_COMPONENT_METADATA, PDX_MATERIAL_CPF_CNPJ_INPUT_COMPONENT_METADATA, PDX_MATERIAL_CURRENCY_COMPONENT_METADATA, PDX_MATERIAL_DATEPICKER_COMPONENT_METADATA, PDX_MATERIAL_DATE_RANGE_COMPONENT_METADATA, PDX_MATERIAL_FILE_UPLOAD_COMPONENT_METADATA, PDX_MATERIAL_MULTI_SELECT_COMPONENT_METADATA, PDX_MATERIAL_MULTI_SELECT_TREE_COMPONENT_METADATA, PDX_MATERIAL_PRICE_RANGE_COMPONENT_METADATA, PDX_MATERIAL_RADIO_GROUP_COMPONENT_METADATA, PDX_MATERIAL_RANGE_SLIDER_COMPONENT_METADATA, PDX_MATERIAL_RATING_COMPONENT_METADATA, PDX_MATERIAL_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_MATERIAL_SELECTION_LIST_COMPONENT_METADATA, PDX_MATERIAL_SELECT_COMPONENT_METADATA, PDX_MATERIAL_SLIDER_COMPONENT_METADATA, PDX_MATERIAL_TEXTAREA_COMPONENT_METADATA, PDX_MATERIAL_TIMEPICKER_COMPONENT_METADATA, PDX_MATERIAL_TIME_RANGE_COMPONENT_METADATA, PDX_MATERIAL_TRANSFER_LIST_COMPONENT_METADATA, PDX_MATERIAL_TREE_SELECT_COMPONENT_METADATA, PDX_MONTH_INPUT_COMPONENT_METADATA, PDX_NUMBER_INPUT_COMPONENT_METADATA, PDX_PASSWORD_INPUT_COMPONENT_METADATA, PDX_PHONE_INPUT_COMPONENT_METADATA, PDX_PRELOAD_STATUS_COMPONENT_METADATA, PDX_SEARCH_INPUT_COMPONENT_METADATA, PDX_TEXT_INPUT_COMPONENT_METADATA, PDX_TIME_INPUT_COMPONENT_METADATA, PDX_URL_INPUT_COMPONENT_METADATA, PDX_WEEK_INPUT_COMPONENT_METADATA, PDX_YEAR_INPUT_COMPONENT_METADATA, PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST, PRAXIS_DYNAMIC_FIELDS_AUTHORING_PROFILES, PRAXIS_DYNAMIC_FIELDS_EDITORIAL_WAVE_1, PRAXIS_DYNAMIC_FIELDS_EN_US, PRAXIS_DYNAMIC_FIELDS_I18N, PRAXIS_DYNAMIC_FIELDS_LOGGER_BACKEND, PRAXIS_DYNAMIC_FIELDS_PT_BR, PRAXIS_DYNAMIC_FIELDS_WAVE_1_COMPONENT_METADATA, PRICE_RANGE_AI_CAPABILITIES, PasswordInputComponent, PdxColorPickerComponent, PdxMaterialRangeSliderComponent, PdxMaterialTimeRangeComponent, PdxYearInputComponent, PhoneInputComponent, PraxisErrorStateMatcher, PreloadStatusComponent, RETRY_DELAY, SELECT_CONTROLS_AI_CAPABILITIES, SearchInputComponent, SimpleBaseButtonComponent, SimpleBaseInputComponent, SimpleBaseSelectComponent, TEXT_INPUTS_AI_CAPABILITIES, TIME_RANGE_AI_CAPABILITIES, TOGGLE_CONTROLS_AI_CAPABILITIES, TREE_CONTROLS_AI_CAPABILITIES, TextInputComponent, TimeInputComponent, UrlInputComponent, WeekInputComponent, YEAR_INPUT_AI_CAPABILITIES, bindDynamicFieldsLoggerBackendFromInjector, clearDynamicFieldsLoggerBackend, configureDynamicFieldsLogger, createDynamicFieldPreviewRecipe, createErrorStateMatcher, createPraxisDynamicFieldsI18nConfig, emitToDynamicFieldsLoggerBackend, enableDebugForComponent, getControlTypeCatalog, getErrorStateMatcherForField, inferErrorStateStrategy, initializeComponentSystem, initializeComponentSystemSync, isBaseDynamicFieldComponent, isLoadingCapableComponent, isValidJsonSchema, isValueBasedComponent, logger, mapJsonSchemaToFields, mapPropertyToFieldMetadata, normalizeFormMetadata, provideMaterialAvatarMetadata, providePraxisDynamicFields, providePraxisDynamicFieldsCore, providePraxisDynamicFieldsCoreNoDefaults, providePraxisDynamicFieldsI18n, providePraxisDynamicFieldsNoDefaults, providePraxisDynamicFieldsWave1EditorialRegistry, registerPraxisDynamicFieldsWave1EditorialDescriptors, resolvePraxisDynamicFieldsText, setDynamicFieldsLoggerBackend, silenceComponent, supportsClearButtonControlType };
53893
+ export { BRAZIL_INPUTS_AI_CAPABILITIES, CACHE_TTL, CHIPS_CONTROLS_AI_CAPABILITIES, CLEAR_BUTTON_CONTROL_TYPES, COLOR_CONTROLS_AI_CAPABILITIES, CONTROL_TYPE_AI_CATALOGS, ColorInputComponent, ComponentPreloaderService, ComponentRegistryService, ConfirmDialogComponent, DATE_CONTROLS_AI_CAPABILITIES, DISPLAY_ACTION_AI_CAPABILITIES, DYNAMIC_FIELDS_PLAYGROUND_CATALOG, DYNAMIC_FIELD_BASE_STATE_RECIPES, DYNAMIC_FIELD_DEFAULT_STATE_RECIPE, DYNAMIC_FIELD_DISABLED_STATE_RECIPE, DYNAMIC_FIELD_ERROR_STATE_RECIPE, DYNAMIC_FIELD_FILLED_STATE_RECIPE, DYNAMIC_FIELD_PRESENTATION_STATE_RECIPE, DYNAMIC_FIELD_READONLY_STATE_RECIPE, DateInputComponent, DateUtilsService, DatetimeLocalInputComponent, DynamicFieldLoaderDirective, EditableCollectionComponent, EmailInputComponent, FILE_UPLOAD_AI_CAPABILITIES, InlineAsyncSelectComponent, InlineAutocompleteComponent, InlineColorLabelComponent, InlineCurrencyComponent, InlineCurrencyRangeComponent, InlineDateComponent, InlineDateRangeComponent, InlineDistanceRadiusComponent, InlineEntityLookupComponent, InlineInputComponent, InlineMonthRangeComponent, InlineMultiSelectComponent, InlineNumberComponent, InlinePeriodRangeComponent, InlinePipelineStatusComponent, InlineRangeSliderComponent, InlineRatingComponent, InlineRelativePeriodComponent, InlineScorePriorityComponent, InlineSearchableSelectComponent, InlineSelectComponent, InlineSentimentComponent, InlineTimeComponent, InlineTimeRangeComponent, InlineToggleComponent, InlineTreeSelectComponent, InlineYearRangeComponent, KeyboardShortcutService, LIST_CONTROLS_AI_CAPABILITIES, LoggerPresets, MAX_LOAD_ATTEMPTS, MaterialAsyncSelectComponent, MaterialAutocompleteComponent, MaterialAvatarComponent, MaterialButtonComponent, MaterialButtonToggleComponent, MaterialCheckboxGroupComponent, MaterialChipsComponent, MaterialColorPickerComponent, MaterialCpfCnpjInputComponent, MaterialCurrencyComponent, MaterialDateRangeComponent, MaterialDatepickerComponent, MaterialFileUploadComponent, MaterialMultiSelectComponent, MaterialMultiSelectTreeComponent, MaterialPriceRangeComponent, MaterialRadioGroupComponent, MaterialRatingComponent, MaterialSearchableSelectComponent, MaterialSelectComponent, MaterialSelectionListComponent, MaterialSlideToggleComponent, MaterialSliderComponent, MaterialTextareaComponent, MaterialTimepickerComponent, MaterialTransferListComponent, MaterialTreeSelectComponent, MonthInputComponent, NUMERIC_INPUTS_AI_CAPABILITIES, NumberInputComponent, OptionStore, PDX_COLOR_INPUT_COMPONENT_METADATA, PDX_COLOR_PICKER_COMPONENT_METADATA, PDX_DATETIME_LOCAL_INPUT_COMPONENT_METADATA, PDX_DATE_INPUT_COMPONENT_METADATA, PDX_EDITABLE_COLLECTION_COMPONENT_METADATA, PDX_EMAIL_INPUT_COMPONENT_METADATA, PDX_ENTITY_LOOKUP_COMPONENT_METADATA, PDX_FIELD_SHELL_COMPONENT_METADATA, PDX_INLINE_ASYNC_SELECT_COMPONENT_METADATA, PDX_INLINE_AUTOCOMPLETE_COMPONENT_METADATA, PDX_INLINE_COLOR_LABEL_COMPONENT_METADATA, PDX_INLINE_CURRENCY_COMPONENT_METADATA, PDX_INLINE_CURRENCY_RANGE_COMPONENT_METADATA, PDX_INLINE_DATE_COMPONENT_METADATA, PDX_INLINE_DATE_RANGE_COMPONENT_METADATA, PDX_INLINE_DISTANCE_RADIUS_COMPONENT_METADATA, PDX_INLINE_ENTITY_LOOKUP_COMPONENT_METADATA, PDX_INLINE_INPUT_COMPONENT_METADATA, PDX_INLINE_MONTH_RANGE_COMPONENT_METADATA, PDX_INLINE_MULTI_SELECT_COMPONENT_METADATA, PDX_INLINE_NUMBER_COMPONENT_METADATA, PDX_INLINE_PERIOD_RANGE_COMPONENT_METADATA, PDX_INLINE_PIPELINE_STATUS_COMPONENT_METADATA, PDX_INLINE_RANGE_SLIDER_COMPONENT_METADATA, PDX_INLINE_RATING_COMPONENT_METADATA, PDX_INLINE_RELATIVE_PERIOD_COMPONENT_METADATA, PDX_INLINE_SCORE_PRIORITY_COMPONENT_METADATA, PDX_INLINE_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_INLINE_SELECT_COMPONENT_METADATA, PDX_INLINE_SENTIMENT_COMPONENT_METADATA, PDX_INLINE_TIME_COMPONENT_METADATA, PDX_INLINE_TIME_RANGE_COMPONENT_METADATA, PDX_INLINE_TOGGLE_COMPONENT_METADATA, PDX_INLINE_TREE_SELECT_COMPONENT_METADATA, PDX_INLINE_YEAR_RANGE_COMPONENT_METADATA, PDX_MATERIAL_AVATAR_COMPONENT_METADATA, PDX_MATERIAL_BUTTON_COMPONENT_METADATA, PDX_MATERIAL_BUTTON_TOGGLE_COMPONENT_METADATA, PDX_MATERIAL_CHECKBOX_GROUP_COMPONENT_METADATA, PDX_MATERIAL_CHIPS_COMPONENT_METADATA, PDX_MATERIAL_COLORPICKER_COMPONENT_METADATA, PDX_MATERIAL_CPF_CNPJ_INPUT_COMPONENT_METADATA, PDX_MATERIAL_CURRENCY_COMPONENT_METADATA, PDX_MATERIAL_DATEPICKER_COMPONENT_METADATA, PDX_MATERIAL_DATE_RANGE_COMPONENT_METADATA, PDX_MATERIAL_FILE_UPLOAD_COMPONENT_METADATA, PDX_MATERIAL_MULTI_SELECT_COMPONENT_METADATA, PDX_MATERIAL_MULTI_SELECT_TREE_COMPONENT_METADATA, PDX_MATERIAL_PRICE_RANGE_COMPONENT_METADATA, PDX_MATERIAL_RADIO_GROUP_COMPONENT_METADATA, PDX_MATERIAL_RANGE_SLIDER_COMPONENT_METADATA, PDX_MATERIAL_RATING_COMPONENT_METADATA, PDX_MATERIAL_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_MATERIAL_SELECTION_LIST_COMPONENT_METADATA, PDX_MATERIAL_SELECT_COMPONENT_METADATA, PDX_MATERIAL_SLIDER_COMPONENT_METADATA, PDX_MATERIAL_TEXTAREA_COMPONENT_METADATA, PDX_MATERIAL_TIMEPICKER_COMPONENT_METADATA, PDX_MATERIAL_TIME_RANGE_COMPONENT_METADATA, PDX_MATERIAL_TRANSFER_LIST_COMPONENT_METADATA, PDX_MATERIAL_TREE_SELECT_COMPONENT_METADATA, PDX_MONTH_INPUT_COMPONENT_METADATA, PDX_NUMBER_INPUT_COMPONENT_METADATA, PDX_PASSWORD_INPUT_COMPONENT_METADATA, PDX_PHONE_INPUT_COMPONENT_METADATA, PDX_PRELOAD_STATUS_COMPONENT_METADATA, PDX_SEARCH_INPUT_COMPONENT_METADATA, PDX_TEXT_INPUT_COMPONENT_METADATA, PDX_TIME_INPUT_COMPONENT_METADATA, PDX_URL_INPUT_COMPONENT_METADATA, PDX_WEEK_INPUT_COMPONENT_METADATA, PDX_YEAR_INPUT_COMPONENT_METADATA, PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST, PRAXIS_DYNAMIC_FIELDS_AUTHORING_PROFILES, PRAXIS_DYNAMIC_FIELDS_EDITORIAL_WAVE_1, PRAXIS_DYNAMIC_FIELDS_EN_US, PRAXIS_DYNAMIC_FIELDS_I18N, PRAXIS_DYNAMIC_FIELDS_LOGGER_BACKEND, PRAXIS_DYNAMIC_FIELDS_PT_BR, PRAXIS_DYNAMIC_FIELDS_WAVE_1_COMPONENT_METADATA, PRICE_RANGE_AI_CAPABILITIES, PasswordInputComponent, PdxColorPickerComponent, PdxMaterialRangeSliderComponent, PdxMaterialTimeRangeComponent, PdxYearInputComponent, PhoneInputComponent, PraxisErrorStateMatcher, PreloadStatusComponent, RETRY_DELAY, SELECT_CONTROLS_AI_CAPABILITIES, SearchInputComponent, SimpleBaseButtonComponent, SimpleBaseInputComponent, SimpleBaseSelectComponent, TEXT_INPUTS_AI_CAPABILITIES, TIME_RANGE_AI_CAPABILITIES, TOGGLE_CONTROLS_AI_CAPABILITIES, TREE_CONTROLS_AI_CAPABILITIES, TextInputComponent, TimeInputComponent, UrlInputComponent, WeekInputComponent, YEAR_INPUT_AI_CAPABILITIES, bindDynamicFieldsLoggerBackendFromInjector, clearDynamicFieldsLoggerBackend, configureDynamicFieldsLogger, createDynamicFieldPreviewRecipe, createErrorStateMatcher, createPraxisDynamicFieldsI18nConfig, emitToDynamicFieldsLoggerBackend, enableDebugForComponent, getControlTypeCatalog, getErrorStateMatcherForField, inferErrorStateStrategy, initializeComponentSystem, initializeComponentSystemSync, isBaseDynamicFieldComponent, isLoadingCapableComponent, isValidJsonSchema, isValueBasedComponent, logger, mapJsonSchemaToFields, mapPropertyToFieldMetadata, normalizeFormMetadata, provideMaterialAvatarMetadata, providePraxisDynamicFields, providePraxisDynamicFieldsCore, providePraxisDynamicFieldsCoreNoDefaults, providePraxisDynamicFieldsI18n, providePraxisDynamicFieldsNoDefaults, providePraxisDynamicFieldsWave1EditorialRegistry, registerPraxisDynamicFieldsWave1EditorialDescriptors, resolvePraxisDynamicFieldsText, setDynamicFieldsLoggerBackend, silenceComponent, supportsClearButtonControlType };
package/index.d.ts CHANGED
@@ -4944,7 +4944,7 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent {
4944
4944
  booleanErrorId(): string;
4945
4945
  groupHintId(): string;
4946
4946
  groupErrorId(): string;
4947
- booleanAriaLabel(): string | null;
4947
+ booleanAriaLabel(): string;
4948
4948
  booleanLabelledBy(): string | null;
4949
4949
  booleanDescribedBy(): string | null;
4950
4950
  groupDescribedBy(): string | null;
@@ -4966,10 +4966,10 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent {
4966
4966
  private humanizeName;
4967
4967
  optionLabelId(option: SelectOption<unknown>): string;
4968
4968
  optionDescriptionId(option: SelectOption<unknown>): string | null;
4969
- optionAriaLabel(option: SelectOption<unknown>): string | null;
4969
+ optionAriaLabel(option: SelectOption<unknown>): string;
4970
4970
  optionSupportingText(option: SelectOption<unknown>): string | null;
4971
4971
  selectAllLabelId(): string;
4972
- selectAllAriaLabel(): string | null;
4972
+ selectAllAriaLabel(): string;
4973
4973
  selectAllLabelText(): string;
4974
4974
  private optionDomToken;
4975
4975
  private optionsFromLegacy;
@@ -5628,6 +5628,7 @@ declare const PDX_INLINE_SEARCHABLE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
5628
5628
 
5629
5629
  declare const PDX_INLINE_ASYNC_SELECT_COMPONENT_METADATA: ComponentDocMeta;
5630
5630
 
5631
+ declare const PDX_ENTITY_LOOKUP_COMPONENT_METADATA: ComponentDocMeta;
5631
5632
  declare const PDX_INLINE_ENTITY_LOOKUP_COMPONENT_METADATA: ComponentDocMeta;
5632
5633
 
5633
5634
  declare const PDX_INLINE_MULTI_SELECT_COMPONENT_METADATA: ComponentDocMeta;
@@ -6428,5 +6429,5 @@ declare function normalizeFormMetadata(input: FieldMetadata[] | JsonSchema): Fie
6428
6429
  declare const CLEAR_BUTTON_CONTROL_TYPES: Set<string>;
6429
6430
  declare function supportsClearButtonControlType(controlType?: string | null): boolean;
6430
6431
 
6431
- export { BRAZIL_INPUTS_AI_CAPABILITIES, CACHE_TTL, CHIPS_CONTROLS_AI_CAPABILITIES, CLEAR_BUTTON_CONTROL_TYPES, COLOR_CONTROLS_AI_CAPABILITIES, CONTROL_TYPE_AI_CATALOGS, ColorInputComponent, ComponentPreloaderService, ComponentRegistryService, ConfirmDialogComponent, DATE_CONTROLS_AI_CAPABILITIES, DISPLAY_ACTION_AI_CAPABILITIES, DYNAMIC_FIELDS_PLAYGROUND_CATALOG, DYNAMIC_FIELD_BASE_STATE_RECIPES, DYNAMIC_FIELD_DEFAULT_STATE_RECIPE, DYNAMIC_FIELD_DISABLED_STATE_RECIPE, DYNAMIC_FIELD_ERROR_STATE_RECIPE, DYNAMIC_FIELD_FILLED_STATE_RECIPE, DYNAMIC_FIELD_PRESENTATION_STATE_RECIPE, DYNAMIC_FIELD_READONLY_STATE_RECIPE, DateInputComponent, DateUtilsService, DatetimeLocalInputComponent, DynamicFieldLoaderDirective, EditableCollectionComponent, EmailInputComponent, FILE_UPLOAD_AI_CAPABILITIES, InlineAsyncSelectComponent, InlineAutocompleteComponent, InlineColorLabelComponent, InlineCurrencyComponent, InlineCurrencyRangeComponent, InlineDateComponent, InlineDateRangeComponent, InlineDistanceRadiusComponent, InlineEntityLookupComponent, InlineInputComponent, InlineMonthRangeComponent, InlineMultiSelectComponent, InlineNumberComponent, InlinePeriodRangeComponent, InlinePipelineStatusComponent, InlineRangeSliderComponent, InlineRatingComponent, InlineRelativePeriodComponent, InlineScorePriorityComponent, InlineSearchableSelectComponent, InlineSelectComponent, InlineSentimentComponent, InlineTimeComponent, InlineTimeRangeComponent, InlineToggleComponent, InlineTreeSelectComponent, InlineYearRangeComponent, KeyboardShortcutService, LIST_CONTROLS_AI_CAPABILITIES, LoggerPresets, MAX_LOAD_ATTEMPTS, MaterialAsyncSelectComponent, MaterialAutocompleteComponent, MaterialAvatarComponent, MaterialButtonComponent, MaterialButtonToggleComponent, MaterialCheckboxGroupComponent, MaterialChipsComponent, MaterialColorPickerComponent, MaterialCpfCnpjInputComponent, MaterialCurrencyComponent, MaterialDateRangeComponent, MaterialDatepickerComponent, MaterialFileUploadComponent, MaterialMultiSelectComponent, MaterialMultiSelectTreeComponent, MaterialPriceRangeComponent, MaterialRadioGroupComponent, MaterialRatingComponent, MaterialSearchableSelectComponent, MaterialSelectComponent, MaterialSelectionListComponent, MaterialSlideToggleComponent, MaterialSliderComponent, MaterialTextareaComponent, MaterialTimepickerComponent, MaterialTransferListComponent, MaterialTreeSelectComponent, MonthInputComponent, NUMERIC_INPUTS_AI_CAPABILITIES, NumberInputComponent, OptionStore, PDX_COLOR_INPUT_COMPONENT_METADATA, PDX_COLOR_PICKER_COMPONENT_METADATA, PDX_DATETIME_LOCAL_INPUT_COMPONENT_METADATA, PDX_DATE_INPUT_COMPONENT_METADATA, PDX_EDITABLE_COLLECTION_COMPONENT_METADATA, PDX_EMAIL_INPUT_COMPONENT_METADATA, PDX_FIELD_SHELL_COMPONENT_METADATA, PDX_INLINE_ASYNC_SELECT_COMPONENT_METADATA, PDX_INLINE_AUTOCOMPLETE_COMPONENT_METADATA, PDX_INLINE_COLOR_LABEL_COMPONENT_METADATA, PDX_INLINE_CURRENCY_COMPONENT_METADATA, PDX_INLINE_CURRENCY_RANGE_COMPONENT_METADATA, PDX_INLINE_DATE_COMPONENT_METADATA, PDX_INLINE_DATE_RANGE_COMPONENT_METADATA, PDX_INLINE_DISTANCE_RADIUS_COMPONENT_METADATA, PDX_INLINE_ENTITY_LOOKUP_COMPONENT_METADATA, PDX_INLINE_INPUT_COMPONENT_METADATA, PDX_INLINE_MONTH_RANGE_COMPONENT_METADATA, PDX_INLINE_MULTI_SELECT_COMPONENT_METADATA, PDX_INLINE_NUMBER_COMPONENT_METADATA, PDX_INLINE_PERIOD_RANGE_COMPONENT_METADATA, PDX_INLINE_PIPELINE_STATUS_COMPONENT_METADATA, PDX_INLINE_RANGE_SLIDER_COMPONENT_METADATA, PDX_INLINE_RATING_COMPONENT_METADATA, PDX_INLINE_RELATIVE_PERIOD_COMPONENT_METADATA, PDX_INLINE_SCORE_PRIORITY_COMPONENT_METADATA, PDX_INLINE_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_INLINE_SELECT_COMPONENT_METADATA, PDX_INLINE_SENTIMENT_COMPONENT_METADATA, PDX_INLINE_TIME_COMPONENT_METADATA, PDX_INLINE_TIME_RANGE_COMPONENT_METADATA, PDX_INLINE_TOGGLE_COMPONENT_METADATA, PDX_INLINE_TREE_SELECT_COMPONENT_METADATA, PDX_INLINE_YEAR_RANGE_COMPONENT_METADATA, PDX_MATERIAL_AVATAR_COMPONENT_METADATA, PDX_MATERIAL_BUTTON_COMPONENT_METADATA, PDX_MATERIAL_BUTTON_TOGGLE_COMPONENT_METADATA, PDX_MATERIAL_CHECKBOX_GROUP_COMPONENT_METADATA, PDX_MATERIAL_CHIPS_COMPONENT_METADATA, PDX_MATERIAL_COLORPICKER_COMPONENT_METADATA, PDX_MATERIAL_CPF_CNPJ_INPUT_COMPONENT_METADATA, PDX_MATERIAL_CURRENCY_COMPONENT_METADATA, PDX_MATERIAL_DATEPICKER_COMPONENT_METADATA, PDX_MATERIAL_DATE_RANGE_COMPONENT_METADATA, PDX_MATERIAL_FILE_UPLOAD_COMPONENT_METADATA, PDX_MATERIAL_MULTI_SELECT_COMPONENT_METADATA, PDX_MATERIAL_MULTI_SELECT_TREE_COMPONENT_METADATA, PDX_MATERIAL_PRICE_RANGE_COMPONENT_METADATA, PDX_MATERIAL_RADIO_GROUP_COMPONENT_METADATA, PDX_MATERIAL_RANGE_SLIDER_COMPONENT_METADATA, PDX_MATERIAL_RATING_COMPONENT_METADATA, PDX_MATERIAL_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_MATERIAL_SELECTION_LIST_COMPONENT_METADATA, PDX_MATERIAL_SELECT_COMPONENT_METADATA, PDX_MATERIAL_SLIDER_COMPONENT_METADATA, PDX_MATERIAL_TEXTAREA_COMPONENT_METADATA, PDX_MATERIAL_TIMEPICKER_COMPONENT_METADATA, PDX_MATERIAL_TIME_RANGE_COMPONENT_METADATA, PDX_MATERIAL_TRANSFER_LIST_COMPONENT_METADATA, PDX_MATERIAL_TREE_SELECT_COMPONENT_METADATA, PDX_MONTH_INPUT_COMPONENT_METADATA, PDX_NUMBER_INPUT_COMPONENT_METADATA, PDX_PASSWORD_INPUT_COMPONENT_METADATA, PDX_PHONE_INPUT_COMPONENT_METADATA, PDX_PRELOAD_STATUS_COMPONENT_METADATA, PDX_SEARCH_INPUT_COMPONENT_METADATA, PDX_TEXT_INPUT_COMPONENT_METADATA, PDX_TIME_INPUT_COMPONENT_METADATA, PDX_URL_INPUT_COMPONENT_METADATA, PDX_WEEK_INPUT_COMPONENT_METADATA, PDX_YEAR_INPUT_COMPONENT_METADATA, PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST, PRAXIS_DYNAMIC_FIELDS_AUTHORING_PROFILES, PRAXIS_DYNAMIC_FIELDS_EDITORIAL_WAVE_1, PRAXIS_DYNAMIC_FIELDS_EN_US, PRAXIS_DYNAMIC_FIELDS_I18N, PRAXIS_DYNAMIC_FIELDS_LOGGER_BACKEND, PRAXIS_DYNAMIC_FIELDS_PT_BR, PRAXIS_DYNAMIC_FIELDS_WAVE_1_COMPONENT_METADATA, PRICE_RANGE_AI_CAPABILITIES, PasswordInputComponent, PdxColorPickerComponent, PdxMaterialRangeSliderComponent, PdxMaterialTimeRangeComponent, PdxYearInputComponent, PhoneInputComponent, PraxisErrorStateMatcher, PreloadStatusComponent, RETRY_DELAY, SELECT_CONTROLS_AI_CAPABILITIES, SearchInputComponent, SimpleBaseButtonComponent, SimpleBaseInputComponent, SimpleBaseSelectComponent, TEXT_INPUTS_AI_CAPABILITIES, TIME_RANGE_AI_CAPABILITIES, TOGGLE_CONTROLS_AI_CAPABILITIES, TREE_CONTROLS_AI_CAPABILITIES, TextInputComponent, TimeInputComponent, UrlInputComponent, WeekInputComponent, YEAR_INPUT_AI_CAPABILITIES, bindDynamicFieldsLoggerBackendFromInjector, clearDynamicFieldsLoggerBackend, configureDynamicFieldsLogger, createDynamicFieldPreviewRecipe, createErrorStateMatcher, createPraxisDynamicFieldsI18nConfig, emitToDynamicFieldsLoggerBackend, enableDebugForComponent, getControlTypeCatalog, getErrorStateMatcherForField, inferErrorStateStrategy, initializeComponentSystem, initializeComponentSystemSync, isBaseDynamicFieldComponent, isLoadingCapableComponent, isValidJsonSchema, isValueBasedComponent, logger, mapJsonSchemaToFields, mapPropertyToFieldMetadata, normalizeFormMetadata, provideMaterialAvatarMetadata, providePraxisDynamicFields, providePraxisDynamicFieldsCore, providePraxisDynamicFieldsCoreNoDefaults, providePraxisDynamicFieldsI18n, providePraxisDynamicFieldsNoDefaults, providePraxisDynamicFieldsWave1EditorialRegistry, registerPraxisDynamicFieldsWave1EditorialDescriptors, resolvePraxisDynamicFieldsText, setDynamicFieldsLoggerBackend, silenceComponent, supportsClearButtonControlType };
6432
+ export { BRAZIL_INPUTS_AI_CAPABILITIES, CACHE_TTL, CHIPS_CONTROLS_AI_CAPABILITIES, CLEAR_BUTTON_CONTROL_TYPES, COLOR_CONTROLS_AI_CAPABILITIES, CONTROL_TYPE_AI_CATALOGS, ColorInputComponent, ComponentPreloaderService, ComponentRegistryService, ConfirmDialogComponent, DATE_CONTROLS_AI_CAPABILITIES, DISPLAY_ACTION_AI_CAPABILITIES, DYNAMIC_FIELDS_PLAYGROUND_CATALOG, DYNAMIC_FIELD_BASE_STATE_RECIPES, DYNAMIC_FIELD_DEFAULT_STATE_RECIPE, DYNAMIC_FIELD_DISABLED_STATE_RECIPE, DYNAMIC_FIELD_ERROR_STATE_RECIPE, DYNAMIC_FIELD_FILLED_STATE_RECIPE, DYNAMIC_FIELD_PRESENTATION_STATE_RECIPE, DYNAMIC_FIELD_READONLY_STATE_RECIPE, DateInputComponent, DateUtilsService, DatetimeLocalInputComponent, DynamicFieldLoaderDirective, EditableCollectionComponent, EmailInputComponent, FILE_UPLOAD_AI_CAPABILITIES, InlineAsyncSelectComponent, InlineAutocompleteComponent, InlineColorLabelComponent, InlineCurrencyComponent, InlineCurrencyRangeComponent, InlineDateComponent, InlineDateRangeComponent, InlineDistanceRadiusComponent, InlineEntityLookupComponent, InlineInputComponent, InlineMonthRangeComponent, InlineMultiSelectComponent, InlineNumberComponent, InlinePeriodRangeComponent, InlinePipelineStatusComponent, InlineRangeSliderComponent, InlineRatingComponent, InlineRelativePeriodComponent, InlineScorePriorityComponent, InlineSearchableSelectComponent, InlineSelectComponent, InlineSentimentComponent, InlineTimeComponent, InlineTimeRangeComponent, InlineToggleComponent, InlineTreeSelectComponent, InlineYearRangeComponent, KeyboardShortcutService, LIST_CONTROLS_AI_CAPABILITIES, LoggerPresets, MAX_LOAD_ATTEMPTS, MaterialAsyncSelectComponent, MaterialAutocompleteComponent, MaterialAvatarComponent, MaterialButtonComponent, MaterialButtonToggleComponent, MaterialCheckboxGroupComponent, MaterialChipsComponent, MaterialColorPickerComponent, MaterialCpfCnpjInputComponent, MaterialCurrencyComponent, MaterialDateRangeComponent, MaterialDatepickerComponent, MaterialFileUploadComponent, MaterialMultiSelectComponent, MaterialMultiSelectTreeComponent, MaterialPriceRangeComponent, MaterialRadioGroupComponent, MaterialRatingComponent, MaterialSearchableSelectComponent, MaterialSelectComponent, MaterialSelectionListComponent, MaterialSlideToggleComponent, MaterialSliderComponent, MaterialTextareaComponent, MaterialTimepickerComponent, MaterialTransferListComponent, MaterialTreeSelectComponent, MonthInputComponent, NUMERIC_INPUTS_AI_CAPABILITIES, NumberInputComponent, OptionStore, PDX_COLOR_INPUT_COMPONENT_METADATA, PDX_COLOR_PICKER_COMPONENT_METADATA, PDX_DATETIME_LOCAL_INPUT_COMPONENT_METADATA, PDX_DATE_INPUT_COMPONENT_METADATA, PDX_EDITABLE_COLLECTION_COMPONENT_METADATA, PDX_EMAIL_INPUT_COMPONENT_METADATA, PDX_ENTITY_LOOKUP_COMPONENT_METADATA, PDX_FIELD_SHELL_COMPONENT_METADATA, PDX_INLINE_ASYNC_SELECT_COMPONENT_METADATA, PDX_INLINE_AUTOCOMPLETE_COMPONENT_METADATA, PDX_INLINE_COLOR_LABEL_COMPONENT_METADATA, PDX_INLINE_CURRENCY_COMPONENT_METADATA, PDX_INLINE_CURRENCY_RANGE_COMPONENT_METADATA, PDX_INLINE_DATE_COMPONENT_METADATA, PDX_INLINE_DATE_RANGE_COMPONENT_METADATA, PDX_INLINE_DISTANCE_RADIUS_COMPONENT_METADATA, PDX_INLINE_ENTITY_LOOKUP_COMPONENT_METADATA, PDX_INLINE_INPUT_COMPONENT_METADATA, PDX_INLINE_MONTH_RANGE_COMPONENT_METADATA, PDX_INLINE_MULTI_SELECT_COMPONENT_METADATA, PDX_INLINE_NUMBER_COMPONENT_METADATA, PDX_INLINE_PERIOD_RANGE_COMPONENT_METADATA, PDX_INLINE_PIPELINE_STATUS_COMPONENT_METADATA, PDX_INLINE_RANGE_SLIDER_COMPONENT_METADATA, PDX_INLINE_RATING_COMPONENT_METADATA, PDX_INLINE_RELATIVE_PERIOD_COMPONENT_METADATA, PDX_INLINE_SCORE_PRIORITY_COMPONENT_METADATA, PDX_INLINE_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_INLINE_SELECT_COMPONENT_METADATA, PDX_INLINE_SENTIMENT_COMPONENT_METADATA, PDX_INLINE_TIME_COMPONENT_METADATA, PDX_INLINE_TIME_RANGE_COMPONENT_METADATA, PDX_INLINE_TOGGLE_COMPONENT_METADATA, PDX_INLINE_TREE_SELECT_COMPONENT_METADATA, PDX_INLINE_YEAR_RANGE_COMPONENT_METADATA, PDX_MATERIAL_AVATAR_COMPONENT_METADATA, PDX_MATERIAL_BUTTON_COMPONENT_METADATA, PDX_MATERIAL_BUTTON_TOGGLE_COMPONENT_METADATA, PDX_MATERIAL_CHECKBOX_GROUP_COMPONENT_METADATA, PDX_MATERIAL_CHIPS_COMPONENT_METADATA, PDX_MATERIAL_COLORPICKER_COMPONENT_METADATA, PDX_MATERIAL_CPF_CNPJ_INPUT_COMPONENT_METADATA, PDX_MATERIAL_CURRENCY_COMPONENT_METADATA, PDX_MATERIAL_DATEPICKER_COMPONENT_METADATA, PDX_MATERIAL_DATE_RANGE_COMPONENT_METADATA, PDX_MATERIAL_FILE_UPLOAD_COMPONENT_METADATA, PDX_MATERIAL_MULTI_SELECT_COMPONENT_METADATA, PDX_MATERIAL_MULTI_SELECT_TREE_COMPONENT_METADATA, PDX_MATERIAL_PRICE_RANGE_COMPONENT_METADATA, PDX_MATERIAL_RADIO_GROUP_COMPONENT_METADATA, PDX_MATERIAL_RANGE_SLIDER_COMPONENT_METADATA, PDX_MATERIAL_RATING_COMPONENT_METADATA, PDX_MATERIAL_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_MATERIAL_SELECTION_LIST_COMPONENT_METADATA, PDX_MATERIAL_SELECT_COMPONENT_METADATA, PDX_MATERIAL_SLIDER_COMPONENT_METADATA, PDX_MATERIAL_TEXTAREA_COMPONENT_METADATA, PDX_MATERIAL_TIMEPICKER_COMPONENT_METADATA, PDX_MATERIAL_TIME_RANGE_COMPONENT_METADATA, PDX_MATERIAL_TRANSFER_LIST_COMPONENT_METADATA, PDX_MATERIAL_TREE_SELECT_COMPONENT_METADATA, PDX_MONTH_INPUT_COMPONENT_METADATA, PDX_NUMBER_INPUT_COMPONENT_METADATA, PDX_PASSWORD_INPUT_COMPONENT_METADATA, PDX_PHONE_INPUT_COMPONENT_METADATA, PDX_PRELOAD_STATUS_COMPONENT_METADATA, PDX_SEARCH_INPUT_COMPONENT_METADATA, PDX_TEXT_INPUT_COMPONENT_METADATA, PDX_TIME_INPUT_COMPONENT_METADATA, PDX_URL_INPUT_COMPONENT_METADATA, PDX_WEEK_INPUT_COMPONENT_METADATA, PDX_YEAR_INPUT_COMPONENT_METADATA, PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST, PRAXIS_DYNAMIC_FIELDS_AUTHORING_PROFILES, PRAXIS_DYNAMIC_FIELDS_EDITORIAL_WAVE_1, PRAXIS_DYNAMIC_FIELDS_EN_US, PRAXIS_DYNAMIC_FIELDS_I18N, PRAXIS_DYNAMIC_FIELDS_LOGGER_BACKEND, PRAXIS_DYNAMIC_FIELDS_PT_BR, PRAXIS_DYNAMIC_FIELDS_WAVE_1_COMPONENT_METADATA, PRICE_RANGE_AI_CAPABILITIES, PasswordInputComponent, PdxColorPickerComponent, PdxMaterialRangeSliderComponent, PdxMaterialTimeRangeComponent, PdxYearInputComponent, PhoneInputComponent, PraxisErrorStateMatcher, PreloadStatusComponent, RETRY_DELAY, SELECT_CONTROLS_AI_CAPABILITIES, SearchInputComponent, SimpleBaseButtonComponent, SimpleBaseInputComponent, SimpleBaseSelectComponent, TEXT_INPUTS_AI_CAPABILITIES, TIME_RANGE_AI_CAPABILITIES, TOGGLE_CONTROLS_AI_CAPABILITIES, TREE_CONTROLS_AI_CAPABILITIES, TextInputComponent, TimeInputComponent, UrlInputComponent, WeekInputComponent, YEAR_INPUT_AI_CAPABILITIES, bindDynamicFieldsLoggerBackendFromInjector, clearDynamicFieldsLoggerBackend, configureDynamicFieldsLogger, createDynamicFieldPreviewRecipe, createErrorStateMatcher, createPraxisDynamicFieldsI18nConfig, emitToDynamicFieldsLoggerBackend, enableDebugForComponent, getControlTypeCatalog, getErrorStateMatcherForField, inferErrorStateStrategy, initializeComponentSystem, initializeComponentSystemSync, isBaseDynamicFieldComponent, isLoadingCapableComponent, isValidJsonSchema, isValueBasedComponent, logger, mapJsonSchemaToFields, mapPropertyToFieldMetadata, normalizeFormMetadata, provideMaterialAvatarMetadata, providePraxisDynamicFields, providePraxisDynamicFieldsCore, providePraxisDynamicFieldsCoreNoDefaults, providePraxisDynamicFieldsI18n, providePraxisDynamicFieldsNoDefaults, providePraxisDynamicFieldsWave1EditorialRegistry, registerPraxisDynamicFieldsWave1EditorialDescriptors, resolvePraxisDynamicFieldsText, setDynamicFieldsLoggerBackend, silenceComponent, supportsClearButtonControlType };
6432
6433
  export type { BaseDynamicFieldComponent, BaseValidationConfig, ComponentLifecycleEvent, ComponentLoadResult, ComponentRegistration, ConfirmDialogData, DynamicFieldCatalogEntry, DynamicFieldCatalogFamily, DynamicFieldCatalogIconKey, DynamicFieldCatalogIconSemantic, DynamicFieldCatalogIconTone, DynamicFieldCatalogStatus, DynamicFieldCatalogTrack, DynamicFieldDataSourceKind, DynamicFieldDocLinks, DynamicFieldInteractionPattern, DynamicFieldLoaderRenderErrorEvent, DynamicFieldPreviewPreset, DynamicFieldPreviewRecipe, DynamicFieldPreviewStateRecipe, DynamicFieldSnippetRecipe, DynamicFieldStateKey, DynamicFieldsCoreLogOptions, DynamicFieldsCoreLoggerBackend, DynamicFieldsLoggerContext, DynamicFieldsLoggerLevel, ErrorStateStrategy, GradientSettings, IComponentRegistry, JsonSchema, JsonSchemaProperty, LoggerConfig, LoggerLevel, OptionSource, PaletteSettings, PopupSettings, PraxisDynamicFieldText, PraxisDynamicFieldsI18nOptions, PraxisDynamicFieldsI18nOverrides, PreloadStatus, RatingIconState, RegistryStats, SelectOption, ShortcutHandler, ShortcutInfo, SimpleSelectMetadata, TimeRangeValue, ValueChangeOptions };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/dynamic-fields",
3
- "version": "8.0.0-beta.11",
3
+ "version": "8.0.0-beta.13",
4
4
  "description": "Angular Material-based dynamic form fields for Praxis UI with lazy loading and metadata-driven rendering.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.1.0",
@@ -10,9 +10,9 @@
10
10
  "@angular/cdk": "^20.1.0",
11
11
  "@angular/router": "^20.1.0",
12
12
  "rxjs": "^7.8.0",
13
- "@praxisui/core": "^8.0.0-beta.11",
14
- "@praxisui/cron-builder": "^8.0.0-beta.11",
15
- "@praxisui/dialog": "^8.0.0-beta.11"
13
+ "@praxisui/core": "^8.0.0-beta.13",
14
+ "@praxisui/cron-builder": "^8.0.0-beta.13",
15
+ "@praxisui/dialog": "^8.0.0-beta.13"
16
16
  },
17
17
  "dependencies": {
18
18
  "libphonenumber-js": "^1.12.41",
@@ -1 +0,0 @@
1
- export { InlineEntityLookupComponent, PDX_INLINE_ENTITY_LOOKUP_COMPONENT_METADATA } from './praxisui-dynamic-fields.mjs';