@praxisui/dynamic-fields 9.0.0-beta.3 → 9.0.0-beta.31

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 (22) hide show
  1. package/README.md +9 -1
  2. package/ai/component-registry.json +266392 -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 +26 -6
  6. package/docs/dynamic-fields-inline-filter-runtime-contract.md +11 -0
  7. package/fesm2022/praxisui-dynamic-fields.mjs +1752 -573
  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-color-label/pdx-inline-color-label.json-api.md +1 -1
  12. package/src/lib/components/inline-currency-range/pdx-inline-currency-range.json-api.md +49 -17
  13. package/src/lib/components/inline-date/pdx-inline-date.json-api.md +1 -1
  14. package/src/lib/components/inline-number/pdx-inline-number.json-api.md +1 -0
  15. package/src/lib/components/inline-range-slider/pdx-inline-range-slider.json-api.md +52 -13
  16. package/src/lib/components/inline-relative-period/pdx-inline-relative-period.json-api.md +103 -103
  17. package/src/lib/components/inline-sentiment/pdx-inline-sentiment.json-api.md +84 -84
  18. package/src/lib/components/inline-time-range/pdx-inline-time-range.json-api.md +2 -2
  19. package/src/lib/components/material-async-select/pdx-material-async-select.json-api.md +3 -2
  20. package/src/lib/components/material-checkbox-group/pdx-material-checkbox-group.json-api.md +5 -3
  21. package/src/lib/components/material-file-upload/pdx-material-file-upload.json-api.md +58 -27
  22. package/types/praxisui-dynamic-fields.d.ts +138 -8
@@ -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, 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';
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;
@@ -281,6 +293,9 @@ interface PraxisDynamicFieldsI18nOverrides {
281
293
  displayUpto?: PraxisDynamicFieldText;
282
294
  presetFrom?: PraxisDynamicFieldText;
283
295
  };
296
+ dateRange?: {
297
+ shortcutsAriaLabel?: PraxisDynamicFieldText;
298
+ };
284
299
  inlineDateRange?: {
285
300
  placeholder?: PraxisDynamicFieldText;
286
301
  startPlaceholder?: PraxisDynamicFieldText;
@@ -326,6 +341,13 @@ interface PraxisDynamicFieldsI18nOverrides {
326
341
  };
327
342
  inlineRange?: {
328
343
  placeholder?: PraxisDynamicFieldText;
344
+ minLabel?: PraxisDynamicFieldText;
345
+ maxLabel?: PraxisDynamicFieldText;
346
+ valueLabel?: PraxisDynamicFieldText;
347
+ quickPresetsLabel?: PraxisDynamicFieldText;
348
+ clearActionLabel?: PraxisDynamicFieldText;
349
+ applyActionLabel?: PraxisDynamicFieldText;
350
+ doneActionLabel?: PraxisDynamicFieldText;
329
351
  cancelActionLabel?: PraxisDynamicFieldText;
330
352
  };
331
353
  inlineCurrencyRange?: {
@@ -341,6 +363,13 @@ interface PraxisDynamicFieldsI18nOverrides {
341
363
  from?: PraxisDynamicFieldText;
342
364
  upto?: PraxisDynamicFieldText;
343
365
  };
366
+ validation?: {
367
+ required?: PraxisDynamicFieldText;
368
+ rangeOrder?: PraxisDynamicFieldText;
369
+ rangeMin?: PraxisDynamicFieldText;
370
+ rangeMax?: PraxisDynamicFieldText;
371
+ invalid?: PraxisDynamicFieldText;
372
+ };
344
373
  };
345
374
  inlineSelect?: {
346
375
  placeholder?: PraxisDynamicFieldText;
@@ -359,6 +388,7 @@ interface PraxisDynamicFieldsI18nOverrides {
359
388
  selectionTitle?: PraxisDynamicFieldText;
360
389
  selectionBadgesAriaLabel?: PraxisDynamicFieldText;
361
390
  removeSelectionAriaLabel?: PraxisDynamicFieldText;
391
+ fallbackOptionLabel?: PraxisDynamicFieldText;
362
392
  emptyStateText?: PraxisDynamicFieldText;
363
393
  overlayActionsAriaLabel?: PraxisDynamicFieldText;
364
394
  clearActionLabel?: PraxisDynamicFieldText;
@@ -384,14 +414,43 @@ interface PraxisDynamicFieldsI18nOverrides {
384
414
  inlineRelativePeriod?: {
385
415
  placeholder?: PraxisDynamicFieldText;
386
416
  panelSubtitle?: PraxisDynamicFieldText;
417
+ defaultOptions?: {
418
+ today?: PraxisDynamicFieldText;
419
+ yesterday?: PraxisDynamicFieldText;
420
+ last7?: PraxisDynamicFieldText;
421
+ last30?: PraxisDynamicFieldText;
422
+ thisMonth?: PraxisDynamicFieldText;
423
+ lastMonth?: PraxisDynamicFieldText;
424
+ thisQuarter?: PraxisDynamicFieldText;
425
+ thisYear?: PraxisDynamicFieldText;
426
+ };
387
427
  progressEmptyLabel?: PraxisDynamicFieldText;
428
+ progressAriaLabel?: PraxisDynamicFieldText;
388
429
  optionsGroupAriaLabel?: PraxisDynamicFieldText;
430
+ fallbackOptionLabel?: PraxisDynamicFieldText;
389
431
  emptyStateText?: PraxisDynamicFieldText;
390
432
  overlayActionsAriaLabel?: PraxisDynamicFieldText;
391
433
  clearActionLabel?: PraxisDynamicFieldText;
392
434
  cancelActionLabel?: PraxisDynamicFieldText;
393
435
  applyActionLabel?: PraxisDynamicFieldText;
394
436
  };
437
+ inlinePeriodRange?: {
438
+ minLabel?: PraxisDynamicFieldText;
439
+ maxLabel?: PraxisDynamicFieldText;
440
+ quickPresetsLabel?: PraxisDynamicFieldText;
441
+ };
442
+ inlineMonthRange?: {
443
+ quickPresetsLabel?: PraxisDynamicFieldText;
444
+ presetFull?: PraxisDynamicFieldText;
445
+ presetFirstHalf?: PraxisDynamicFieldText;
446
+ presetSecondHalf?: PraxisDynamicFieldText;
447
+ };
448
+ inlineYearRange?: {
449
+ minLabel?: PraxisDynamicFieldText;
450
+ maxLabel?: PraxisDynamicFieldText;
451
+ quickPresetsLabel?: PraxisDynamicFieldText;
452
+ presetFull?: PraxisDynamicFieldText;
453
+ };
395
454
  inlineTime?: {
396
455
  placeholder?: PraxisDynamicFieldText;
397
456
  openPanelAriaLabel?: PraxisDynamicFieldText;
@@ -404,10 +463,18 @@ interface PraxisDynamicFieldsI18nOverrides {
404
463
  inlineSentiment?: {
405
464
  placeholder?: PraxisDynamicFieldText;
406
465
  panelSubtitle?: PraxisDynamicFieldText;
466
+ defaultOptions?: {
467
+ terrible?: PraxisDynamicFieldText;
468
+ bad?: PraxisDynamicFieldText;
469
+ neutral?: PraxisDynamicFieldText;
470
+ good?: PraxisDynamicFieldText;
471
+ great?: PraxisDynamicFieldText;
472
+ };
407
473
  barAriaEmpty?: PraxisDynamicFieldText;
408
474
  barAriaSelected?: PraxisDynamicFieldText;
409
475
  optionsGroupAriaLabel?: PraxisDynamicFieldText;
410
476
  selectionPillsAriaLabel?: PraxisDynamicFieldText;
477
+ fallbackOptionLabel?: PraxisDynamicFieldText;
411
478
  emptyStateText?: PraxisDynamicFieldText;
412
479
  overlayActionsAriaLabel?: PraxisDynamicFieldText;
413
480
  clearActionLabel?: PraxisDynamicFieldText;
@@ -593,6 +660,13 @@ declare abstract class SimpleBaseInputComponent implements ControlValueAccessor,
593
660
  protected isInlineContextTooltipEnabled(): boolean;
594
661
  protected resolveInlineContextTooltipValue(): string;
595
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;
596
670
  protected isInteractionBlockedByState(options?: {
597
671
  readonly includeReadonly?: boolean;
598
672
  readonly includePresentation?: boolean;
@@ -1987,6 +2061,7 @@ declare class MaterialDateRangeComponent extends SimpleBaseInputComponent implem
1987
2061
  picker: MatDateRangePicker<Date>;
1988
2062
  private endDateInput?;
1989
2063
  readonly shouldShowShortcuts: () => boolean;
2064
+ readonly shortcutOverlayAriaLabel: _angular_core.Signal<string>;
1990
2065
  readonly overlayPositions: () => ConnectedPosition[];
1991
2066
  private shortcutOverlayBelowPositions;
1992
2067
  private shortcutOverlayLeftPositions;
@@ -3460,6 +3535,7 @@ declare class InlineCurrencyComponent extends SimpleBaseInputComponent {
3460
3535
  inlineWidthPx: number;
3461
3536
  inlineMaxWidthPx: number;
3462
3537
  private resizeRafId;
3538
+ private displayFormatRafId;
3463
3539
  private fieldLabelText;
3464
3540
  private minValidator?;
3465
3541
  private maxValidator?;
@@ -3513,8 +3589,10 @@ declare class InlineCurrencyComponent extends SimpleBaseInputComponent {
3513
3589
  private allowNegative;
3514
3590
  private applyMaskedInput;
3515
3591
  private digitsToNumber;
3592
+ private normalizeDecimalPlaces;
3516
3593
  private syncDigitsFromValue;
3517
3594
  private formatDisplayValue;
3595
+ private scheduleDisplayFormat;
3518
3596
  private formatDecimalValue;
3519
3597
  private setCaretToEnd;
3520
3598
  private detectNegative;
@@ -3684,6 +3762,7 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
3684
3762
  private formatCurrency;
3685
3763
  private currencyFormatter;
3686
3764
  private resolveDecimalPlaces;
3765
+ private normalizeDecimalPlaces;
3687
3766
  private allowNegative;
3688
3767
  private recalculateInlineSizeBounds;
3689
3768
  private resetFormatterCache;
@@ -3910,6 +3989,7 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
3910
3989
  private usesCurrencyFormatting;
3911
3990
  private usesPercentFormatting;
3912
3991
  private resetFormatterCache;
3992
+ private normalizeDecimalPlaces;
3913
3993
  private resetQuickPresetsCache;
3914
3994
  private resetDistributionCache;
3915
3995
  private resolveFieldLabelFromMetadata;
@@ -4259,6 +4339,7 @@ declare class InlineTimeComponent extends MaterialTimepickerComponent {
4259
4339
  errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
4260
4340
  isInteractionBlocked(): boolean;
4261
4341
  showQuickClear(): boolean;
4342
+ showPanelToggle(): boolean;
4262
4343
  hasInlineValue(): boolean;
4263
4344
  showInlinePlaceholder(): boolean;
4264
4345
  onTriggerIconMouseDown(event: MouseEvent): void;
@@ -4311,7 +4392,6 @@ declare class InlineTimeComponent extends MaterialTimepickerComponent {
4311
4392
  private recalculateInlineWidth;
4312
4393
  private resolveWidthBounds;
4313
4394
  private resolveChromeWidth;
4314
- private parsePx;
4315
4395
  private resolveFieldLabelFromMetadata;
4316
4396
  private normalizeControlValue;
4317
4397
  private resolveDisplayTime;
@@ -4571,6 +4651,8 @@ declare class InlineTreeSelectComponent extends SimpleBaseSelectComponent {
4571
4651
  selectNode(node: MaterialTreeNode): void;
4572
4652
  isSelected(node: MaterialTreeNode): boolean;
4573
4653
  isNodeDisabled(node: MaterialTreeNode): boolean;
4654
+ isNodeSelectionOnlyDisabled(node: MaterialTreeNode): boolean;
4655
+ private isNodeSelectionBlocked;
4574
4656
  handleKeydown(event: KeyboardEvent, node: MaterialTreeNode): void;
4575
4657
  filteredTreeCount(): number;
4576
4658
  emptyStateText(): string;
@@ -5118,9 +5200,11 @@ declare class InlineRelativePeriodComponent extends SimpleBaseSelectComponent {
5118
5200
  onPanelDone(event: MouseEvent): void;
5119
5201
  isInteractionBlocked(): boolean;
5120
5202
  private parseOptionsSource;
5203
+ private defaultRelativePeriodOptions;
5121
5204
  private selectedOptions;
5122
5205
  private toVisualOption;
5123
5206
  private resolveOptionSubtitle;
5207
+ private fallbackOptionLabel;
5124
5208
  private resolveOptionIcon;
5125
5209
  private selectedValues;
5126
5210
  private resolveCloseOnSelect;
@@ -5240,8 +5324,10 @@ declare class InlineSentimentComponent extends SimpleBaseSelectComponent {
5240
5324
  onPanelDone(event: MouseEvent): void;
5241
5325
  isInteractionBlocked(): boolean;
5242
5326
  private parseOptionsSource;
5327
+ private defaultSentimentOptions;
5243
5328
  private toVisualOption;
5244
5329
  private resolveOptionEmoji;
5330
+ private fallbackOptionLabel;
5245
5331
  private resolveOptionColor;
5246
5332
  private sentimentGradientColorByIndex;
5247
5333
  private sentimentGradientColorByRatio;
@@ -5374,6 +5460,7 @@ declare class InlineColorLabelComponent extends SimpleBaseSelectComponent<unknow
5374
5460
  private parseOptionsSource;
5375
5461
  private toVisualOption;
5376
5462
  private resolveOptionColor;
5463
+ private fallbackOptionLabel;
5377
5464
  private parseColorList;
5378
5465
  private selectedValues;
5379
5466
  private openPanel;
@@ -5914,6 +6001,7 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent i
5914
6001
  onCheckboxControlKeydown(event: KeyboardEvent): void;
5915
6002
  private syncDisabledModeControlState;
5916
6003
  setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
6004
+ setExternalControl(control: AbstractControl): void;
5917
6005
  /** Disables options when maxSelections reached */
5918
6006
  isOptionDisabled(option: SelectOption<unknown>): boolean;
5919
6007
  protected getSpecificCssClasses(): string[];
@@ -5949,6 +6037,8 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent i
5949
6037
  private shouldToggleFromBooleanContent;
5950
6038
  private shouldToggleFromMultipleContent;
5951
6039
  private toggleBooleanCheckbox;
6040
+ private normalizeBooleanControlValue;
6041
+ private coerceBooleanControlValue;
5952
6042
  private syncBooleanOperationalEvents;
5953
6043
  private humanizeName;
5954
6044
  optionLabelId(option: SelectOption<unknown>): string;
@@ -6000,17 +6090,22 @@ declare class MaterialSelectionListComponent extends SimpleBaseSelectComponent i
6000
6090
  }
6001
6091
 
6002
6092
  /**
6003
- * Placeholder component for file upload fields.
6093
+ * Baseline file upload field.
6004
6094
  *
6005
- * Currently provides a simple `<input type="file">` element and basic
6006
- * ControlValueAccessor integration. A full-featured implementation will
6007
- * be provided in future iterations.
6095
+ * This component owns local file selection, validation and preview. Persisting
6096
+ * the selected file remains a host/backend concern; use @praxisui/files-upload
6097
+ * when the flow needs presign, progress, conflict policy or storage events.
6008
6098
  */
6009
- declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
6099
+ declare class MaterialFileUploadComponent extends SimpleBaseInputComponent implements OnDestroy {
6010
6100
  readonlyMode: boolean;
6011
6101
  disabledMode: boolean;
6012
6102
  visible: boolean;
6013
6103
  presentationMode: boolean;
6104
+ readonly selectedFiles: _angular_core.WritableSignal<File[]>;
6105
+ readonly previewUrl: _angular_core.WritableSignal<string | null>;
6106
+ private externalValueSyncSubscription;
6107
+ readonly selectedSummaryText: _angular_core.Signal<string>;
6108
+ readonly selectedDetailText: _angular_core.Signal<string>;
6014
6109
  /**
6015
6110
  * Updates the control value when the user selects a file.
6016
6111
  */
@@ -6021,12 +6116,41 @@ declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
6021
6116
  setFileUploadMetadata(metadata: ComponentMetadata): void;
6022
6117
  fileAccept(): string | null;
6023
6118
  allowsMultiple(): boolean;
6119
+ imagePreviewEnabled(): boolean;
6024
6120
  isInteractionDisabled(): boolean;
6121
+ clearSelectedFiles(options?: {
6122
+ resetInput?: boolean;
6123
+ }): void;
6124
+ clearLabel(): string;
6125
+ clearAriaLabel(): string;
6126
+ selectedSummaryAriaLabel(): string;
6127
+ fileInputDescribedBy(): string | null;
6128
+ hintId(): string;
6129
+ errorId(): string;
6130
+ previewAltText(): string;
6131
+ writeValue(value: unknown): void;
6132
+ ngOnDestroy(): void;
6025
6133
  /**
6026
6134
  * CSS classes specific to the file upload wrapper.
6027
6135
  */
6028
6136
  protected getSpecificCssClasses(): string[];
6137
+ protected onActiveControlChanged(previousControl: FormControl, currentControl: FormControl): void;
6029
6138
  private metadataRecord;
6139
+ private updatePreview;
6140
+ private clearPreview;
6141
+ private validateSelectedFiles;
6142
+ private isAcceptedFile;
6143
+ private maxFileSize;
6144
+ private maxFiles;
6145
+ private applyFileError;
6146
+ private clearFileErrors;
6147
+ private syncSelectedFilesFromValue;
6148
+ private extractFilesFromValue;
6149
+ private isFile;
6150
+ private isImageFile;
6151
+ private hasKnownImageExtension;
6152
+ private formatBytes;
6153
+ private dynamicFieldsText;
6030
6154
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialFileUploadComponent, never>;
6031
6155
  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>;
6032
6156
  }
@@ -6813,8 +6937,14 @@ declare const PDX_MATERIAL_RADIO_GROUP_COMPONENT_METADATA: ComponentDocMeta;
6813
6937
 
6814
6938
  declare const PDX_MATERIAL_SEARCHABLE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
6815
6939
 
6940
+ declare const PDX_MATERIAL_ASYNC_SELECT_COMPONENT_METADATA: ComponentDocMeta;
6941
+
6942
+ declare const PDX_MATERIAL_AUTOCOMPLETE_COMPONENT_METADATA: ComponentDocMeta;
6943
+
6816
6944
  declare const PDX_MATERIAL_SELECTION_LIST_COMPONENT_METADATA: ComponentDocMeta;
6817
6945
 
6946
+ declare const PDX_MATERIAL_SLIDE_TOGGLE_COMPONENT_METADATA: ComponentDocMeta;
6947
+
6818
6948
  declare const PDX_MATERIAL_TRANSFER_LIST_COMPONENT_METADATA: ComponentDocMeta;
6819
6949
 
6820
6950
  declare const PDX_MATERIAL_TREE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
@@ -7531,5 +7661,5 @@ declare function normalizeFormMetadata(input: FieldMetadata[] | JsonSchema): Fie
7531
7661
  declare const CLEAR_BUTTON_CONTROL_TYPES: Set<string>;
7532
7662
  declare function supportsClearButtonControlType(controlType?: string | null): boolean;
7533
7663
 
7534
- 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 };
7664
+ 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, provideMaterialAvatarMetadata, providePraxisDynamicFields, providePraxisDynamicFieldsCore, providePraxisDynamicFieldsCoreNoDefaults, providePraxisDynamicFieldsI18n, providePraxisDynamicFieldsNoDefaults, providePraxisDynamicFieldsWave1EditorialRegistry, registerPraxisDynamicFieldsWave1EditorialDescriptors, resolvePraxisDynamicFieldsText, setDynamicFieldsLoggerBackend, silenceComponent, supportsClearButtonControlType };
7535
7665
  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 };