@praxisui/dynamic-fields 9.0.0-beta.7 → 9.0.0-beta.70

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.
Files changed (21) hide show
  1. package/README.md +9 -1
  2. package/ai/component-registry.json +266480 -0
  3. package/docs/dynamic-fields-field-catalog.md +2 -3
  4. package/docs/dynamic-fields-field-selection-guide.md +27 -3
  5. package/docs/dynamic-fields-inline-components-guide.md +27 -6
  6. package/docs/dynamic-fields-inline-filter-runtime-contract.md +11 -0
  7. package/fesm2022/praxisui-dynamic-fields.mjs +2043 -607
  8. package/package.json +8 -4
  9. package/src/lib/base/pdx-base-input-runtime-contract.json-api.md +16 -0
  10. package/src/lib/components/field-shell/praxis-field-shell.json-api.md +33 -3
  11. package/src/lib/components/inline-date/pdx-inline-date.json-api.md +1 -1
  12. package/src/lib/components/inline-entity-lookup/pdx-inline-entity-lookup.json-api.md +1 -0
  13. package/src/lib/components/inline-number/pdx-inline-number.json-api.md +1 -0
  14. package/src/lib/components/inline-relative-period/pdx-inline-relative-period.json-api.md +2 -2
  15. package/src/lib/components/inline-time-range/pdx-inline-time-range.json-api.md +2 -2
  16. package/src/lib/components/material-async-select/pdx-material-async-select.json-api.md +13 -4
  17. package/src/lib/components/material-checkbox-group/pdx-material-checkbox-group.json-api.md +5 -3
  18. package/src/lib/components/material-file-upload/pdx-material-file-upload.json-api.md +58 -27
  19. package/src/lib/components/material-searchable-select/pdx-material-searchable-select.json-api.md +10 -3
  20. package/src/lib/components/material-textarea/pdx-material-textarea.json-api.md +1 -1
  21. package/types/praxisui-dynamic-fields.d.ts +113 -11
@@ -3,7 +3,7 @@ import { WritableSignal, InjectionToken, Provider, OnInit, OnDestroy, AfterViewI
3
3
  import { AbstractControl, ControlValueAccessor, NgControl, ValidationErrors, FormControl, FormGroup, FormArray, FormGroupDirective, NgForm } from '@angular/forms';
4
4
  import { Observable, BehaviorSubject, Subscription } from 'rxjs';
5
5
  import * as _praxisui_core from '@praxisui/core';
6
- import { ComponentMetadata, PraxisTextValue, PraxisI18nDictionary, PraxisI18nConfig, PraxisI18nMessageDescriptor, PraxisI18nService, GlobalActionService, GlobalActionRef, OptionSourceMetadata, GenericCrudService, GlobalConfigService, OptionDTO, ComponentMetadataEditorialDescriptor, ComponentDocMeta, ComponentMetadataRegistry, FieldMetadata, MaterialButtonMetadata, FieldArrayConfig, MaterialInputMetadata, MaterialColorInputMetadata, MaterialDateInputMetadata, MaterialDatepickerMetadata, MaterialDateRangeMetadata, DateRangePreset, DateRangeValue, MaterialDatetimeLocalInputMetadata, MaterialEmailInputMetadata, MaterialTextareaMetadata, MaterialNumericMetadata, MaterialCurrencyMetadata, MaterialCpfCnpjMetadata, MaterialPriceRangeMetadata, MaterialMonthInputMetadata, MaterialPasswordMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, LookupFilterRequest, LookupFilteringMetadata, LookupSortOptionMetadata, LookupFilterDefinitionMetadata, MaterialEntityLookupMetadata, LookupStatusTone, EntityLookupResultState, EntityLookupResult, LookupDialogMetadata, LookupFilterOperator, LookupFilterFieldType, LookupResultColumnMetadata, MaterialAutocompleteMetadata, RangeSliderMark, RangeSliderSemanticTone, MaterialToggleMetadata, MaterialRangeSliderMetadata, RangeSliderValue, InlinePeriodRangeMetadata, FieldControlType, MaterialTimepickerMetadata, MaterialTimeRangeMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialMultiSelectTreeMetadata, MaterialChipsMetadata, RangeSliderSemanticBand, MaterialSliderMetadata, MaterialPhoneMetadata, MaterialTimeInputMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialColorPickerMetadata, MaterialYearInputMetadata, CapabilityCatalog, ComponentAuthoringManifest, ManifestControlProfile } from '@praxisui/core';
6
+ import { ComponentMetadata, PraxisTextValue, PraxisI18nDictionary, PraxisI18nConfig, PraxisI18nMessageDescriptor, PraxisI18nService, FormFieldHelpDisplay, GlobalActionService, GlobalActionRef, OptionSourceMetadata, GenericCrudService, GlobalConfigService, LookupFilterRequest, OptionDTO, ComponentMetadataEditorialDescriptor, ComponentDocMeta, ComponentMetadataRegistry, FieldMetadata, MaterialButtonMetadata, FieldArrayConfig, MaterialInputMetadata, MaterialColorInputMetadata, MaterialDateInputMetadata, MaterialDatepickerMetadata, MaterialDateRangeMetadata, DateRangePreset, DateRangeValue, MaterialDatetimeLocalInputMetadata, MaterialEmailInputMetadata, MaterialTextareaMetadata, MaterialNumericMetadata, MaterialCurrencyMetadata, MaterialCpfCnpjMetadata, MaterialPriceRangeMetadata, MaterialMonthInputMetadata, MaterialPasswordMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, LookupFilteringMetadata, LookupSortOptionMetadata, LookupFilterDefinitionMetadata, MaterialEntityLookupMetadata, LookupStatusTone, EntityLookupResultState, EntityLookupResult, LookupDialogMetadata, LookupFilterOperator, LookupFilterFieldType, LookupResultColumnMetadata, MaterialAutocompleteMetadata, RangeSliderMark, RangeSliderSemanticTone, MaterialToggleMetadata, MaterialRangeSliderMetadata, RangeSliderValue, InlinePeriodRangeMetadata, FieldControlType, MaterialTimepickerMetadata, MaterialTimeRangeMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialMultiSelectTreeMetadata, MaterialChipsMetadata, RangeSliderSemanticBand, MaterialSliderMetadata, MaterialPhoneMetadata, MaterialTimeInputMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialColorPickerMetadata, MaterialYearInputMetadata, CapabilityCatalog, ComponentAuthoringManifest, ManifestControlProfile } from '@praxisui/core';
7
7
  import { Router } from '@angular/router';
8
8
  import { MatDialog, MatDialogRef } from '@angular/material/dialog';
9
9
  import { MatSelect } from '@angular/material/select';
@@ -241,6 +241,18 @@ interface PraxisDynamicFieldsI18nOverrides {
241
241
  validation?: {
242
242
  genericFailed?: PraxisDynamicFieldText;
243
243
  };
244
+ fileUpload?: {
245
+ emptySummary?: PraxisDynamicFieldText;
246
+ multipleSummary?: PraxisDynamicFieldText;
247
+ clearSelection?: PraxisDynamicFieldText;
248
+ clearSelectionAriaLabel?: PraxisDynamicFieldText;
249
+ selectedSummaryAriaLabel?: PraxisDynamicFieldText;
250
+ previewAlt?: PraxisDynamicFieldText;
251
+ sizeUnitBytes?: PraxisDynamicFieldText;
252
+ sizeUnitKb?: PraxisDynamicFieldText;
253
+ sizeUnitMb?: PraxisDynamicFieldText;
254
+ sizeUnitGb?: PraxisDynamicFieldText;
255
+ };
244
256
  select?: {
245
257
  loadSchemaError?: PraxisDynamicFieldText;
246
258
  loadOptionsError?: PraxisDynamicFieldText;
@@ -648,6 +660,13 @@ declare abstract class SimpleBaseInputComponent implements ControlValueAccessor,
648
660
  protected isInlineContextTooltipEnabled(): boolean;
649
661
  protected resolveInlineContextTooltipValue(): string;
650
662
  protected resolveInlineHelpTooltipText(): string;
663
+ fieldHelpText(): string;
664
+ fieldHelpDisplay(): FormFieldHelpDisplay;
665
+ hasInlineFieldHelp(): boolean;
666
+ fieldHelpInlineText(): string;
667
+ fieldHelpPopoverText(): string;
668
+ fieldHelpPopoverDisabled(): boolean;
669
+ fieldHelpAriaLabel(): string;
651
670
  protected isInteractionBlockedByState(options?: {
652
671
  readonly includeReadonly?: boolean;
653
672
  readonly includePresentation?: boolean;
@@ -1003,6 +1022,7 @@ interface SelectOption<T = any> {
1003
1022
  /** Optional supporting text rendered by components that expose rich option content */
1004
1023
  description?: string;
1005
1024
  }
1025
+ declare function optionSourceCriteriaToLookupFilters(criteria: Record<string, unknown> | null | undefined): LookupFilterRequest[];
1006
1026
  /**
1007
1027
  * Metadata configuration for simple select components.
1008
1028
  */
@@ -1117,6 +1137,7 @@ declare abstract class SimpleBaseSelectComponent<T = any> extends SimpleBaseInpu
1117
1137
  * Applies typed metadata to the select component.
1118
1138
  */
1119
1139
  setSelectMetadata(metadata: SimpleSelectMetadata<T>): void;
1140
+ protected clearRemoteOptionSourceState(filterCriteria?: Record<string, any>): void;
1120
1141
  private scheduleRemoteOptionsLoad;
1121
1142
  protected setMetadata(metadata: ComponentMetadata): void;
1122
1143
  protected registerMatSelect(select: MatSelect): void;
@@ -1271,6 +1292,9 @@ declare abstract class SimpleBaseSelectComponent<T = any> extends SimpleBaseInpu
1271
1292
  valuePath?: string;
1272
1293
  }> | undefined;
1273
1294
  protected resolveDependencyValuePathConfig(meta: SimpleSelectMetadata<T> & Record<string, any>): string | Record<string, string> | undefined;
1295
+ protected optionSourceByIdsOptions(): {
1296
+ filter?: Record<string, unknown>;
1297
+ } | undefined;
1274
1298
  private getByPath;
1275
1299
  private setByPath;
1276
1300
  private unsetByPath;
@@ -1692,6 +1716,12 @@ declare class DynamicFieldLoaderDirective implements OnInit, OnDestroy, OnChange
1692
1716
  * Aplica os estados globais aos shells já criados, sem re-render completo.
1693
1717
  */
1694
1718
  private applyGlobalStates;
1719
+ refreshGlobalStates(states?: {
1720
+ readonlyMode?: boolean | null;
1721
+ disabledMode?: boolean | null;
1722
+ presentationMode?: boolean | null;
1723
+ visible?: boolean | null;
1724
+ }): void;
1695
1725
  private applyShellEffectiveStatesToComponent;
1696
1726
  /**
1697
1727
  * Tenta inferir o controlType a partir do próprio field.
@@ -2584,8 +2614,14 @@ declare class MaterialSearchableSelectComponent extends SimpleBaseSelectComponen
2584
2614
  private refreshOptions;
2585
2615
  protected loadOptions(page?: number, searchTerm?: string, criteria?: Record<string, unknown>): void;
2586
2616
  loadNextPage(): void;
2617
+ showLoadMore(): boolean;
2618
+ shouldRenderOpenSentinel(): boolean;
2619
+ private isLastPage;
2620
+ onLoadMorePointerDown(event: Event): void;
2621
+ onLoadMoreInteraction(event: Event): void;
2587
2622
  onSearch(term: string): void;
2588
2623
  protected registerMatSelect(select: MatSelect): void;
2624
+ private refocusSearchInput;
2589
2625
  reload(reset: boolean): void;
2590
2626
  protected onDependenciesChanged(): void;
2591
2627
  private syncDisabledModeControlState;
@@ -2711,9 +2747,15 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
2711
2747
  protected refreshLookupQueryState(): void;
2712
2748
  private runQuery;
2713
2749
  loadMore(): void;
2750
+ showLoadMore(): boolean;
2751
+ shouldRenderOpenSentinel(): boolean;
2752
+ private isLastPage;
2753
+ onLoadMorePointerDown(event: Event): void;
2754
+ onLoadMoreInteraction(event: Event): void;
2714
2755
  retry(): void;
2715
2756
  handleKey(event: KeyboardEvent): void;
2716
2757
  protected registerMatSelect(select: MatSelect): void;
2758
+ private refocusSearchInput;
2717
2759
  reload(reset: boolean): void;
2718
2760
  protected setupRemoteSelectionHydration(): void;
2719
2761
  protected onDependenciesChanged(): void;
@@ -2725,6 +2767,8 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
2725
2767
  protected resolveRemoteOptionDisabled(option: AsyncOption): boolean;
2726
2768
  protected areOptionValuesEqual(left: unknown, right: unknown): boolean;
2727
2769
  private normalizeRemoteOptionValue;
2770
+ protected hasRemoteOptionsContract(): boolean;
2771
+ private clearRemoteConfiguration;
2728
2772
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialAsyncSelectComponent, never>;
2729
2773
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<MaterialAsyncSelectComponent, "pdx-material-async-select", never, { "readonlyMode": { "alias": "readonlyMode"; "required": false; }; "disabledMode": { "alias": "disabledMode"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "presentationMode": { "alias": "presentationMode"; "required": false; }; }, {}, never, never, true, never>;
2730
2774
  }
@@ -2858,14 +2902,16 @@ type EntityLookupMetadata = MaterialEntityLookupMetadata & {
2858
2902
  density?: string;
2859
2903
  };
2860
2904
  declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
2905
+ private readonly detailServiceInjector;
2861
2906
  private readonly dialog;
2862
- private readonly globalActions;
2863
- private readonly resourceDiscovery;
2864
- private readonly surfaceOpenAdapter;
2865
2907
  inlineMinWidthPx: number;
2866
2908
  inlineMaxWidthPx: number;
2867
2909
  private fieldLabelText;
2868
2910
  private staticOptions;
2911
+ private lastAppliedSelectMetadata;
2912
+ private lastSelectMetadataSignature;
2913
+ private readonly metadataFunctionIds;
2914
+ private nextMetadataFunctionId;
2869
2915
  set initialMetadata(metadata: MaterialEntityLookupMetadata | null | undefined);
2870
2916
  private currentMetadata;
2871
2917
  setSelectMetadata(metadata: EntityLookupMetadata): void;
@@ -3019,6 +3065,7 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
3019
3065
  inlineTooltipText(): string;
3020
3066
  private resolveLookupText;
3021
3067
  private lookupViewFromValue;
3068
+ private findKnownLookupOption;
3022
3069
  private resolveLookupData;
3023
3070
  private buildLookupPrimaryText;
3024
3071
  private fallbackLookupText;
@@ -3057,6 +3104,11 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
3057
3104
  private isPrimitiveLookupValue;
3058
3105
  private asRecord;
3059
3106
  private lookupOptionSource;
3107
+ private buildMetadataSignature;
3108
+ private stableMetadataHash;
3109
+ private metadataFunctionId;
3110
+ private hashParts;
3111
+ private hashText;
3060
3112
  private resolveDetailHref;
3061
3113
  private resolveDetailRoute;
3062
3114
  private applyLookupTemplate;
@@ -3516,6 +3568,7 @@ declare class InlineCurrencyComponent extends SimpleBaseInputComponent {
3516
3568
  inlineWidthPx: number;
3517
3569
  inlineMaxWidthPx: number;
3518
3570
  private resizeRafId;
3571
+ private displayFormatRafId;
3519
3572
  private fieldLabelText;
3520
3573
  private minValidator?;
3521
3574
  private maxValidator?;
@@ -3569,8 +3622,10 @@ declare class InlineCurrencyComponent extends SimpleBaseInputComponent {
3569
3622
  private allowNegative;
3570
3623
  private applyMaskedInput;
3571
3624
  private digitsToNumber;
3625
+ private normalizeDecimalPlaces;
3572
3626
  private syncDigitsFromValue;
3573
3627
  private formatDisplayValue;
3628
+ private scheduleDisplayFormat;
3574
3629
  private formatDecimalValue;
3575
3630
  private setCaretToEnd;
3576
3631
  private detectNegative;
@@ -3740,6 +3795,7 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
3740
3795
  private formatCurrency;
3741
3796
  private currencyFormatter;
3742
3797
  private resolveDecimalPlaces;
3798
+ private normalizeDecimalPlaces;
3743
3799
  private allowNegative;
3744
3800
  private recalculateInlineSizeBounds;
3745
3801
  private resetFormatterCache;
@@ -3966,6 +4022,7 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
3966
4022
  private usesCurrencyFormatting;
3967
4023
  private usesPercentFormatting;
3968
4024
  private resetFormatterCache;
4025
+ private normalizeDecimalPlaces;
3969
4026
  private resetQuickPresetsCache;
3970
4027
  private resetDistributionCache;
3971
4028
  private resolveFieldLabelFromMetadata;
@@ -4315,6 +4372,7 @@ declare class InlineTimeComponent extends MaterialTimepickerComponent {
4315
4372
  errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
4316
4373
  isInteractionBlocked(): boolean;
4317
4374
  showQuickClear(): boolean;
4375
+ showPanelToggle(): boolean;
4318
4376
  hasInlineValue(): boolean;
4319
4377
  showInlinePlaceholder(): boolean;
4320
4378
  onTriggerIconMouseDown(event: MouseEvent): void;
@@ -4367,7 +4425,6 @@ declare class InlineTimeComponent extends MaterialTimepickerComponent {
4367
4425
  private recalculateInlineWidth;
4368
4426
  private resolveWidthBounds;
4369
4427
  private resolveChromeWidth;
4370
- private parsePx;
4371
4428
  private resolveFieldLabelFromMetadata;
4372
4429
  private normalizeControlValue;
4373
4430
  private resolveDisplayTime;
@@ -4627,6 +4684,8 @@ declare class InlineTreeSelectComponent extends SimpleBaseSelectComponent {
4627
4684
  selectNode(node: MaterialTreeNode): void;
4628
4685
  isSelected(node: MaterialTreeNode): boolean;
4629
4686
  isNodeDisabled(node: MaterialTreeNode): boolean;
4687
+ isNodeSelectionOnlyDisabled(node: MaterialTreeNode): boolean;
4688
+ private isNodeSelectionBlocked;
4630
4689
  handleKeydown(event: KeyboardEvent, node: MaterialTreeNode): void;
4631
4690
  filteredTreeCount(): number;
4632
4691
  emptyStateText(): string;
@@ -5975,6 +6034,7 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent i
5975
6034
  onCheckboxControlKeydown(event: KeyboardEvent): void;
5976
6035
  private syncDisabledModeControlState;
5977
6036
  setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
6037
+ setExternalControl(control: AbstractControl): void;
5978
6038
  /** Disables options when maxSelections reached */
5979
6039
  isOptionDisabled(option: SelectOption<unknown>): boolean;
5980
6040
  protected getSpecificCssClasses(): string[];
@@ -6010,6 +6070,8 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent i
6010
6070
  private shouldToggleFromBooleanContent;
6011
6071
  private shouldToggleFromMultipleContent;
6012
6072
  private toggleBooleanCheckbox;
6073
+ private normalizeBooleanControlValue;
6074
+ private coerceBooleanControlValue;
6013
6075
  private syncBooleanOperationalEvents;
6014
6076
  private humanizeName;
6015
6077
  optionLabelId(option: SelectOption<unknown>): string;
@@ -6061,17 +6123,22 @@ declare class MaterialSelectionListComponent extends SimpleBaseSelectComponent i
6061
6123
  }
6062
6124
 
6063
6125
  /**
6064
- * Placeholder component for file upload fields.
6126
+ * Baseline file upload field.
6065
6127
  *
6066
- * Currently provides a simple `<input type="file">` element and basic
6067
- * ControlValueAccessor integration. A full-featured implementation will
6068
- * be provided in future iterations.
6128
+ * This component owns local file selection, validation and preview. Persisting
6129
+ * the selected file remains a host/backend concern; use @praxisui/files-upload
6130
+ * when the flow needs presign, progress, conflict policy or storage events.
6069
6131
  */
6070
- declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
6132
+ declare class MaterialFileUploadComponent extends SimpleBaseInputComponent implements OnDestroy {
6071
6133
  readonlyMode: boolean;
6072
6134
  disabledMode: boolean;
6073
6135
  visible: boolean;
6074
6136
  presentationMode: boolean;
6137
+ readonly selectedFiles: _angular_core.WritableSignal<File[]>;
6138
+ readonly previewUrl: _angular_core.WritableSignal<string | null>;
6139
+ private externalValueSyncSubscription;
6140
+ readonly selectedSummaryText: _angular_core.Signal<string>;
6141
+ readonly selectedDetailText: _angular_core.Signal<string>;
6075
6142
  /**
6076
6143
  * Updates the control value when the user selects a file.
6077
6144
  */
@@ -6082,12 +6149,41 @@ declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
6082
6149
  setFileUploadMetadata(metadata: ComponentMetadata): void;
6083
6150
  fileAccept(): string | null;
6084
6151
  allowsMultiple(): boolean;
6152
+ imagePreviewEnabled(): boolean;
6085
6153
  isInteractionDisabled(): boolean;
6154
+ clearSelectedFiles(options?: {
6155
+ resetInput?: boolean;
6156
+ }): void;
6157
+ clearLabel(): string;
6158
+ clearAriaLabel(): string;
6159
+ selectedSummaryAriaLabel(): string;
6160
+ fileInputDescribedBy(): string | null;
6161
+ hintId(): string;
6162
+ errorId(): string;
6163
+ previewAltText(): string;
6164
+ writeValue(value: unknown): void;
6165
+ ngOnDestroy(): void;
6086
6166
  /**
6087
6167
  * CSS classes specific to the file upload wrapper.
6088
6168
  */
6089
6169
  protected getSpecificCssClasses(): string[];
6170
+ protected onActiveControlChanged(previousControl: FormControl, currentControl: FormControl): void;
6090
6171
  private metadataRecord;
6172
+ private updatePreview;
6173
+ private clearPreview;
6174
+ private validateSelectedFiles;
6175
+ private isAcceptedFile;
6176
+ private maxFileSize;
6177
+ private maxFiles;
6178
+ private applyFileError;
6179
+ private clearFileErrors;
6180
+ private syncSelectedFilesFromValue;
6181
+ private extractFilesFromValue;
6182
+ private isFile;
6183
+ private isImageFile;
6184
+ private hasKnownImageExtension;
6185
+ private formatBytes;
6186
+ private dynamicFieldsText;
6091
6187
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialFileUploadComponent, never>;
6092
6188
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<MaterialFileUploadComponent, "pdx-material-file-upload", never, { "readonlyMode": { "alias": "readonlyMode"; "required": false; }; "disabledMode": { "alias": "disabledMode"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "presentationMode": { "alias": "presentationMode"; "required": false; }; }, {}, never, never, true, never>;
6093
6189
  }
@@ -6874,8 +6970,14 @@ declare const PDX_MATERIAL_RADIO_GROUP_COMPONENT_METADATA: ComponentDocMeta;
6874
6970
 
6875
6971
  declare const PDX_MATERIAL_SEARCHABLE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
6876
6972
 
6973
+ declare const PDX_MATERIAL_ASYNC_SELECT_COMPONENT_METADATA: ComponentDocMeta;
6974
+
6975
+ declare const PDX_MATERIAL_AUTOCOMPLETE_COMPONENT_METADATA: ComponentDocMeta;
6976
+
6877
6977
  declare const PDX_MATERIAL_SELECTION_LIST_COMPONENT_METADATA: ComponentDocMeta;
6878
6978
 
6979
+ declare const PDX_MATERIAL_SLIDE_TOGGLE_COMPONENT_METADATA: ComponentDocMeta;
6980
+
6879
6981
  declare const PDX_MATERIAL_TRANSFER_LIST_COMPONENT_METADATA: ComponentDocMeta;
6880
6982
 
6881
6983
  declare const PDX_MATERIAL_TREE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
@@ -7592,5 +7694,5 @@ declare function normalizeFormMetadata(input: FieldMetadata[] | JsonSchema): Fie
7592
7694
  declare const CLEAR_BUTTON_CONTROL_TYPES: Set<string>;
7593
7695
  declare function supportsClearButtonControlType(controlType?: string | null): boolean;
7594
7696
 
7595
- 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, EntityLookupDialogComponent, 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_PHONE_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 };
7697
+ 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, EntityLookupDialogComponent, 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_PHONE_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_ASYNC_SELECT_COMPONENT_METADATA, PDX_MATERIAL_AUTOCOMPLETE_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_SLIDE_TOGGLE_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, optionSourceCriteriaToLookupFilters, provideMaterialAvatarMetadata, providePraxisDynamicFields, providePraxisDynamicFieldsCore, providePraxisDynamicFieldsCoreNoDefaults, providePraxisDynamicFieldsI18n, providePraxisDynamicFieldsNoDefaults, providePraxisDynamicFieldsWave1EditorialRegistry, registerPraxisDynamicFieldsWave1EditorialDescriptors, resolvePraxisDynamicFieldsText, setDynamicFieldsLoggerBackend, silenceComponent, supportsClearButtonControlType };
7596
7698
  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 };