@praxisui/dynamic-fields 9.0.0-beta.6 → 9.0.0-beta.60
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 +9 -1
- package/ai/component-registry.json +266480 -0
- package/docs/dynamic-fields-field-catalog.md +2 -3
- package/docs/dynamic-fields-field-selection-guide.md +27 -3
- package/docs/dynamic-fields-inline-components-guide.md +27 -6
- package/docs/dynamic-fields-inline-filter-runtime-contract.md +11 -0
- package/fesm2022/praxisui-dynamic-fields.mjs +2013 -586
- package/package.json +8 -4
- package/src/lib/base/pdx-base-input-runtime-contract.json-api.md +16 -0
- package/src/lib/components/field-shell/praxis-field-shell.json-api.md +33 -3
- package/src/lib/components/inline-date/pdx-inline-date.json-api.md +1 -1
- package/src/lib/components/inline-entity-lookup/pdx-inline-entity-lookup.json-api.md +1 -0
- package/src/lib/components/inline-number/pdx-inline-number.json-api.md +1 -0
- package/src/lib/components/inline-relative-period/pdx-inline-relative-period.json-api.md +2 -2
- package/src/lib/components/inline-time-range/pdx-inline-time-range.json-api.md +2 -2
- package/src/lib/components/material-async-select/pdx-material-async-select.json-api.md +13 -4
- package/src/lib/components/material-checkbox-group/pdx-material-checkbox-group.json-api.md +5 -3
- package/src/lib/components/material-file-upload/pdx-material-file-upload.json-api.md +58 -27
- package/src/lib/components/material-searchable-select/pdx-material-searchable-select.json-api.md +10 -3
- package/src/lib/components/material-textarea/pdx-material-textarea.json-api.md +1 -1
- package/types/praxisui-dynamic-fields.d.ts +110 -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,
|
|
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;
|
|
@@ -1692,6 +1713,12 @@ declare class DynamicFieldLoaderDirective implements OnInit, OnDestroy, OnChange
|
|
|
1692
1713
|
* Aplica os estados globais aos shells já criados, sem re-render completo.
|
|
1693
1714
|
*/
|
|
1694
1715
|
private applyGlobalStates;
|
|
1716
|
+
refreshGlobalStates(states?: {
|
|
1717
|
+
readonlyMode?: boolean | null;
|
|
1718
|
+
disabledMode?: boolean | null;
|
|
1719
|
+
presentationMode?: boolean | null;
|
|
1720
|
+
visible?: boolean | null;
|
|
1721
|
+
}): void;
|
|
1695
1722
|
private applyShellEffectiveStatesToComponent;
|
|
1696
1723
|
/**
|
|
1697
1724
|
* Tenta inferir o controlType a partir do próprio field.
|
|
@@ -2584,8 +2611,14 @@ declare class MaterialSearchableSelectComponent extends SimpleBaseSelectComponen
|
|
|
2584
2611
|
private refreshOptions;
|
|
2585
2612
|
protected loadOptions(page?: number, searchTerm?: string, criteria?: Record<string, unknown>): void;
|
|
2586
2613
|
loadNextPage(): void;
|
|
2614
|
+
showLoadMore(): boolean;
|
|
2615
|
+
shouldRenderOpenSentinel(): boolean;
|
|
2616
|
+
private isLastPage;
|
|
2617
|
+
onLoadMorePointerDown(event: Event): void;
|
|
2618
|
+
onLoadMoreInteraction(event: Event): void;
|
|
2587
2619
|
onSearch(term: string): void;
|
|
2588
2620
|
protected registerMatSelect(select: MatSelect): void;
|
|
2621
|
+
private refocusSearchInput;
|
|
2589
2622
|
reload(reset: boolean): void;
|
|
2590
2623
|
protected onDependenciesChanged(): void;
|
|
2591
2624
|
private syncDisabledModeControlState;
|
|
@@ -2711,9 +2744,15 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2711
2744
|
protected refreshLookupQueryState(): void;
|
|
2712
2745
|
private runQuery;
|
|
2713
2746
|
loadMore(): void;
|
|
2747
|
+
showLoadMore(): boolean;
|
|
2748
|
+
shouldRenderOpenSentinel(): boolean;
|
|
2749
|
+
private isLastPage;
|
|
2750
|
+
onLoadMorePointerDown(event: Event): void;
|
|
2751
|
+
onLoadMoreInteraction(event: Event): void;
|
|
2714
2752
|
retry(): void;
|
|
2715
2753
|
handleKey(event: KeyboardEvent): void;
|
|
2716
2754
|
protected registerMatSelect(select: MatSelect): void;
|
|
2755
|
+
private refocusSearchInput;
|
|
2717
2756
|
reload(reset: boolean): void;
|
|
2718
2757
|
protected setupRemoteSelectionHydration(): void;
|
|
2719
2758
|
protected onDependenciesChanged(): void;
|
|
@@ -2725,6 +2764,8 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2725
2764
|
protected resolveRemoteOptionDisabled(option: AsyncOption): boolean;
|
|
2726
2765
|
protected areOptionValuesEqual(left: unknown, right: unknown): boolean;
|
|
2727
2766
|
private normalizeRemoteOptionValue;
|
|
2767
|
+
protected hasRemoteOptionsContract(): boolean;
|
|
2768
|
+
private clearRemoteConfiguration;
|
|
2728
2769
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialAsyncSelectComponent, never>;
|
|
2729
2770
|
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
2771
|
}
|
|
@@ -2858,14 +2899,16 @@ type EntityLookupMetadata = MaterialEntityLookupMetadata & {
|
|
|
2858
2899
|
density?: string;
|
|
2859
2900
|
};
|
|
2860
2901
|
declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
2902
|
+
private readonly detailServiceInjector;
|
|
2861
2903
|
private readonly dialog;
|
|
2862
|
-
private readonly globalActions;
|
|
2863
|
-
private readonly resourceDiscovery;
|
|
2864
|
-
private readonly surfaceOpenAdapter;
|
|
2865
2904
|
inlineMinWidthPx: number;
|
|
2866
2905
|
inlineMaxWidthPx: number;
|
|
2867
2906
|
private fieldLabelText;
|
|
2868
2907
|
private staticOptions;
|
|
2908
|
+
private lastAppliedSelectMetadata;
|
|
2909
|
+
private lastSelectMetadataSignature;
|
|
2910
|
+
private readonly metadataFunctionIds;
|
|
2911
|
+
private nextMetadataFunctionId;
|
|
2869
2912
|
set initialMetadata(metadata: MaterialEntityLookupMetadata | null | undefined);
|
|
2870
2913
|
private currentMetadata;
|
|
2871
2914
|
setSelectMetadata(metadata: EntityLookupMetadata): void;
|
|
@@ -3019,6 +3062,7 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
3019
3062
|
inlineTooltipText(): string;
|
|
3020
3063
|
private resolveLookupText;
|
|
3021
3064
|
private lookupViewFromValue;
|
|
3065
|
+
private findKnownLookupOption;
|
|
3022
3066
|
private resolveLookupData;
|
|
3023
3067
|
private buildLookupPrimaryText;
|
|
3024
3068
|
private fallbackLookupText;
|
|
@@ -3057,6 +3101,11 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
3057
3101
|
private isPrimitiveLookupValue;
|
|
3058
3102
|
private asRecord;
|
|
3059
3103
|
private lookupOptionSource;
|
|
3104
|
+
private buildMetadataSignature;
|
|
3105
|
+
private stableMetadataHash;
|
|
3106
|
+
private metadataFunctionId;
|
|
3107
|
+
private hashParts;
|
|
3108
|
+
private hashText;
|
|
3060
3109
|
private resolveDetailHref;
|
|
3061
3110
|
private resolveDetailRoute;
|
|
3062
3111
|
private applyLookupTemplate;
|
|
@@ -3516,6 +3565,7 @@ declare class InlineCurrencyComponent extends SimpleBaseInputComponent {
|
|
|
3516
3565
|
inlineWidthPx: number;
|
|
3517
3566
|
inlineMaxWidthPx: number;
|
|
3518
3567
|
private resizeRafId;
|
|
3568
|
+
private displayFormatRafId;
|
|
3519
3569
|
private fieldLabelText;
|
|
3520
3570
|
private minValidator?;
|
|
3521
3571
|
private maxValidator?;
|
|
@@ -3569,8 +3619,10 @@ declare class InlineCurrencyComponent extends SimpleBaseInputComponent {
|
|
|
3569
3619
|
private allowNegative;
|
|
3570
3620
|
private applyMaskedInput;
|
|
3571
3621
|
private digitsToNumber;
|
|
3622
|
+
private normalizeDecimalPlaces;
|
|
3572
3623
|
private syncDigitsFromValue;
|
|
3573
3624
|
private formatDisplayValue;
|
|
3625
|
+
private scheduleDisplayFormat;
|
|
3574
3626
|
private formatDecimalValue;
|
|
3575
3627
|
private setCaretToEnd;
|
|
3576
3628
|
private detectNegative;
|
|
@@ -3740,6 +3792,7 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
|
3740
3792
|
private formatCurrency;
|
|
3741
3793
|
private currencyFormatter;
|
|
3742
3794
|
private resolveDecimalPlaces;
|
|
3795
|
+
private normalizeDecimalPlaces;
|
|
3743
3796
|
private allowNegative;
|
|
3744
3797
|
private recalculateInlineSizeBounds;
|
|
3745
3798
|
private resetFormatterCache;
|
|
@@ -3966,6 +4019,7 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
|
|
|
3966
4019
|
private usesCurrencyFormatting;
|
|
3967
4020
|
private usesPercentFormatting;
|
|
3968
4021
|
private resetFormatterCache;
|
|
4022
|
+
private normalizeDecimalPlaces;
|
|
3969
4023
|
private resetQuickPresetsCache;
|
|
3970
4024
|
private resetDistributionCache;
|
|
3971
4025
|
private resolveFieldLabelFromMetadata;
|
|
@@ -4315,6 +4369,7 @@ declare class InlineTimeComponent extends MaterialTimepickerComponent {
|
|
|
4315
4369
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
4316
4370
|
isInteractionBlocked(): boolean;
|
|
4317
4371
|
showQuickClear(): boolean;
|
|
4372
|
+
showPanelToggle(): boolean;
|
|
4318
4373
|
hasInlineValue(): boolean;
|
|
4319
4374
|
showInlinePlaceholder(): boolean;
|
|
4320
4375
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
@@ -4367,7 +4422,6 @@ declare class InlineTimeComponent extends MaterialTimepickerComponent {
|
|
|
4367
4422
|
private recalculateInlineWidth;
|
|
4368
4423
|
private resolveWidthBounds;
|
|
4369
4424
|
private resolveChromeWidth;
|
|
4370
|
-
private parsePx;
|
|
4371
4425
|
private resolveFieldLabelFromMetadata;
|
|
4372
4426
|
private normalizeControlValue;
|
|
4373
4427
|
private resolveDisplayTime;
|
|
@@ -4627,6 +4681,8 @@ declare class InlineTreeSelectComponent extends SimpleBaseSelectComponent {
|
|
|
4627
4681
|
selectNode(node: MaterialTreeNode): void;
|
|
4628
4682
|
isSelected(node: MaterialTreeNode): boolean;
|
|
4629
4683
|
isNodeDisabled(node: MaterialTreeNode): boolean;
|
|
4684
|
+
isNodeSelectionOnlyDisabled(node: MaterialTreeNode): boolean;
|
|
4685
|
+
private isNodeSelectionBlocked;
|
|
4630
4686
|
handleKeydown(event: KeyboardEvent, node: MaterialTreeNode): void;
|
|
4631
4687
|
filteredTreeCount(): number;
|
|
4632
4688
|
emptyStateText(): string;
|
|
@@ -5975,6 +6031,7 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent i
|
|
|
5975
6031
|
onCheckboxControlKeydown(event: KeyboardEvent): void;
|
|
5976
6032
|
private syncDisabledModeControlState;
|
|
5977
6033
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
6034
|
+
setExternalControl(control: AbstractControl): void;
|
|
5978
6035
|
/** Disables options when maxSelections reached */
|
|
5979
6036
|
isOptionDisabled(option: SelectOption<unknown>): boolean;
|
|
5980
6037
|
protected getSpecificCssClasses(): string[];
|
|
@@ -6010,6 +6067,8 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent i
|
|
|
6010
6067
|
private shouldToggleFromBooleanContent;
|
|
6011
6068
|
private shouldToggleFromMultipleContent;
|
|
6012
6069
|
private toggleBooleanCheckbox;
|
|
6070
|
+
private normalizeBooleanControlValue;
|
|
6071
|
+
private coerceBooleanControlValue;
|
|
6013
6072
|
private syncBooleanOperationalEvents;
|
|
6014
6073
|
private humanizeName;
|
|
6015
6074
|
optionLabelId(option: SelectOption<unknown>): string;
|
|
@@ -6061,17 +6120,22 @@ declare class MaterialSelectionListComponent extends SimpleBaseSelectComponent i
|
|
|
6061
6120
|
}
|
|
6062
6121
|
|
|
6063
6122
|
/**
|
|
6064
|
-
*
|
|
6123
|
+
* Baseline file upload field.
|
|
6065
6124
|
*
|
|
6066
|
-
*
|
|
6067
|
-
*
|
|
6068
|
-
*
|
|
6125
|
+
* This component owns local file selection, validation and preview. Persisting
|
|
6126
|
+
* the selected file remains a host/backend concern; use @praxisui/files-upload
|
|
6127
|
+
* when the flow needs presign, progress, conflict policy or storage events.
|
|
6069
6128
|
*/
|
|
6070
|
-
declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
|
|
6129
|
+
declare class MaterialFileUploadComponent extends SimpleBaseInputComponent implements OnDestroy {
|
|
6071
6130
|
readonlyMode: boolean;
|
|
6072
6131
|
disabledMode: boolean;
|
|
6073
6132
|
visible: boolean;
|
|
6074
6133
|
presentationMode: boolean;
|
|
6134
|
+
readonly selectedFiles: _angular_core.WritableSignal<File[]>;
|
|
6135
|
+
readonly previewUrl: _angular_core.WritableSignal<string | null>;
|
|
6136
|
+
private externalValueSyncSubscription;
|
|
6137
|
+
readonly selectedSummaryText: _angular_core.Signal<string>;
|
|
6138
|
+
readonly selectedDetailText: _angular_core.Signal<string>;
|
|
6075
6139
|
/**
|
|
6076
6140
|
* Updates the control value when the user selects a file.
|
|
6077
6141
|
*/
|
|
@@ -6082,12 +6146,41 @@ declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
|
|
|
6082
6146
|
setFileUploadMetadata(metadata: ComponentMetadata): void;
|
|
6083
6147
|
fileAccept(): string | null;
|
|
6084
6148
|
allowsMultiple(): boolean;
|
|
6149
|
+
imagePreviewEnabled(): boolean;
|
|
6085
6150
|
isInteractionDisabled(): boolean;
|
|
6151
|
+
clearSelectedFiles(options?: {
|
|
6152
|
+
resetInput?: boolean;
|
|
6153
|
+
}): void;
|
|
6154
|
+
clearLabel(): string;
|
|
6155
|
+
clearAriaLabel(): string;
|
|
6156
|
+
selectedSummaryAriaLabel(): string;
|
|
6157
|
+
fileInputDescribedBy(): string | null;
|
|
6158
|
+
hintId(): string;
|
|
6159
|
+
errorId(): string;
|
|
6160
|
+
previewAltText(): string;
|
|
6161
|
+
writeValue(value: unknown): void;
|
|
6162
|
+
ngOnDestroy(): void;
|
|
6086
6163
|
/**
|
|
6087
6164
|
* CSS classes specific to the file upload wrapper.
|
|
6088
6165
|
*/
|
|
6089
6166
|
protected getSpecificCssClasses(): string[];
|
|
6167
|
+
protected onActiveControlChanged(previousControl: FormControl, currentControl: FormControl): void;
|
|
6090
6168
|
private metadataRecord;
|
|
6169
|
+
private updatePreview;
|
|
6170
|
+
private clearPreview;
|
|
6171
|
+
private validateSelectedFiles;
|
|
6172
|
+
private isAcceptedFile;
|
|
6173
|
+
private maxFileSize;
|
|
6174
|
+
private maxFiles;
|
|
6175
|
+
private applyFileError;
|
|
6176
|
+
private clearFileErrors;
|
|
6177
|
+
private syncSelectedFilesFromValue;
|
|
6178
|
+
private extractFilesFromValue;
|
|
6179
|
+
private isFile;
|
|
6180
|
+
private isImageFile;
|
|
6181
|
+
private hasKnownImageExtension;
|
|
6182
|
+
private formatBytes;
|
|
6183
|
+
private dynamicFieldsText;
|
|
6091
6184
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialFileUploadComponent, never>;
|
|
6092
6185
|
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
6186
|
}
|
|
@@ -6874,8 +6967,14 @@ declare const PDX_MATERIAL_RADIO_GROUP_COMPONENT_METADATA: ComponentDocMeta;
|
|
|
6874
6967
|
|
|
6875
6968
|
declare const PDX_MATERIAL_SEARCHABLE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
6876
6969
|
|
|
6970
|
+
declare const PDX_MATERIAL_ASYNC_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
6971
|
+
|
|
6972
|
+
declare const PDX_MATERIAL_AUTOCOMPLETE_COMPONENT_METADATA: ComponentDocMeta;
|
|
6973
|
+
|
|
6877
6974
|
declare const PDX_MATERIAL_SELECTION_LIST_COMPONENT_METADATA: ComponentDocMeta;
|
|
6878
6975
|
|
|
6976
|
+
declare const PDX_MATERIAL_SLIDE_TOGGLE_COMPONENT_METADATA: ComponentDocMeta;
|
|
6977
|
+
|
|
6879
6978
|
declare const PDX_MATERIAL_TRANSFER_LIST_COMPONENT_METADATA: ComponentDocMeta;
|
|
6880
6979
|
|
|
6881
6980
|
declare const PDX_MATERIAL_TREE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
@@ -7592,5 +7691,5 @@ declare function normalizeFormMetadata(input: FieldMetadata[] | JsonSchema): Fie
|
|
|
7592
7691
|
declare const CLEAR_BUTTON_CONTROL_TYPES: Set<string>;
|
|
7593
7692
|
declare function supportsClearButtonControlType(controlType?: string | null): boolean;
|
|
7594
7693
|
|
|
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 };
|
|
7694
|
+
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
7695
|
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 };
|