@praxisui/dynamic-fields 9.0.0-beta.8 → 9.0.0-beta.81
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 +3529 -1453
- 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-async-select/pdx-inline-async-select.json-api.md +6 -2
- 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 +27 -9
- 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-searchable-select/pdx-inline-searchable-select.json-api.md +6 -1
- 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 +21 -6
- 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 +15 -4
- package/src/lib/components/material-textarea/pdx-material-textarea.json-api.md +1 -1
- package/types/praxisui-dynamic-fields.d.ts +171 -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;
|
|
@@ -1168,6 +1189,7 @@ declare abstract class SimpleBaseSelectComponent<T = any> extends SimpleBaseInpu
|
|
|
1168
1189
|
loadingOptionsLabel(): string;
|
|
1169
1190
|
loadMoreOptionsLabel(): string;
|
|
1170
1191
|
endOfOptionsLabel(): string;
|
|
1192
|
+
selectPanelActionsAriaLabel(): string;
|
|
1171
1193
|
noOptionsAvailableLabel(): string;
|
|
1172
1194
|
loadingOptionsAriaLabel(): string;
|
|
1173
1195
|
/**
|
|
@@ -1271,6 +1293,9 @@ declare abstract class SimpleBaseSelectComponent<T = any> extends SimpleBaseInpu
|
|
|
1271
1293
|
valuePath?: string;
|
|
1272
1294
|
}> | undefined;
|
|
1273
1295
|
protected resolveDependencyValuePathConfig(meta: SimpleSelectMetadata<T> & Record<string, any>): string | Record<string, string> | undefined;
|
|
1296
|
+
protected optionSourceByIdsOptions(): {
|
|
1297
|
+
filter?: Record<string, unknown>;
|
|
1298
|
+
} | undefined;
|
|
1274
1299
|
private getByPath;
|
|
1275
1300
|
private setByPath;
|
|
1276
1301
|
private unsetByPath;
|
|
@@ -1291,6 +1316,7 @@ declare class OptionStore<ID = string | number> {
|
|
|
1291
1316
|
ensureVisible(ids: ID[]): void;
|
|
1292
1317
|
clearPages(): void;
|
|
1293
1318
|
get items(): OptionDTO<ID>[];
|
|
1319
|
+
get pageItems(): OptionDTO<ID>[];
|
|
1294
1320
|
}
|
|
1295
1321
|
|
|
1296
1322
|
declare const PRAXIS_DYNAMIC_FIELDS_PT_BR: PraxisI18nDictionary;
|
|
@@ -1692,6 +1718,12 @@ declare class DynamicFieldLoaderDirective implements OnInit, OnDestroy, OnChange
|
|
|
1692
1718
|
* Aplica os estados globais aos shells já criados, sem re-render completo.
|
|
1693
1719
|
*/
|
|
1694
1720
|
private applyGlobalStates;
|
|
1721
|
+
refreshGlobalStates(states?: {
|
|
1722
|
+
readonlyMode?: boolean | null;
|
|
1723
|
+
disabledMode?: boolean | null;
|
|
1724
|
+
presentationMode?: boolean | null;
|
|
1725
|
+
visible?: boolean | null;
|
|
1726
|
+
}): void;
|
|
1695
1727
|
private applyShellEffectiveStatesToComponent;
|
|
1696
1728
|
/**
|
|
1697
1729
|
* Tenta inferir o controlType a partir do próprio field.
|
|
@@ -2011,6 +2043,7 @@ interface DateRangeShortcutItem {
|
|
|
2011
2043
|
disabled?: boolean;
|
|
2012
2044
|
description?: string;
|
|
2013
2045
|
rangeDescription?: string;
|
|
2046
|
+
tone?: 'neutral' | 'info' | 'success' | 'warning';
|
|
2014
2047
|
}
|
|
2015
2048
|
|
|
2016
2049
|
/**
|
|
@@ -2069,6 +2102,10 @@ declare class MaterialDateRangeComponent extends SimpleBaseInputComponent implem
|
|
|
2069
2102
|
closeShortcuts(): void;
|
|
2070
2103
|
onOverlayDetach(): void;
|
|
2071
2104
|
onSelectPreset(id: string): void;
|
|
2105
|
+
protected defaultDateRangeShortcutIds(): DateRangeShortcutPreset[];
|
|
2106
|
+
protected dateRangePresetResolutionOptions(): StaticPresetResolutionOptions;
|
|
2107
|
+
protected resolveShortcutPreset(shortcut: DateRangeShortcutPreset): DateRangePreset | null;
|
|
2108
|
+
protected asStaticShortcut(shortcut: DateRangeShortcutPreset): StaticDateRangePreset | null;
|
|
2072
2109
|
protected normalizeDateRangeValue(value: unknown): DateRangeValue | null;
|
|
2073
2110
|
private coerceDateLike;
|
|
2074
2111
|
private metadataAsField;
|
|
@@ -2584,8 +2621,14 @@ declare class MaterialSearchableSelectComponent extends SimpleBaseSelectComponen
|
|
|
2584
2621
|
private refreshOptions;
|
|
2585
2622
|
protected loadOptions(page?: number, searchTerm?: string, criteria?: Record<string, unknown>): void;
|
|
2586
2623
|
loadNextPage(): void;
|
|
2624
|
+
showLoadMore(): boolean;
|
|
2625
|
+
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
2626
|
+
shouldRenderOpenSentinel(): boolean;
|
|
2627
|
+
private isLastPage;
|
|
2628
|
+
onLoadMoreInteraction(event: Event): void;
|
|
2587
2629
|
onSearch(term: string): void;
|
|
2588
2630
|
protected registerMatSelect(select: MatSelect): void;
|
|
2631
|
+
private refocusSearchInput;
|
|
2589
2632
|
reload(reset: boolean): void;
|
|
2590
2633
|
protected onDependenciesChanged(): void;
|
|
2591
2634
|
private syncDisabledModeControlState;
|
|
@@ -2614,6 +2657,7 @@ declare class InlineSearchableSelectComponent extends MaterialSearchableSelectCo
|
|
|
2614
2657
|
onSearchInput(term: string): void;
|
|
2615
2658
|
onSearchInputEvent(event: Event): void;
|
|
2616
2659
|
showLoadMore(): boolean;
|
|
2660
|
+
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
2617
2661
|
showEndReachedMessage(): boolean;
|
|
2618
2662
|
onLoadMoreClick(event: MouseEvent): void;
|
|
2619
2663
|
placeholderText(): string;
|
|
@@ -2691,9 +2735,11 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2691
2735
|
searchInputAriaLabel(): string;
|
|
2692
2736
|
ngOnInit(): void;
|
|
2693
2737
|
onOpened(opened: boolean): void;
|
|
2738
|
+
protected hasCompletedInitialLoad(): boolean;
|
|
2694
2739
|
private getSelectedIds;
|
|
2695
2740
|
private preloadSelected;
|
|
2696
2741
|
private refreshOptions;
|
|
2742
|
+
private hasSearchTerm;
|
|
2697
2743
|
protected currentLookupFiltering(): LookupFilteringMetadata | null;
|
|
2698
2744
|
lookupSortOptions(): LookupSortOptionMetadata[];
|
|
2699
2745
|
lookupFilterDefinitions(): LookupFilterDefinitionMetadata[];
|
|
@@ -2711,9 +2757,14 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2711
2757
|
protected refreshLookupQueryState(): void;
|
|
2712
2758
|
private runQuery;
|
|
2713
2759
|
loadMore(): void;
|
|
2760
|
+
showLoadMore(): boolean;
|
|
2761
|
+
shouldRenderOpenSentinel(): boolean;
|
|
2762
|
+
private isLastPage;
|
|
2763
|
+
onLoadMoreInteraction(event: Event): void;
|
|
2714
2764
|
retry(): void;
|
|
2715
2765
|
handleKey(event: KeyboardEvent): void;
|
|
2716
2766
|
protected registerMatSelect(select: MatSelect): void;
|
|
2767
|
+
private refocusSearchInput;
|
|
2717
2768
|
reload(reset: boolean): void;
|
|
2718
2769
|
protected setupRemoteSelectionHydration(): void;
|
|
2719
2770
|
protected onDependenciesChanged(): void;
|
|
@@ -2725,6 +2776,8 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2725
2776
|
protected resolveRemoteOptionDisabled(option: AsyncOption): boolean;
|
|
2726
2777
|
protected areOptionValuesEqual(left: unknown, right: unknown): boolean;
|
|
2727
2778
|
private normalizeRemoteOptionValue;
|
|
2779
|
+
protected hasRemoteOptionsContract(): boolean;
|
|
2780
|
+
private clearRemoteConfiguration;
|
|
2728
2781
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialAsyncSelectComponent, never>;
|
|
2729
2782
|
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
2783
|
}
|
|
@@ -2773,6 +2826,7 @@ declare class InlineAsyncSelectComponent extends MaterialAsyncSelectComponent {
|
|
|
2773
2826
|
onSearchInputEvent(event: Event): void;
|
|
2774
2827
|
onSearchInput(term: string): void;
|
|
2775
2828
|
showLoadMore(): boolean;
|
|
2829
|
+
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
2776
2830
|
showEndReachedMessage(): boolean;
|
|
2777
2831
|
onLoadMoreClick(event: MouseEvent): void;
|
|
2778
2832
|
placeholderText(): string;
|
|
@@ -2858,19 +2912,22 @@ type EntityLookupMetadata = MaterialEntityLookupMetadata & {
|
|
|
2858
2912
|
density?: string;
|
|
2859
2913
|
};
|
|
2860
2914
|
declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
2915
|
+
private readonly detailServiceInjector;
|
|
2861
2916
|
private readonly dialog;
|
|
2862
|
-
private readonly globalActions;
|
|
2863
|
-
private readonly resourceDiscovery;
|
|
2864
|
-
private readonly surfaceOpenAdapter;
|
|
2865
2917
|
inlineMinWidthPx: number;
|
|
2866
2918
|
inlineMaxWidthPx: number;
|
|
2867
2919
|
private fieldLabelText;
|
|
2868
2920
|
private staticOptions;
|
|
2921
|
+
private lastAppliedSelectMetadata;
|
|
2922
|
+
private lastSelectMetadataSignature;
|
|
2923
|
+
private readonly metadataFunctionIds;
|
|
2924
|
+
private nextMetadataFunctionId;
|
|
2869
2925
|
set initialMetadata(metadata: MaterialEntityLookupMetadata | null | undefined);
|
|
2870
2926
|
private currentMetadata;
|
|
2871
2927
|
setSelectMetadata(metadata: EntityLookupMetadata): void;
|
|
2872
2928
|
protected setMetadata(metadata: MaterialSelectMetadata): void;
|
|
2873
2929
|
onComponentInit(): void;
|
|
2930
|
+
onLookupHostClick(event: MouseEvent): void;
|
|
2874
2931
|
onViewportResize(): void;
|
|
2875
2932
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2876
2933
|
protected getSpecificCssClasses(): string[];
|
|
@@ -2932,6 +2989,8 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
2932
2989
|
selectionLimitReachedText(maxSelections: number | null | undefined): string;
|
|
2933
2990
|
onDetailAction(event: MouseEvent, item: EntityLookupViewModel): void;
|
|
2934
2991
|
private openDetailSurface;
|
|
2992
|
+
private hasNavigableDetailHref;
|
|
2993
|
+
private navigableDetailHref;
|
|
2935
2994
|
private tryOpenGovernedDetailSurface;
|
|
2936
2995
|
private itemSurfacesHref;
|
|
2937
2996
|
private selectDetailSurface;
|
|
@@ -2945,6 +3004,8 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
2945
3004
|
optionSecondaryText(option: LookupOption): string;
|
|
2946
3005
|
protected resolveRemoteOptionValue(option: OptionDTO<string | number>): EntityLookupResult<string | number>;
|
|
2947
3006
|
resetOptionText(): string;
|
|
3007
|
+
fieldLabel(): string;
|
|
3008
|
+
panelActionsAriaLabel(): string;
|
|
2948
3009
|
showQuickClear(): boolean;
|
|
2949
3010
|
onResetOptionClick(event: MouseEvent): void;
|
|
2950
3011
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
@@ -3017,8 +3078,10 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
3017
3078
|
private humanizeLookupDependencyField;
|
|
3018
3079
|
private lookupFilterValueText;
|
|
3019
3080
|
inlineTooltipText(): string;
|
|
3081
|
+
inlineTooltipDisabled(): boolean;
|
|
3020
3082
|
private resolveLookupText;
|
|
3021
3083
|
private lookupViewFromValue;
|
|
3084
|
+
private findKnownLookupOption;
|
|
3022
3085
|
private resolveLookupData;
|
|
3023
3086
|
private buildLookupPrimaryText;
|
|
3024
3087
|
private fallbackLookupText;
|
|
@@ -3057,6 +3120,11 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
3057
3120
|
private isPrimitiveLookupValue;
|
|
3058
3121
|
private asRecord;
|
|
3059
3122
|
private lookupOptionSource;
|
|
3123
|
+
private buildMetadataSignature;
|
|
3124
|
+
private stableMetadataHash;
|
|
3125
|
+
private metadataFunctionId;
|
|
3126
|
+
private hashParts;
|
|
3127
|
+
private hashText;
|
|
3060
3128
|
private resolveDetailHref;
|
|
3061
3129
|
private resolveDetailRoute;
|
|
3062
3130
|
private applyLookupTemplate;
|
|
@@ -3516,6 +3584,7 @@ declare class InlineCurrencyComponent extends SimpleBaseInputComponent {
|
|
|
3516
3584
|
inlineWidthPx: number;
|
|
3517
3585
|
inlineMaxWidthPx: number;
|
|
3518
3586
|
private resizeRafId;
|
|
3587
|
+
private displayFormatRafId;
|
|
3519
3588
|
private fieldLabelText;
|
|
3520
3589
|
private minValidator?;
|
|
3521
3590
|
private maxValidator?;
|
|
@@ -3569,8 +3638,10 @@ declare class InlineCurrencyComponent extends SimpleBaseInputComponent {
|
|
|
3569
3638
|
private allowNegative;
|
|
3570
3639
|
private applyMaskedInput;
|
|
3571
3640
|
private digitsToNumber;
|
|
3641
|
+
private normalizeDecimalPlaces;
|
|
3572
3642
|
private syncDigitsFromValue;
|
|
3573
3643
|
private formatDisplayValue;
|
|
3644
|
+
private scheduleDisplayFormat;
|
|
3574
3645
|
private formatDecimalValue;
|
|
3575
3646
|
private setCaretToEnd;
|
|
3576
3647
|
private detectNegative;
|
|
@@ -3740,6 +3811,7 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
|
3740
3811
|
private formatCurrency;
|
|
3741
3812
|
private currencyFormatter;
|
|
3742
3813
|
private resolveDecimalPlaces;
|
|
3814
|
+
private normalizeDecimalPlaces;
|
|
3743
3815
|
private allowNegative;
|
|
3744
3816
|
private recalculateInlineSizeBounds;
|
|
3745
3817
|
private resetFormatterCache;
|
|
@@ -3966,6 +4038,7 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
|
|
|
3966
4038
|
private usesCurrencyFormatting;
|
|
3967
4039
|
private usesPercentFormatting;
|
|
3968
4040
|
private resetFormatterCache;
|
|
4041
|
+
private normalizeDecimalPlaces;
|
|
3969
4042
|
private resetQuickPresetsCache;
|
|
3970
4043
|
private resetDistributionCache;
|
|
3971
4044
|
private resolveFieldLabelFromMetadata;
|
|
@@ -4130,15 +4203,30 @@ declare class InlineDateComponent extends MaterialDatepickerComponent {
|
|
|
4130
4203
|
}
|
|
4131
4204
|
|
|
4132
4205
|
type InlineDateQuickPresetApplyMode = 'auto' | 'confirm';
|
|
4206
|
+
type InlineDateQuickPresetPosition = 'auto' | 'footer' | 'start' | 'end';
|
|
4207
|
+
type InlineDateQuickPresetEffectivePosition = 'footer' | 'start' | 'end';
|
|
4133
4208
|
interface InlineDateQuickPreset {
|
|
4134
4209
|
id: string;
|
|
4135
4210
|
label: string;
|
|
4136
4211
|
icon?: string;
|
|
4212
|
+
description?: string;
|
|
4213
|
+
tone?: 'neutral' | 'info' | 'success' | 'warning';
|
|
4137
4214
|
disabled?: boolean;
|
|
4138
4215
|
rangeDescription?: string;
|
|
4216
|
+
timeZone?: string;
|
|
4139
4217
|
startDate: Date | null;
|
|
4140
4218
|
endDate: Date | null;
|
|
4141
4219
|
}
|
|
4220
|
+
interface InlineDateRangeSelectionSummary {
|
|
4221
|
+
ariaLabel: string;
|
|
4222
|
+
description?: string;
|
|
4223
|
+
endLabel: string;
|
|
4224
|
+
endValue: string;
|
|
4225
|
+
rangeDescription: string;
|
|
4226
|
+
startLabel: string;
|
|
4227
|
+
startValue: string;
|
|
4228
|
+
title: string;
|
|
4229
|
+
}
|
|
4142
4230
|
declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
4143
4231
|
pickerRef?: MatDateRangePicker<Date>;
|
|
4144
4232
|
startInputEl?: ElementRef<HTMLInputElement>;
|
|
@@ -4153,9 +4241,14 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4153
4241
|
private overlayCommittedInSession;
|
|
4154
4242
|
private overlayBaseline;
|
|
4155
4243
|
private draftPresetId;
|
|
4244
|
+
private draftPresetRange;
|
|
4245
|
+
private applyCommitTimeoutId;
|
|
4156
4246
|
private autoApplyCalendarClickTeardown;
|
|
4157
4247
|
private readonly overlayActionsContainerClass;
|
|
4158
4248
|
private readonly overlayActionsDensityClassPrefix;
|
|
4249
|
+
private readonly overlayActionsPositionClassPrefix;
|
|
4250
|
+
private readonly overlayContentPositionClassPrefix;
|
|
4251
|
+
private readonly overlayShortcutRailClass;
|
|
4159
4252
|
private readonly defaultInlineShortcutIds;
|
|
4160
4253
|
private currentMetadata;
|
|
4161
4254
|
setDateRangeMetadata(metadata: MaterialDateRangeMetadata): void;
|
|
@@ -4173,6 +4266,7 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4173
4266
|
showInlineQuickPresets(): boolean;
|
|
4174
4267
|
inlineQuickPresets(): InlineDateQuickPreset[];
|
|
4175
4268
|
private buildInlineQuickPresets;
|
|
4269
|
+
private toInlineQuickPreset;
|
|
4176
4270
|
quickPresetsAriaLabel(): string;
|
|
4177
4271
|
overlayCancelLabel(): string;
|
|
4178
4272
|
overlayApplyLabel(): string;
|
|
@@ -4184,13 +4278,18 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4184
4278
|
cancelPanelActionColorRole(): string;
|
|
4185
4279
|
applyPanelActionColorRole(): string;
|
|
4186
4280
|
shouldRenderOverlayActions(): boolean;
|
|
4281
|
+
shouldRenderSelectionSummary(): boolean;
|
|
4282
|
+
overlayDraftHasCompleteRange(): boolean;
|
|
4283
|
+
overlaySelectionSummary(): InlineDateRangeSelectionSummary;
|
|
4187
4284
|
inlineQuickPresetsApplyMode(): InlineDateQuickPresetApplyMode;
|
|
4188
4285
|
private inlineOverlayAction;
|
|
4286
|
+
private activeDraftPreset;
|
|
4189
4287
|
presetAriaLabel(preset: InlineDateQuickPreset): string;
|
|
4190
4288
|
presetTooltip(preset: InlineDateQuickPreset): string;
|
|
4191
4289
|
shouldShowPresetTooltip(preset: InlineDateQuickPreset): boolean;
|
|
4192
4290
|
isPresetActive(preset: InlineDateQuickPreset): boolean;
|
|
4193
4291
|
applyQuickPreset(preset: InlineDateQuickPreset, event: MouseEvent): void;
|
|
4292
|
+
private syncPickerSelectionModel;
|
|
4194
4293
|
isInteractionBlocked(): boolean;
|
|
4195
4294
|
showQuickClear(): boolean;
|
|
4196
4295
|
showInlinePlaceholder(): boolean;
|
|
@@ -4218,6 +4317,7 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4218
4317
|
displayText(): string;
|
|
4219
4318
|
shouldShowInlineExpandedLabel(): boolean;
|
|
4220
4319
|
private commitDateRangeValue;
|
|
4320
|
+
private clearApplyCommitTimeout;
|
|
4221
4321
|
private currentRangeGroupValue;
|
|
4222
4322
|
private cloneDateRangeValue;
|
|
4223
4323
|
private restoreBaselineSelection;
|
|
@@ -4232,6 +4332,10 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4232
4332
|
private resolveInlineQuickPresetConfig;
|
|
4233
4333
|
private parsePositiveInt;
|
|
4234
4334
|
private resolvePresetById;
|
|
4335
|
+
inlineQuickPresetsPosition(): InlineDateQuickPresetPosition;
|
|
4336
|
+
inlineQuickPresetsEffectivePosition(): InlineDateQuickPresetEffectivePosition;
|
|
4337
|
+
private normalizeInlineQuickPresetPosition;
|
|
4338
|
+
private canUseSideQuickPresetLayout;
|
|
4235
4339
|
private scheduleInlineResize;
|
|
4236
4340
|
private recalculateInlineWidth;
|
|
4237
4341
|
private resolveWidthBounds;
|
|
@@ -4240,6 +4344,10 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4240
4344
|
private scheduleOverlayActionsContainerSync;
|
|
4241
4345
|
private syncOverlayActionsContainerClass;
|
|
4242
4346
|
private findOverlayActionsContainer;
|
|
4347
|
+
private syncQuickPresetComposition;
|
|
4348
|
+
private ensureQuickPresetRail;
|
|
4349
|
+
private resolvePhysicalQuickPresetPosition;
|
|
4350
|
+
private resolveDocumentDirection;
|
|
4243
4351
|
private syncAutoApplyCalendarBinding;
|
|
4244
4352
|
private unbindAutoApplyCalendarBinding;
|
|
4245
4353
|
private onAutoApplyCalendarInteraction;
|
|
@@ -4315,6 +4423,7 @@ declare class InlineTimeComponent extends MaterialTimepickerComponent {
|
|
|
4315
4423
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
4316
4424
|
isInteractionBlocked(): boolean;
|
|
4317
4425
|
showQuickClear(): boolean;
|
|
4426
|
+
showPanelToggle(): boolean;
|
|
4318
4427
|
hasInlineValue(): boolean;
|
|
4319
4428
|
showInlinePlaceholder(): boolean;
|
|
4320
4429
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
@@ -4367,7 +4476,6 @@ declare class InlineTimeComponent extends MaterialTimepickerComponent {
|
|
|
4367
4476
|
private recalculateInlineWidth;
|
|
4368
4477
|
private resolveWidthBounds;
|
|
4369
4478
|
private resolveChromeWidth;
|
|
4370
|
-
private parsePx;
|
|
4371
4479
|
private resolveFieldLabelFromMetadata;
|
|
4372
4480
|
private normalizeControlValue;
|
|
4373
4481
|
private resolveDisplayTime;
|
|
@@ -4627,6 +4735,8 @@ declare class InlineTreeSelectComponent extends SimpleBaseSelectComponent {
|
|
|
4627
4735
|
selectNode(node: MaterialTreeNode): void;
|
|
4628
4736
|
isSelected(node: MaterialTreeNode): boolean;
|
|
4629
4737
|
isNodeDisabled(node: MaterialTreeNode): boolean;
|
|
4738
|
+
isNodeSelectionOnlyDisabled(node: MaterialTreeNode): boolean;
|
|
4739
|
+
private isNodeSelectionBlocked;
|
|
4630
4740
|
handleKeydown(event: KeyboardEvent, node: MaterialTreeNode): void;
|
|
4631
4741
|
filteredTreeCount(): number;
|
|
4632
4742
|
emptyStateText(): string;
|
|
@@ -4685,6 +4795,12 @@ declare class InlineRatingComponent extends InlineRangeSliderComponent {
|
|
|
4685
4795
|
slotTone(slot: number): InlineRatingTone;
|
|
4686
4796
|
slotColor(slot: number): string;
|
|
4687
4797
|
isSlotInSelectedRange(slot: number): boolean;
|
|
4798
|
+
ratingStarIconName(slot: number): string;
|
|
4799
|
+
ratingStarSelectionAriaLabel(slot: number): string;
|
|
4800
|
+
onRatingStarClick(slot: number, event: MouseEvent): void;
|
|
4801
|
+
ratingValueForStarSelection(slot: number, chooseHalf: boolean): number;
|
|
4802
|
+
selectRatingValue(value: number): void;
|
|
4803
|
+
private ratingStarFill;
|
|
4688
4804
|
selectedStartLabel(): string;
|
|
4689
4805
|
selectedEndLabel(): string;
|
|
4690
4806
|
ratingStarsAriaLabel(): string;
|
|
@@ -4705,6 +4821,7 @@ declare class InlineRatingComponent extends InlineRangeSliderComponent {
|
|
|
4705
4821
|
private clampValue;
|
|
4706
4822
|
private formatRatingValue;
|
|
4707
4823
|
private resolveAllowHalfFlag;
|
|
4824
|
+
private supportsHalfStarSelection;
|
|
4708
4825
|
private resolveColorToken;
|
|
4709
4826
|
private parseColorPalette;
|
|
4710
4827
|
private resolveRatingLabelFromMetadata;
|
|
@@ -5975,6 +6092,7 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent i
|
|
|
5975
6092
|
onCheckboxControlKeydown(event: KeyboardEvent): void;
|
|
5976
6093
|
private syncDisabledModeControlState;
|
|
5977
6094
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
6095
|
+
setExternalControl(control: AbstractControl): void;
|
|
5978
6096
|
/** Disables options when maxSelections reached */
|
|
5979
6097
|
isOptionDisabled(option: SelectOption<unknown>): boolean;
|
|
5980
6098
|
protected getSpecificCssClasses(): string[];
|
|
@@ -6010,6 +6128,8 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent i
|
|
|
6010
6128
|
private shouldToggleFromBooleanContent;
|
|
6011
6129
|
private shouldToggleFromMultipleContent;
|
|
6012
6130
|
private toggleBooleanCheckbox;
|
|
6131
|
+
private normalizeBooleanControlValue;
|
|
6132
|
+
private coerceBooleanControlValue;
|
|
6013
6133
|
private syncBooleanOperationalEvents;
|
|
6014
6134
|
private humanizeName;
|
|
6015
6135
|
optionLabelId(option: SelectOption<unknown>): string;
|
|
@@ -6061,17 +6181,22 @@ declare class MaterialSelectionListComponent extends SimpleBaseSelectComponent i
|
|
|
6061
6181
|
}
|
|
6062
6182
|
|
|
6063
6183
|
/**
|
|
6064
|
-
*
|
|
6184
|
+
* Baseline file upload field.
|
|
6065
6185
|
*
|
|
6066
|
-
*
|
|
6067
|
-
*
|
|
6068
|
-
*
|
|
6186
|
+
* This component owns local file selection, validation and preview. Persisting
|
|
6187
|
+
* the selected file remains a host/backend concern; use @praxisui/files-upload
|
|
6188
|
+
* when the flow needs presign, progress, conflict policy or storage events.
|
|
6069
6189
|
*/
|
|
6070
|
-
declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
|
|
6190
|
+
declare class MaterialFileUploadComponent extends SimpleBaseInputComponent implements OnDestroy {
|
|
6071
6191
|
readonlyMode: boolean;
|
|
6072
6192
|
disabledMode: boolean;
|
|
6073
6193
|
visible: boolean;
|
|
6074
6194
|
presentationMode: boolean;
|
|
6195
|
+
readonly selectedFiles: _angular_core.WritableSignal<File[]>;
|
|
6196
|
+
readonly previewUrl: _angular_core.WritableSignal<string | null>;
|
|
6197
|
+
private externalValueSyncSubscription;
|
|
6198
|
+
readonly selectedSummaryText: _angular_core.Signal<string>;
|
|
6199
|
+
readonly selectedDetailText: _angular_core.Signal<string>;
|
|
6075
6200
|
/**
|
|
6076
6201
|
* Updates the control value when the user selects a file.
|
|
6077
6202
|
*/
|
|
@@ -6082,12 +6207,41 @@ declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
|
|
|
6082
6207
|
setFileUploadMetadata(metadata: ComponentMetadata): void;
|
|
6083
6208
|
fileAccept(): string | null;
|
|
6084
6209
|
allowsMultiple(): boolean;
|
|
6210
|
+
imagePreviewEnabled(): boolean;
|
|
6085
6211
|
isInteractionDisabled(): boolean;
|
|
6212
|
+
clearSelectedFiles(options?: {
|
|
6213
|
+
resetInput?: boolean;
|
|
6214
|
+
}): void;
|
|
6215
|
+
clearLabel(): string;
|
|
6216
|
+
clearAriaLabel(): string;
|
|
6217
|
+
selectedSummaryAriaLabel(): string;
|
|
6218
|
+
fileInputDescribedBy(): string | null;
|
|
6219
|
+
hintId(): string;
|
|
6220
|
+
errorId(): string;
|
|
6221
|
+
previewAltText(): string;
|
|
6222
|
+
writeValue(value: unknown): void;
|
|
6223
|
+
ngOnDestroy(): void;
|
|
6086
6224
|
/**
|
|
6087
6225
|
* CSS classes specific to the file upload wrapper.
|
|
6088
6226
|
*/
|
|
6089
6227
|
protected getSpecificCssClasses(): string[];
|
|
6228
|
+
protected onActiveControlChanged(previousControl: FormControl, currentControl: FormControl): void;
|
|
6090
6229
|
private metadataRecord;
|
|
6230
|
+
private updatePreview;
|
|
6231
|
+
private clearPreview;
|
|
6232
|
+
private validateSelectedFiles;
|
|
6233
|
+
private isAcceptedFile;
|
|
6234
|
+
private maxFileSize;
|
|
6235
|
+
private maxFiles;
|
|
6236
|
+
private applyFileError;
|
|
6237
|
+
private clearFileErrors;
|
|
6238
|
+
private syncSelectedFilesFromValue;
|
|
6239
|
+
private extractFilesFromValue;
|
|
6240
|
+
private isFile;
|
|
6241
|
+
private isImageFile;
|
|
6242
|
+
private hasKnownImageExtension;
|
|
6243
|
+
private formatBytes;
|
|
6244
|
+
private dynamicFieldsText;
|
|
6091
6245
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialFileUploadComponent, never>;
|
|
6092
6246
|
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
6247
|
}
|
|
@@ -6874,8 +7028,14 @@ declare const PDX_MATERIAL_RADIO_GROUP_COMPONENT_METADATA: ComponentDocMeta;
|
|
|
6874
7028
|
|
|
6875
7029
|
declare const PDX_MATERIAL_SEARCHABLE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
6876
7030
|
|
|
7031
|
+
declare const PDX_MATERIAL_ASYNC_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
7032
|
+
|
|
7033
|
+
declare const PDX_MATERIAL_AUTOCOMPLETE_COMPONENT_METADATA: ComponentDocMeta;
|
|
7034
|
+
|
|
6877
7035
|
declare const PDX_MATERIAL_SELECTION_LIST_COMPONENT_METADATA: ComponentDocMeta;
|
|
6878
7036
|
|
|
7037
|
+
declare const PDX_MATERIAL_SLIDE_TOGGLE_COMPONENT_METADATA: ComponentDocMeta;
|
|
7038
|
+
|
|
6879
7039
|
declare const PDX_MATERIAL_TRANSFER_LIST_COMPONENT_METADATA: ComponentDocMeta;
|
|
6880
7040
|
|
|
6881
7041
|
declare const PDX_MATERIAL_TREE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
@@ -7592,5 +7752,5 @@ declare function normalizeFormMetadata(input: FieldMetadata[] | JsonSchema): Fie
|
|
|
7592
7752
|
declare const CLEAR_BUTTON_CONTROL_TYPES: Set<string>;
|
|
7593
7753
|
declare function supportsClearButtonControlType(controlType?: string | null): boolean;
|
|
7594
7754
|
|
|
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 };
|
|
7755
|
+
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
7756
|
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 };
|