@praxisui/dynamic-fields 9.0.0-beta.8 → 9.0.0-beta.80
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 +10 -2
- package/ai/component-registry.json +273462 -0
- package/docs/date-range-rust-host-integration.md +474 -0
- package/docs/dynamic-fields-field-catalog.md +3 -4
- package/docs/dynamic-fields-field-selection-guide.md +27 -3
- package/docs/dynamic-fields-inline-components-guide.md +30 -7
- package/docs/dynamic-fields-inline-filter-catalog.md +18 -1
- package/docs/dynamic-fields-inline-filter-runtime-contract.md +11 -0
- package/fesm2022/praxisui-dynamic-fields.mjs +2776 -983
- 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-date-range/pdx-inline-date-range.json-api.md +30 -9
- 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-rating/pdx-inline-rating.json-api.md +2 -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-date-range/pdx-material-date-range.json-api.md +20 -2
- 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 +160 -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, DateRangeShortcutPreset, StaticPresetResolutionOptions, StaticDateRangePreset, 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.
|
|
@@ -2011,6 +2041,7 @@ interface DateRangeShortcutItem {
|
|
|
2011
2041
|
disabled?: boolean;
|
|
2012
2042
|
description?: string;
|
|
2013
2043
|
rangeDescription?: string;
|
|
2044
|
+
tone?: 'neutral' | 'info' | 'success' | 'warning';
|
|
2014
2045
|
}
|
|
2015
2046
|
|
|
2016
2047
|
/**
|
|
@@ -2069,6 +2100,10 @@ declare class MaterialDateRangeComponent extends SimpleBaseInputComponent implem
|
|
|
2069
2100
|
closeShortcuts(): void;
|
|
2070
2101
|
onOverlayDetach(): void;
|
|
2071
2102
|
onSelectPreset(id: string): void;
|
|
2103
|
+
protected defaultDateRangeShortcutIds(): DateRangeShortcutPreset[];
|
|
2104
|
+
protected dateRangePresetResolutionOptions(): StaticPresetResolutionOptions;
|
|
2105
|
+
protected resolveShortcutPreset(shortcut: DateRangeShortcutPreset): DateRangePreset | null;
|
|
2106
|
+
protected asStaticShortcut(shortcut: DateRangeShortcutPreset): StaticDateRangePreset | null;
|
|
2072
2107
|
protected normalizeDateRangeValue(value: unknown): DateRangeValue | null;
|
|
2073
2108
|
private coerceDateLike;
|
|
2074
2109
|
private metadataAsField;
|
|
@@ -2584,8 +2619,14 @@ declare class MaterialSearchableSelectComponent extends SimpleBaseSelectComponen
|
|
|
2584
2619
|
private refreshOptions;
|
|
2585
2620
|
protected loadOptions(page?: number, searchTerm?: string, criteria?: Record<string, unknown>): void;
|
|
2586
2621
|
loadNextPage(): void;
|
|
2622
|
+
showLoadMore(): boolean;
|
|
2623
|
+
shouldRenderOpenSentinel(): boolean;
|
|
2624
|
+
private isLastPage;
|
|
2625
|
+
onLoadMorePointerDown(event: Event): void;
|
|
2626
|
+
onLoadMoreInteraction(event: Event): void;
|
|
2587
2627
|
onSearch(term: string): void;
|
|
2588
2628
|
protected registerMatSelect(select: MatSelect): void;
|
|
2629
|
+
private refocusSearchInput;
|
|
2589
2630
|
reload(reset: boolean): void;
|
|
2590
2631
|
protected onDependenciesChanged(): void;
|
|
2591
2632
|
private syncDisabledModeControlState;
|
|
@@ -2711,9 +2752,15 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2711
2752
|
protected refreshLookupQueryState(): void;
|
|
2712
2753
|
private runQuery;
|
|
2713
2754
|
loadMore(): void;
|
|
2755
|
+
showLoadMore(): boolean;
|
|
2756
|
+
shouldRenderOpenSentinel(): boolean;
|
|
2757
|
+
private isLastPage;
|
|
2758
|
+
onLoadMorePointerDown(event: Event): void;
|
|
2759
|
+
onLoadMoreInteraction(event: Event): void;
|
|
2714
2760
|
retry(): void;
|
|
2715
2761
|
handleKey(event: KeyboardEvent): void;
|
|
2716
2762
|
protected registerMatSelect(select: MatSelect): void;
|
|
2763
|
+
private refocusSearchInput;
|
|
2717
2764
|
reload(reset: boolean): void;
|
|
2718
2765
|
protected setupRemoteSelectionHydration(): void;
|
|
2719
2766
|
protected onDependenciesChanged(): void;
|
|
@@ -2725,6 +2772,8 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2725
2772
|
protected resolveRemoteOptionDisabled(option: AsyncOption): boolean;
|
|
2726
2773
|
protected areOptionValuesEqual(left: unknown, right: unknown): boolean;
|
|
2727
2774
|
private normalizeRemoteOptionValue;
|
|
2775
|
+
protected hasRemoteOptionsContract(): boolean;
|
|
2776
|
+
private clearRemoteConfiguration;
|
|
2728
2777
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialAsyncSelectComponent, never>;
|
|
2729
2778
|
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
2779
|
}
|
|
@@ -2858,14 +2907,16 @@ type EntityLookupMetadata = MaterialEntityLookupMetadata & {
|
|
|
2858
2907
|
density?: string;
|
|
2859
2908
|
};
|
|
2860
2909
|
declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
2910
|
+
private readonly detailServiceInjector;
|
|
2861
2911
|
private readonly dialog;
|
|
2862
|
-
private readonly globalActions;
|
|
2863
|
-
private readonly resourceDiscovery;
|
|
2864
|
-
private readonly surfaceOpenAdapter;
|
|
2865
2912
|
inlineMinWidthPx: number;
|
|
2866
2913
|
inlineMaxWidthPx: number;
|
|
2867
2914
|
private fieldLabelText;
|
|
2868
2915
|
private staticOptions;
|
|
2916
|
+
private lastAppliedSelectMetadata;
|
|
2917
|
+
private lastSelectMetadataSignature;
|
|
2918
|
+
private readonly metadataFunctionIds;
|
|
2919
|
+
private nextMetadataFunctionId;
|
|
2869
2920
|
set initialMetadata(metadata: MaterialEntityLookupMetadata | null | undefined);
|
|
2870
2921
|
private currentMetadata;
|
|
2871
2922
|
setSelectMetadata(metadata: EntityLookupMetadata): void;
|
|
@@ -3019,6 +3070,7 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
3019
3070
|
inlineTooltipText(): string;
|
|
3020
3071
|
private resolveLookupText;
|
|
3021
3072
|
private lookupViewFromValue;
|
|
3073
|
+
private findKnownLookupOption;
|
|
3022
3074
|
private resolveLookupData;
|
|
3023
3075
|
private buildLookupPrimaryText;
|
|
3024
3076
|
private fallbackLookupText;
|
|
@@ -3057,6 +3109,11 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
3057
3109
|
private isPrimitiveLookupValue;
|
|
3058
3110
|
private asRecord;
|
|
3059
3111
|
private lookupOptionSource;
|
|
3112
|
+
private buildMetadataSignature;
|
|
3113
|
+
private stableMetadataHash;
|
|
3114
|
+
private metadataFunctionId;
|
|
3115
|
+
private hashParts;
|
|
3116
|
+
private hashText;
|
|
3060
3117
|
private resolveDetailHref;
|
|
3061
3118
|
private resolveDetailRoute;
|
|
3062
3119
|
private applyLookupTemplate;
|
|
@@ -3516,6 +3573,7 @@ declare class InlineCurrencyComponent extends SimpleBaseInputComponent {
|
|
|
3516
3573
|
inlineWidthPx: number;
|
|
3517
3574
|
inlineMaxWidthPx: number;
|
|
3518
3575
|
private resizeRafId;
|
|
3576
|
+
private displayFormatRafId;
|
|
3519
3577
|
private fieldLabelText;
|
|
3520
3578
|
private minValidator?;
|
|
3521
3579
|
private maxValidator?;
|
|
@@ -3569,8 +3627,10 @@ declare class InlineCurrencyComponent extends SimpleBaseInputComponent {
|
|
|
3569
3627
|
private allowNegative;
|
|
3570
3628
|
private applyMaskedInput;
|
|
3571
3629
|
private digitsToNumber;
|
|
3630
|
+
private normalizeDecimalPlaces;
|
|
3572
3631
|
private syncDigitsFromValue;
|
|
3573
3632
|
private formatDisplayValue;
|
|
3633
|
+
private scheduleDisplayFormat;
|
|
3574
3634
|
private formatDecimalValue;
|
|
3575
3635
|
private setCaretToEnd;
|
|
3576
3636
|
private detectNegative;
|
|
@@ -3740,6 +3800,7 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
|
3740
3800
|
private formatCurrency;
|
|
3741
3801
|
private currencyFormatter;
|
|
3742
3802
|
private resolveDecimalPlaces;
|
|
3803
|
+
private normalizeDecimalPlaces;
|
|
3743
3804
|
private allowNegative;
|
|
3744
3805
|
private recalculateInlineSizeBounds;
|
|
3745
3806
|
private resetFormatterCache;
|
|
@@ -3966,6 +4027,7 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
|
|
|
3966
4027
|
private usesCurrencyFormatting;
|
|
3967
4028
|
private usesPercentFormatting;
|
|
3968
4029
|
private resetFormatterCache;
|
|
4030
|
+
private normalizeDecimalPlaces;
|
|
3969
4031
|
private resetQuickPresetsCache;
|
|
3970
4032
|
private resetDistributionCache;
|
|
3971
4033
|
private resolveFieldLabelFromMetadata;
|
|
@@ -4130,15 +4192,30 @@ declare class InlineDateComponent extends MaterialDatepickerComponent {
|
|
|
4130
4192
|
}
|
|
4131
4193
|
|
|
4132
4194
|
type InlineDateQuickPresetApplyMode = 'auto' | 'confirm';
|
|
4195
|
+
type InlineDateQuickPresetPosition = 'auto' | 'footer' | 'start' | 'end';
|
|
4196
|
+
type InlineDateQuickPresetEffectivePosition = 'footer' | 'start' | 'end';
|
|
4133
4197
|
interface InlineDateQuickPreset {
|
|
4134
4198
|
id: string;
|
|
4135
4199
|
label: string;
|
|
4136
4200
|
icon?: string;
|
|
4201
|
+
description?: string;
|
|
4202
|
+
tone?: 'neutral' | 'info' | 'success' | 'warning';
|
|
4137
4203
|
disabled?: boolean;
|
|
4138
4204
|
rangeDescription?: string;
|
|
4205
|
+
timeZone?: string;
|
|
4139
4206
|
startDate: Date | null;
|
|
4140
4207
|
endDate: Date | null;
|
|
4141
4208
|
}
|
|
4209
|
+
interface InlineDateRangeSelectionSummary {
|
|
4210
|
+
ariaLabel: string;
|
|
4211
|
+
description?: string;
|
|
4212
|
+
endLabel: string;
|
|
4213
|
+
endValue: string;
|
|
4214
|
+
rangeDescription: string;
|
|
4215
|
+
startLabel: string;
|
|
4216
|
+
startValue: string;
|
|
4217
|
+
title: string;
|
|
4218
|
+
}
|
|
4142
4219
|
declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
4143
4220
|
pickerRef?: MatDateRangePicker<Date>;
|
|
4144
4221
|
startInputEl?: ElementRef<HTMLInputElement>;
|
|
@@ -4153,9 +4230,14 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4153
4230
|
private overlayCommittedInSession;
|
|
4154
4231
|
private overlayBaseline;
|
|
4155
4232
|
private draftPresetId;
|
|
4233
|
+
private draftPresetRange;
|
|
4234
|
+
private applyCommitTimeoutId;
|
|
4156
4235
|
private autoApplyCalendarClickTeardown;
|
|
4157
4236
|
private readonly overlayActionsContainerClass;
|
|
4158
4237
|
private readonly overlayActionsDensityClassPrefix;
|
|
4238
|
+
private readonly overlayActionsPositionClassPrefix;
|
|
4239
|
+
private readonly overlayContentPositionClassPrefix;
|
|
4240
|
+
private readonly overlayShortcutRailClass;
|
|
4159
4241
|
private readonly defaultInlineShortcutIds;
|
|
4160
4242
|
private currentMetadata;
|
|
4161
4243
|
setDateRangeMetadata(metadata: MaterialDateRangeMetadata): void;
|
|
@@ -4173,6 +4255,7 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4173
4255
|
showInlineQuickPresets(): boolean;
|
|
4174
4256
|
inlineQuickPresets(): InlineDateQuickPreset[];
|
|
4175
4257
|
private buildInlineQuickPresets;
|
|
4258
|
+
private toInlineQuickPreset;
|
|
4176
4259
|
quickPresetsAriaLabel(): string;
|
|
4177
4260
|
overlayCancelLabel(): string;
|
|
4178
4261
|
overlayApplyLabel(): string;
|
|
@@ -4184,13 +4267,18 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4184
4267
|
cancelPanelActionColorRole(): string;
|
|
4185
4268
|
applyPanelActionColorRole(): string;
|
|
4186
4269
|
shouldRenderOverlayActions(): boolean;
|
|
4270
|
+
shouldRenderSelectionSummary(): boolean;
|
|
4271
|
+
overlayDraftHasCompleteRange(): boolean;
|
|
4272
|
+
overlaySelectionSummary(): InlineDateRangeSelectionSummary;
|
|
4187
4273
|
inlineQuickPresetsApplyMode(): InlineDateQuickPresetApplyMode;
|
|
4188
4274
|
private inlineOverlayAction;
|
|
4275
|
+
private activeDraftPreset;
|
|
4189
4276
|
presetAriaLabel(preset: InlineDateQuickPreset): string;
|
|
4190
4277
|
presetTooltip(preset: InlineDateQuickPreset): string;
|
|
4191
4278
|
shouldShowPresetTooltip(preset: InlineDateQuickPreset): boolean;
|
|
4192
4279
|
isPresetActive(preset: InlineDateQuickPreset): boolean;
|
|
4193
4280
|
applyQuickPreset(preset: InlineDateQuickPreset, event: MouseEvent): void;
|
|
4281
|
+
private syncPickerSelectionModel;
|
|
4194
4282
|
isInteractionBlocked(): boolean;
|
|
4195
4283
|
showQuickClear(): boolean;
|
|
4196
4284
|
showInlinePlaceholder(): boolean;
|
|
@@ -4218,6 +4306,7 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4218
4306
|
displayText(): string;
|
|
4219
4307
|
shouldShowInlineExpandedLabel(): boolean;
|
|
4220
4308
|
private commitDateRangeValue;
|
|
4309
|
+
private clearApplyCommitTimeout;
|
|
4221
4310
|
private currentRangeGroupValue;
|
|
4222
4311
|
private cloneDateRangeValue;
|
|
4223
4312
|
private restoreBaselineSelection;
|
|
@@ -4232,6 +4321,10 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4232
4321
|
private resolveInlineQuickPresetConfig;
|
|
4233
4322
|
private parsePositiveInt;
|
|
4234
4323
|
private resolvePresetById;
|
|
4324
|
+
inlineQuickPresetsPosition(): InlineDateQuickPresetPosition;
|
|
4325
|
+
inlineQuickPresetsEffectivePosition(): InlineDateQuickPresetEffectivePosition;
|
|
4326
|
+
private normalizeInlineQuickPresetPosition;
|
|
4327
|
+
private canUseSideQuickPresetLayout;
|
|
4235
4328
|
private scheduleInlineResize;
|
|
4236
4329
|
private recalculateInlineWidth;
|
|
4237
4330
|
private resolveWidthBounds;
|
|
@@ -4240,6 +4333,10 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4240
4333
|
private scheduleOverlayActionsContainerSync;
|
|
4241
4334
|
private syncOverlayActionsContainerClass;
|
|
4242
4335
|
private findOverlayActionsContainer;
|
|
4336
|
+
private syncQuickPresetComposition;
|
|
4337
|
+
private ensureQuickPresetRail;
|
|
4338
|
+
private resolvePhysicalQuickPresetPosition;
|
|
4339
|
+
private resolveDocumentDirection;
|
|
4243
4340
|
private syncAutoApplyCalendarBinding;
|
|
4244
4341
|
private unbindAutoApplyCalendarBinding;
|
|
4245
4342
|
private onAutoApplyCalendarInteraction;
|
|
@@ -4315,6 +4412,7 @@ declare class InlineTimeComponent extends MaterialTimepickerComponent {
|
|
|
4315
4412
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
4316
4413
|
isInteractionBlocked(): boolean;
|
|
4317
4414
|
showQuickClear(): boolean;
|
|
4415
|
+
showPanelToggle(): boolean;
|
|
4318
4416
|
hasInlineValue(): boolean;
|
|
4319
4417
|
showInlinePlaceholder(): boolean;
|
|
4320
4418
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
@@ -4367,7 +4465,6 @@ declare class InlineTimeComponent extends MaterialTimepickerComponent {
|
|
|
4367
4465
|
private recalculateInlineWidth;
|
|
4368
4466
|
private resolveWidthBounds;
|
|
4369
4467
|
private resolveChromeWidth;
|
|
4370
|
-
private parsePx;
|
|
4371
4468
|
private resolveFieldLabelFromMetadata;
|
|
4372
4469
|
private normalizeControlValue;
|
|
4373
4470
|
private resolveDisplayTime;
|
|
@@ -4627,6 +4724,8 @@ declare class InlineTreeSelectComponent extends SimpleBaseSelectComponent {
|
|
|
4627
4724
|
selectNode(node: MaterialTreeNode): void;
|
|
4628
4725
|
isSelected(node: MaterialTreeNode): boolean;
|
|
4629
4726
|
isNodeDisabled(node: MaterialTreeNode): boolean;
|
|
4727
|
+
isNodeSelectionOnlyDisabled(node: MaterialTreeNode): boolean;
|
|
4728
|
+
private isNodeSelectionBlocked;
|
|
4630
4729
|
handleKeydown(event: KeyboardEvent, node: MaterialTreeNode): void;
|
|
4631
4730
|
filteredTreeCount(): number;
|
|
4632
4731
|
emptyStateText(): string;
|
|
@@ -4685,6 +4784,12 @@ declare class InlineRatingComponent extends InlineRangeSliderComponent {
|
|
|
4685
4784
|
slotTone(slot: number): InlineRatingTone;
|
|
4686
4785
|
slotColor(slot: number): string;
|
|
4687
4786
|
isSlotInSelectedRange(slot: number): boolean;
|
|
4787
|
+
ratingStarIconName(slot: number): string;
|
|
4788
|
+
ratingStarSelectionAriaLabel(slot: number): string;
|
|
4789
|
+
onRatingStarClick(slot: number, event: MouseEvent): void;
|
|
4790
|
+
ratingValueForStarSelection(slot: number, chooseHalf: boolean): number;
|
|
4791
|
+
selectRatingValue(value: number): void;
|
|
4792
|
+
private ratingStarFill;
|
|
4688
4793
|
selectedStartLabel(): string;
|
|
4689
4794
|
selectedEndLabel(): string;
|
|
4690
4795
|
ratingStarsAriaLabel(): string;
|
|
@@ -4705,6 +4810,7 @@ declare class InlineRatingComponent extends InlineRangeSliderComponent {
|
|
|
4705
4810
|
private clampValue;
|
|
4706
4811
|
private formatRatingValue;
|
|
4707
4812
|
private resolveAllowHalfFlag;
|
|
4813
|
+
private supportsHalfStarSelection;
|
|
4708
4814
|
private resolveColorToken;
|
|
4709
4815
|
private parseColorPalette;
|
|
4710
4816
|
private resolveRatingLabelFromMetadata;
|
|
@@ -5975,6 +6081,7 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent i
|
|
|
5975
6081
|
onCheckboxControlKeydown(event: KeyboardEvent): void;
|
|
5976
6082
|
private syncDisabledModeControlState;
|
|
5977
6083
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
6084
|
+
setExternalControl(control: AbstractControl): void;
|
|
5978
6085
|
/** Disables options when maxSelections reached */
|
|
5979
6086
|
isOptionDisabled(option: SelectOption<unknown>): boolean;
|
|
5980
6087
|
protected getSpecificCssClasses(): string[];
|
|
@@ -6010,6 +6117,8 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent i
|
|
|
6010
6117
|
private shouldToggleFromBooleanContent;
|
|
6011
6118
|
private shouldToggleFromMultipleContent;
|
|
6012
6119
|
private toggleBooleanCheckbox;
|
|
6120
|
+
private normalizeBooleanControlValue;
|
|
6121
|
+
private coerceBooleanControlValue;
|
|
6013
6122
|
private syncBooleanOperationalEvents;
|
|
6014
6123
|
private humanizeName;
|
|
6015
6124
|
optionLabelId(option: SelectOption<unknown>): string;
|
|
@@ -6061,17 +6170,22 @@ declare class MaterialSelectionListComponent extends SimpleBaseSelectComponent i
|
|
|
6061
6170
|
}
|
|
6062
6171
|
|
|
6063
6172
|
/**
|
|
6064
|
-
*
|
|
6173
|
+
* Baseline file upload field.
|
|
6065
6174
|
*
|
|
6066
|
-
*
|
|
6067
|
-
*
|
|
6068
|
-
*
|
|
6175
|
+
* This component owns local file selection, validation and preview. Persisting
|
|
6176
|
+
* the selected file remains a host/backend concern; use @praxisui/files-upload
|
|
6177
|
+
* when the flow needs presign, progress, conflict policy or storage events.
|
|
6069
6178
|
*/
|
|
6070
|
-
declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
|
|
6179
|
+
declare class MaterialFileUploadComponent extends SimpleBaseInputComponent implements OnDestroy {
|
|
6071
6180
|
readonlyMode: boolean;
|
|
6072
6181
|
disabledMode: boolean;
|
|
6073
6182
|
visible: boolean;
|
|
6074
6183
|
presentationMode: boolean;
|
|
6184
|
+
readonly selectedFiles: _angular_core.WritableSignal<File[]>;
|
|
6185
|
+
readonly previewUrl: _angular_core.WritableSignal<string | null>;
|
|
6186
|
+
private externalValueSyncSubscription;
|
|
6187
|
+
readonly selectedSummaryText: _angular_core.Signal<string>;
|
|
6188
|
+
readonly selectedDetailText: _angular_core.Signal<string>;
|
|
6075
6189
|
/**
|
|
6076
6190
|
* Updates the control value when the user selects a file.
|
|
6077
6191
|
*/
|
|
@@ -6082,12 +6196,41 @@ declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
|
|
|
6082
6196
|
setFileUploadMetadata(metadata: ComponentMetadata): void;
|
|
6083
6197
|
fileAccept(): string | null;
|
|
6084
6198
|
allowsMultiple(): boolean;
|
|
6199
|
+
imagePreviewEnabled(): boolean;
|
|
6085
6200
|
isInteractionDisabled(): boolean;
|
|
6201
|
+
clearSelectedFiles(options?: {
|
|
6202
|
+
resetInput?: boolean;
|
|
6203
|
+
}): void;
|
|
6204
|
+
clearLabel(): string;
|
|
6205
|
+
clearAriaLabel(): string;
|
|
6206
|
+
selectedSummaryAriaLabel(): string;
|
|
6207
|
+
fileInputDescribedBy(): string | null;
|
|
6208
|
+
hintId(): string;
|
|
6209
|
+
errorId(): string;
|
|
6210
|
+
previewAltText(): string;
|
|
6211
|
+
writeValue(value: unknown): void;
|
|
6212
|
+
ngOnDestroy(): void;
|
|
6086
6213
|
/**
|
|
6087
6214
|
* CSS classes specific to the file upload wrapper.
|
|
6088
6215
|
*/
|
|
6089
6216
|
protected getSpecificCssClasses(): string[];
|
|
6217
|
+
protected onActiveControlChanged(previousControl: FormControl, currentControl: FormControl): void;
|
|
6090
6218
|
private metadataRecord;
|
|
6219
|
+
private updatePreview;
|
|
6220
|
+
private clearPreview;
|
|
6221
|
+
private validateSelectedFiles;
|
|
6222
|
+
private isAcceptedFile;
|
|
6223
|
+
private maxFileSize;
|
|
6224
|
+
private maxFiles;
|
|
6225
|
+
private applyFileError;
|
|
6226
|
+
private clearFileErrors;
|
|
6227
|
+
private syncSelectedFilesFromValue;
|
|
6228
|
+
private extractFilesFromValue;
|
|
6229
|
+
private isFile;
|
|
6230
|
+
private isImageFile;
|
|
6231
|
+
private hasKnownImageExtension;
|
|
6232
|
+
private formatBytes;
|
|
6233
|
+
private dynamicFieldsText;
|
|
6091
6234
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialFileUploadComponent, never>;
|
|
6092
6235
|
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
6236
|
}
|
|
@@ -6874,8 +7017,14 @@ declare const PDX_MATERIAL_RADIO_GROUP_COMPONENT_METADATA: ComponentDocMeta;
|
|
|
6874
7017
|
|
|
6875
7018
|
declare const PDX_MATERIAL_SEARCHABLE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
6876
7019
|
|
|
7020
|
+
declare const PDX_MATERIAL_ASYNC_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
7021
|
+
|
|
7022
|
+
declare const PDX_MATERIAL_AUTOCOMPLETE_COMPONENT_METADATA: ComponentDocMeta;
|
|
7023
|
+
|
|
6877
7024
|
declare const PDX_MATERIAL_SELECTION_LIST_COMPONENT_METADATA: ComponentDocMeta;
|
|
6878
7025
|
|
|
7026
|
+
declare const PDX_MATERIAL_SLIDE_TOGGLE_COMPONENT_METADATA: ComponentDocMeta;
|
|
7027
|
+
|
|
6879
7028
|
declare const PDX_MATERIAL_TRANSFER_LIST_COMPONENT_METADATA: ComponentDocMeta;
|
|
6880
7029
|
|
|
6881
7030
|
declare const PDX_MATERIAL_TREE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
@@ -7592,5 +7741,5 @@ declare function normalizeFormMetadata(input: FieldMetadata[] | JsonSchema): Fie
|
|
|
7592
7741
|
declare const CLEAR_BUTTON_CONTROL_TYPES: Set<string>;
|
|
7593
7742
|
declare function supportsClearButtonControlType(controlType?: string | null): boolean;
|
|
7594
7743
|
|
|
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 };
|
|
7744
|
+
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
7745
|
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 };
|