@praxisui/dynamic-fields 9.0.0-beta.9 → 9.0.0-beta.90
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 +279542 -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 +48 -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 +3201 -1107
- 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 +178 -13
|
@@ -3,7 +3,7 @@ import { WritableSignal, InjectionToken, Provider, OnInit, OnDestroy, AfterViewI
|
|
|
3
3
|
import { AbstractControl, ControlValueAccessor, NgControl, ValidationErrors, FormControl, FormGroup, FormArray, FormGroupDirective, NgForm } from '@angular/forms';
|
|
4
4
|
import { Observable, BehaviorSubject, Subscription } from 'rxjs';
|
|
5
5
|
import * as _praxisui_core from '@praxisui/core';
|
|
6
|
-
import { ComponentMetadata, PraxisTextValue, PraxisI18nDictionary, PraxisI18nConfig, PraxisI18nMessageDescriptor, PraxisI18nService, GlobalActionService, GlobalActionRef, OptionSourceMetadata, GenericCrudService, GlobalConfigService, OptionDTO, ComponentMetadataEditorialDescriptor, ComponentDocMeta, ComponentMetadataRegistry, FieldMetadata, MaterialButtonMetadata, FieldArrayConfig, MaterialInputMetadata, MaterialColorInputMetadata, MaterialDateInputMetadata, MaterialDatepickerMetadata, MaterialDateRangeMetadata, DateRangePreset, DateRangeValue, MaterialDatetimeLocalInputMetadata, MaterialEmailInputMetadata, MaterialTextareaMetadata, MaterialNumericMetadata, MaterialCurrencyMetadata, MaterialCpfCnpjMetadata, MaterialPriceRangeMetadata, MaterialMonthInputMetadata, MaterialPasswordMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, LookupFilterRequest, LookupFilteringMetadata, LookupSortOptionMetadata, LookupFilterDefinitionMetadata, MaterialEntityLookupMetadata, LookupStatusTone, EntityLookupResultState, EntityLookupResult, LookupDialogMetadata, LookupFilterOperator, LookupFilterFieldType, LookupResultColumnMetadata, MaterialAutocompleteMetadata, RangeSliderMark, RangeSliderSemanticTone, MaterialToggleMetadata, MaterialRangeSliderMetadata, RangeSliderValue, InlinePeriodRangeMetadata, FieldControlType, MaterialTimepickerMetadata, MaterialTimeRangeMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialMultiSelectTreeMetadata, MaterialChipsMetadata, RangeSliderSemanticBand, MaterialSliderMetadata, MaterialPhoneMetadata, MaterialTimeInputMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialColorPickerMetadata, MaterialYearInputMetadata, CapabilityCatalog, ComponentAuthoringManifest, ManifestControlProfile } from '@praxisui/core';
|
|
6
|
+
import { ComponentMetadata, PraxisTextValue, PraxisI18nDictionary, PraxisI18nConfig, PraxisI18nMessageDescriptor, PraxisI18nService, FormFieldHelpDisplay, GlobalActionService, GlobalActionRef, OptionSourceMetadata, GenericCrudService, GlobalConfigService, OptionDTO, ComponentMetadataEditorialDescriptor, ComponentDocMeta, ComponentMetadataRegistry, FieldMetadata, MaterialButtonMetadata, FieldArrayConfig, MaterialInputMetadata, MaterialColorInputMetadata, MaterialDateInputMetadata, MaterialDatepickerMetadata, MaterialDateRangeMetadata, DateRangePreset, DateRangeShortcutPreset, StaticPresetResolutionOptions, StaticDateRangePreset, DateRangeValue, MaterialDatetimeLocalInputMetadata, MaterialEmailInputMetadata, MaterialTextareaMetadata, MaterialNumericMetadata, MaterialCurrencyMetadata, MaterialCpfCnpjMetadata, MaterialPriceRangeMetadata, MaterialMonthInputMetadata, MaterialPasswordMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, LookupFilterRequest, LookupFilteringMetadata, LookupSortOptionMetadata, LookupFilterDefinitionMetadata, MaterialEntityLookupMetadata, LookupStatusTone, EntityLookupResultState, EntityLookupResult, LookupDialogMetadata, LookupFilterOperator, LookupFilterFieldType, LookupResultColumnMetadata, MaterialAutocompleteMetadata, RangeSliderMark, RangeSliderSemanticTone, MaterialToggleMetadata, MaterialRangeSliderMetadata, RangeSliderValue, InlinePeriodRangeMetadata, FieldControlType, MaterialTimepickerMetadata, MaterialTimeRangeMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialMultiSelectTreeMetadata, MaterialChipsMetadata, RangeSliderSemanticBand, MaterialSliderMetadata, MaterialPhoneMetadata, MaterialTimeInputMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialColorPickerMetadata, MaterialYearInputMetadata, CapabilityCatalog, ComponentAuthoringManifest, ManifestControlProfile } from '@praxisui/core';
|
|
7
7
|
import { Router } from '@angular/router';
|
|
8
8
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
9
9
|
import { MatSelect } from '@angular/material/select';
|
|
@@ -241,6 +241,18 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
241
241
|
validation?: {
|
|
242
242
|
genericFailed?: PraxisDynamicFieldText;
|
|
243
243
|
};
|
|
244
|
+
fileUpload?: {
|
|
245
|
+
emptySummary?: PraxisDynamicFieldText;
|
|
246
|
+
multipleSummary?: PraxisDynamicFieldText;
|
|
247
|
+
clearSelection?: PraxisDynamicFieldText;
|
|
248
|
+
clearSelectionAriaLabel?: PraxisDynamicFieldText;
|
|
249
|
+
selectedSummaryAriaLabel?: PraxisDynamicFieldText;
|
|
250
|
+
previewAlt?: PraxisDynamicFieldText;
|
|
251
|
+
sizeUnitBytes?: PraxisDynamicFieldText;
|
|
252
|
+
sizeUnitKb?: PraxisDynamicFieldText;
|
|
253
|
+
sizeUnitMb?: PraxisDynamicFieldText;
|
|
254
|
+
sizeUnitGb?: PraxisDynamicFieldText;
|
|
255
|
+
};
|
|
244
256
|
select?: {
|
|
245
257
|
loadSchemaError?: PraxisDynamicFieldText;
|
|
246
258
|
loadOptionsError?: PraxisDynamicFieldText;
|
|
@@ -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;
|
|
@@ -1117,6 +1136,7 @@ declare abstract class SimpleBaseSelectComponent<T = any> extends SimpleBaseInpu
|
|
|
1117
1136
|
* Applies typed metadata to the select component.
|
|
1118
1137
|
*/
|
|
1119
1138
|
setSelectMetadata(metadata: SimpleSelectMetadata<T>): void;
|
|
1139
|
+
protected clearRemoteOptionSourceState(filterCriteria?: Record<string, any>): void;
|
|
1120
1140
|
private scheduleRemoteOptionsLoad;
|
|
1121
1141
|
protected setMetadata(metadata: ComponentMetadata): void;
|
|
1122
1142
|
protected registerMatSelect(select: MatSelect): void;
|
|
@@ -1168,6 +1188,7 @@ declare abstract class SimpleBaseSelectComponent<T = any> extends SimpleBaseInpu
|
|
|
1168
1188
|
loadingOptionsLabel(): string;
|
|
1169
1189
|
loadMoreOptionsLabel(): string;
|
|
1170
1190
|
endOfOptionsLabel(): string;
|
|
1191
|
+
selectPanelActionsAriaLabel(): string;
|
|
1171
1192
|
noOptionsAvailableLabel(): string;
|
|
1172
1193
|
loadingOptionsAriaLabel(): string;
|
|
1173
1194
|
/**
|
|
@@ -1271,6 +1292,12 @@ 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;
|
|
1298
|
+
/** Keeps every request aligned with the dependency values currently bound to the form. */
|
|
1299
|
+
protected synchronizeDependencyCriteriaFromControls(): void;
|
|
1300
|
+
private applyDependencyValues;
|
|
1274
1301
|
private getByPath;
|
|
1275
1302
|
private setByPath;
|
|
1276
1303
|
private unsetByPath;
|
|
@@ -1291,6 +1318,7 @@ declare class OptionStore<ID = string | number> {
|
|
|
1291
1318
|
ensureVisible(ids: ID[]): void;
|
|
1292
1319
|
clearPages(): void;
|
|
1293
1320
|
get items(): OptionDTO<ID>[];
|
|
1321
|
+
get pageItems(): OptionDTO<ID>[];
|
|
1294
1322
|
}
|
|
1295
1323
|
|
|
1296
1324
|
declare const PRAXIS_DYNAMIC_FIELDS_PT_BR: PraxisI18nDictionary;
|
|
@@ -1692,6 +1720,12 @@ declare class DynamicFieldLoaderDirective implements OnInit, OnDestroy, OnChange
|
|
|
1692
1720
|
* Aplica os estados globais aos shells já criados, sem re-render completo.
|
|
1693
1721
|
*/
|
|
1694
1722
|
private applyGlobalStates;
|
|
1723
|
+
refreshGlobalStates(states?: {
|
|
1724
|
+
readonlyMode?: boolean | null;
|
|
1725
|
+
disabledMode?: boolean | null;
|
|
1726
|
+
presentationMode?: boolean | null;
|
|
1727
|
+
visible?: boolean | null;
|
|
1728
|
+
}): void;
|
|
1695
1729
|
private applyShellEffectiveStatesToComponent;
|
|
1696
1730
|
/**
|
|
1697
1731
|
* Tenta inferir o controlType a partir do próprio field.
|
|
@@ -2011,6 +2045,7 @@ interface DateRangeShortcutItem {
|
|
|
2011
2045
|
disabled?: boolean;
|
|
2012
2046
|
description?: string;
|
|
2013
2047
|
rangeDescription?: string;
|
|
2048
|
+
tone?: 'neutral' | 'info' | 'success' | 'warning';
|
|
2014
2049
|
}
|
|
2015
2050
|
|
|
2016
2051
|
/**
|
|
@@ -2069,6 +2104,10 @@ declare class MaterialDateRangeComponent extends SimpleBaseInputComponent implem
|
|
|
2069
2104
|
closeShortcuts(): void;
|
|
2070
2105
|
onOverlayDetach(): void;
|
|
2071
2106
|
onSelectPreset(id: string): void;
|
|
2107
|
+
protected defaultDateRangeShortcutIds(): DateRangeShortcutPreset[];
|
|
2108
|
+
protected dateRangePresetResolutionOptions(): StaticPresetResolutionOptions;
|
|
2109
|
+
protected resolveShortcutPreset(shortcut: DateRangeShortcutPreset): DateRangePreset | null;
|
|
2110
|
+
protected asStaticShortcut(shortcut: DateRangeShortcutPreset): StaticDateRangePreset | null;
|
|
2072
2111
|
protected normalizeDateRangeValue(value: unknown): DateRangeValue | null;
|
|
2073
2112
|
private coerceDateLike;
|
|
2074
2113
|
private metadataAsField;
|
|
@@ -2584,8 +2623,14 @@ declare class MaterialSearchableSelectComponent extends SimpleBaseSelectComponen
|
|
|
2584
2623
|
private refreshOptions;
|
|
2585
2624
|
protected loadOptions(page?: number, searchTerm?: string, criteria?: Record<string, unknown>): void;
|
|
2586
2625
|
loadNextPage(): void;
|
|
2626
|
+
showLoadMore(): boolean;
|
|
2627
|
+
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
2628
|
+
shouldRenderOpenSentinel(): boolean;
|
|
2629
|
+
private isLastPage;
|
|
2630
|
+
onLoadMoreInteraction(event: Event): void;
|
|
2587
2631
|
onSearch(term: string): void;
|
|
2588
2632
|
protected registerMatSelect(select: MatSelect): void;
|
|
2633
|
+
private refocusSearchInput;
|
|
2589
2634
|
reload(reset: boolean): void;
|
|
2590
2635
|
protected onDependenciesChanged(): void;
|
|
2591
2636
|
private syncDisabledModeControlState;
|
|
@@ -2614,6 +2659,7 @@ declare class InlineSearchableSelectComponent extends MaterialSearchableSelectCo
|
|
|
2614
2659
|
onSearchInput(term: string): void;
|
|
2615
2660
|
onSearchInputEvent(event: Event): void;
|
|
2616
2661
|
showLoadMore(): boolean;
|
|
2662
|
+
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
2617
2663
|
showEndReachedMessage(): boolean;
|
|
2618
2664
|
onLoadMoreClick(event: MouseEvent): void;
|
|
2619
2665
|
placeholderText(): string;
|
|
@@ -2691,9 +2737,11 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2691
2737
|
searchInputAriaLabel(): string;
|
|
2692
2738
|
ngOnInit(): void;
|
|
2693
2739
|
onOpened(opened: boolean): void;
|
|
2740
|
+
protected hasCompletedInitialLoad(): boolean;
|
|
2694
2741
|
private getSelectedIds;
|
|
2695
2742
|
private preloadSelected;
|
|
2696
2743
|
private refreshOptions;
|
|
2744
|
+
private hasSearchTerm;
|
|
2697
2745
|
protected currentLookupFiltering(): LookupFilteringMetadata | null;
|
|
2698
2746
|
lookupSortOptions(): LookupSortOptionMetadata[];
|
|
2699
2747
|
lookupFilterDefinitions(): LookupFilterDefinitionMetadata[];
|
|
@@ -2711,9 +2759,14 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2711
2759
|
protected refreshLookupQueryState(): void;
|
|
2712
2760
|
private runQuery;
|
|
2713
2761
|
loadMore(): void;
|
|
2762
|
+
showLoadMore(): boolean;
|
|
2763
|
+
shouldRenderOpenSentinel(): boolean;
|
|
2764
|
+
private isLastPage;
|
|
2765
|
+
onLoadMoreInteraction(event: Event): void;
|
|
2714
2766
|
retry(): void;
|
|
2715
2767
|
handleKey(event: KeyboardEvent): void;
|
|
2716
2768
|
protected registerMatSelect(select: MatSelect): void;
|
|
2769
|
+
private refocusSearchInput;
|
|
2717
2770
|
reload(reset: boolean): void;
|
|
2718
2771
|
protected setupRemoteSelectionHydration(): void;
|
|
2719
2772
|
protected onDependenciesChanged(): void;
|
|
@@ -2725,6 +2778,8 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2725
2778
|
protected resolveRemoteOptionDisabled(option: AsyncOption): boolean;
|
|
2726
2779
|
protected areOptionValuesEqual(left: unknown, right: unknown): boolean;
|
|
2727
2780
|
private normalizeRemoteOptionValue;
|
|
2781
|
+
protected hasRemoteOptionsContract(): boolean;
|
|
2782
|
+
private clearRemoteConfiguration;
|
|
2728
2783
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialAsyncSelectComponent, never>;
|
|
2729
2784
|
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
2785
|
}
|
|
@@ -2773,6 +2828,7 @@ declare class InlineAsyncSelectComponent extends MaterialAsyncSelectComponent {
|
|
|
2773
2828
|
onSearchInputEvent(event: Event): void;
|
|
2774
2829
|
onSearchInput(term: string): void;
|
|
2775
2830
|
showLoadMore(): boolean;
|
|
2831
|
+
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
2776
2832
|
showEndReachedMessage(): boolean;
|
|
2777
2833
|
onLoadMoreClick(event: MouseEvent): void;
|
|
2778
2834
|
placeholderText(): string;
|
|
@@ -2858,19 +2914,22 @@ type EntityLookupMetadata = MaterialEntityLookupMetadata & {
|
|
|
2858
2914
|
density?: string;
|
|
2859
2915
|
};
|
|
2860
2916
|
declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
2917
|
+
private readonly detailServiceInjector;
|
|
2861
2918
|
private readonly dialog;
|
|
2862
|
-
private readonly globalActions;
|
|
2863
|
-
private readonly resourceDiscovery;
|
|
2864
|
-
private readonly surfaceOpenAdapter;
|
|
2865
2919
|
inlineMinWidthPx: number;
|
|
2866
2920
|
inlineMaxWidthPx: number;
|
|
2867
2921
|
private fieldLabelText;
|
|
2868
2922
|
private staticOptions;
|
|
2923
|
+
private lastAppliedSelectMetadata;
|
|
2924
|
+
private lastSelectMetadataSignature;
|
|
2925
|
+
private readonly metadataFunctionIds;
|
|
2926
|
+
private nextMetadataFunctionId;
|
|
2869
2927
|
set initialMetadata(metadata: MaterialEntityLookupMetadata | null | undefined);
|
|
2870
2928
|
private currentMetadata;
|
|
2871
2929
|
setSelectMetadata(metadata: EntityLookupMetadata): void;
|
|
2872
2930
|
protected setMetadata(metadata: MaterialSelectMetadata): void;
|
|
2873
2931
|
onComponentInit(): void;
|
|
2932
|
+
onLookupHostClick(event: MouseEvent): void;
|
|
2874
2933
|
onViewportResize(): void;
|
|
2875
2934
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2876
2935
|
protected getSpecificCssClasses(): string[];
|
|
@@ -2878,6 +2937,7 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
2878
2937
|
hasSelection(): boolean;
|
|
2879
2938
|
selectedCount(): number;
|
|
2880
2939
|
displayText(): string;
|
|
2940
|
+
private hasPendingLocalSelection;
|
|
2881
2941
|
richLayoutEnabled(): boolean;
|
|
2882
2942
|
selectedCardLayout(): boolean;
|
|
2883
2943
|
selectedCompactLayout(): boolean;
|
|
@@ -2932,6 +2992,8 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
2932
2992
|
selectionLimitReachedText(maxSelections: number | null | undefined): string;
|
|
2933
2993
|
onDetailAction(event: MouseEvent, item: EntityLookupViewModel): void;
|
|
2934
2994
|
private openDetailSurface;
|
|
2995
|
+
private hasNavigableDetailHref;
|
|
2996
|
+
private navigableDetailHref;
|
|
2935
2997
|
private tryOpenGovernedDetailSurface;
|
|
2936
2998
|
private itemSurfacesHref;
|
|
2937
2999
|
private selectDetailSurface;
|
|
@@ -2945,6 +3007,8 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
2945
3007
|
optionSecondaryText(option: LookupOption): string;
|
|
2946
3008
|
protected resolveRemoteOptionValue(option: OptionDTO<string | number>): EntityLookupResult<string | number>;
|
|
2947
3009
|
resetOptionText(): string;
|
|
3010
|
+
fieldLabel(): string;
|
|
3011
|
+
panelActionsAriaLabel(): string;
|
|
2948
3012
|
showQuickClear(): boolean;
|
|
2949
3013
|
onResetOptionClick(event: MouseEvent): void;
|
|
2950
3014
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
@@ -3004,7 +3068,7 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
3004
3068
|
panelSearchIconColor(): string | undefined;
|
|
3005
3069
|
panelResetIconName(fallback?: string): string;
|
|
3006
3070
|
panelResetIconColor(): string | undefined;
|
|
3007
|
-
ariaLabel(): string;
|
|
3071
|
+
ariaLabel(): string | null;
|
|
3008
3072
|
interactionDisabled(): boolean;
|
|
3009
3073
|
readonlySummaryText(): string;
|
|
3010
3074
|
private lookupDialogMetadata;
|
|
@@ -3017,8 +3081,10 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
3017
3081
|
private humanizeLookupDependencyField;
|
|
3018
3082
|
private lookupFilterValueText;
|
|
3019
3083
|
inlineTooltipText(): string;
|
|
3084
|
+
inlineTooltipDisabled(): boolean;
|
|
3020
3085
|
private resolveLookupText;
|
|
3021
3086
|
private lookupViewFromValue;
|
|
3087
|
+
private findKnownLookupOption;
|
|
3022
3088
|
private resolveLookupData;
|
|
3023
3089
|
private buildLookupPrimaryText;
|
|
3024
3090
|
private fallbackLookupText;
|
|
@@ -3057,6 +3123,11 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
3057
3123
|
private isPrimitiveLookupValue;
|
|
3058
3124
|
private asRecord;
|
|
3059
3125
|
private lookupOptionSource;
|
|
3126
|
+
private buildMetadataSignature;
|
|
3127
|
+
private stableMetadataHash;
|
|
3128
|
+
private metadataFunctionId;
|
|
3129
|
+
private hashParts;
|
|
3130
|
+
private hashText;
|
|
3060
3131
|
private resolveDetailHref;
|
|
3061
3132
|
private resolveDetailRoute;
|
|
3062
3133
|
private applyLookupTemplate;
|
|
@@ -3516,6 +3587,7 @@ declare class InlineCurrencyComponent extends SimpleBaseInputComponent {
|
|
|
3516
3587
|
inlineWidthPx: number;
|
|
3517
3588
|
inlineMaxWidthPx: number;
|
|
3518
3589
|
private resizeRafId;
|
|
3590
|
+
private displayFormatRafId;
|
|
3519
3591
|
private fieldLabelText;
|
|
3520
3592
|
private minValidator?;
|
|
3521
3593
|
private maxValidator?;
|
|
@@ -3569,8 +3641,10 @@ declare class InlineCurrencyComponent extends SimpleBaseInputComponent {
|
|
|
3569
3641
|
private allowNegative;
|
|
3570
3642
|
private applyMaskedInput;
|
|
3571
3643
|
private digitsToNumber;
|
|
3644
|
+
private normalizeDecimalPlaces;
|
|
3572
3645
|
private syncDigitsFromValue;
|
|
3573
3646
|
private formatDisplayValue;
|
|
3647
|
+
private scheduleDisplayFormat;
|
|
3574
3648
|
private formatDecimalValue;
|
|
3575
3649
|
private setCaretToEnd;
|
|
3576
3650
|
private detectNegative;
|
|
@@ -3740,6 +3814,7 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
|
3740
3814
|
private formatCurrency;
|
|
3741
3815
|
private currencyFormatter;
|
|
3742
3816
|
private resolveDecimalPlaces;
|
|
3817
|
+
private normalizeDecimalPlaces;
|
|
3743
3818
|
private allowNegative;
|
|
3744
3819
|
private recalculateInlineSizeBounds;
|
|
3745
3820
|
private resetFormatterCache;
|
|
@@ -3966,6 +4041,7 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
|
|
|
3966
4041
|
private usesCurrencyFormatting;
|
|
3967
4042
|
private usesPercentFormatting;
|
|
3968
4043
|
private resetFormatterCache;
|
|
4044
|
+
private normalizeDecimalPlaces;
|
|
3969
4045
|
private resetQuickPresetsCache;
|
|
3970
4046
|
private resetDistributionCache;
|
|
3971
4047
|
private resolveFieldLabelFromMetadata;
|
|
@@ -4130,15 +4206,30 @@ declare class InlineDateComponent extends MaterialDatepickerComponent {
|
|
|
4130
4206
|
}
|
|
4131
4207
|
|
|
4132
4208
|
type InlineDateQuickPresetApplyMode = 'auto' | 'confirm';
|
|
4209
|
+
type InlineDateQuickPresetPosition = 'auto' | 'footer' | 'start' | 'end';
|
|
4210
|
+
type InlineDateQuickPresetEffectivePosition = 'footer' | 'start' | 'end';
|
|
4133
4211
|
interface InlineDateQuickPreset {
|
|
4134
4212
|
id: string;
|
|
4135
4213
|
label: string;
|
|
4136
4214
|
icon?: string;
|
|
4215
|
+
description?: string;
|
|
4216
|
+
tone?: 'neutral' | 'info' | 'success' | 'warning';
|
|
4137
4217
|
disabled?: boolean;
|
|
4138
4218
|
rangeDescription?: string;
|
|
4219
|
+
timeZone?: string;
|
|
4139
4220
|
startDate: Date | null;
|
|
4140
4221
|
endDate: Date | null;
|
|
4141
4222
|
}
|
|
4223
|
+
interface InlineDateRangeSelectionSummary {
|
|
4224
|
+
ariaLabel: string;
|
|
4225
|
+
description?: string;
|
|
4226
|
+
endLabel: string;
|
|
4227
|
+
endValue: string;
|
|
4228
|
+
rangeDescription: string;
|
|
4229
|
+
startLabel: string;
|
|
4230
|
+
startValue: string;
|
|
4231
|
+
title: string;
|
|
4232
|
+
}
|
|
4142
4233
|
declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
4143
4234
|
pickerRef?: MatDateRangePicker<Date>;
|
|
4144
4235
|
startInputEl?: ElementRef<HTMLInputElement>;
|
|
@@ -4153,9 +4244,14 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4153
4244
|
private overlayCommittedInSession;
|
|
4154
4245
|
private overlayBaseline;
|
|
4155
4246
|
private draftPresetId;
|
|
4247
|
+
private draftPresetRange;
|
|
4248
|
+
private applyCommitTimeoutId;
|
|
4156
4249
|
private autoApplyCalendarClickTeardown;
|
|
4157
4250
|
private readonly overlayActionsContainerClass;
|
|
4158
4251
|
private readonly overlayActionsDensityClassPrefix;
|
|
4252
|
+
private readonly overlayActionsPositionClassPrefix;
|
|
4253
|
+
private readonly overlayContentPositionClassPrefix;
|
|
4254
|
+
private readonly overlayShortcutRailClass;
|
|
4159
4255
|
private readonly defaultInlineShortcutIds;
|
|
4160
4256
|
private currentMetadata;
|
|
4161
4257
|
setDateRangeMetadata(metadata: MaterialDateRangeMetadata): void;
|
|
@@ -4173,6 +4269,7 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4173
4269
|
showInlineQuickPresets(): boolean;
|
|
4174
4270
|
inlineQuickPresets(): InlineDateQuickPreset[];
|
|
4175
4271
|
private buildInlineQuickPresets;
|
|
4272
|
+
private toInlineQuickPreset;
|
|
4176
4273
|
quickPresetsAriaLabel(): string;
|
|
4177
4274
|
overlayCancelLabel(): string;
|
|
4178
4275
|
overlayApplyLabel(): string;
|
|
@@ -4184,13 +4281,18 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4184
4281
|
cancelPanelActionColorRole(): string;
|
|
4185
4282
|
applyPanelActionColorRole(): string;
|
|
4186
4283
|
shouldRenderOverlayActions(): boolean;
|
|
4284
|
+
shouldRenderSelectionSummary(): boolean;
|
|
4285
|
+
overlayDraftHasCompleteRange(): boolean;
|
|
4286
|
+
overlaySelectionSummary(): InlineDateRangeSelectionSummary;
|
|
4187
4287
|
inlineQuickPresetsApplyMode(): InlineDateQuickPresetApplyMode;
|
|
4188
4288
|
private inlineOverlayAction;
|
|
4289
|
+
private activeDraftPreset;
|
|
4189
4290
|
presetAriaLabel(preset: InlineDateQuickPreset): string;
|
|
4190
4291
|
presetTooltip(preset: InlineDateQuickPreset): string;
|
|
4191
4292
|
shouldShowPresetTooltip(preset: InlineDateQuickPreset): boolean;
|
|
4192
4293
|
isPresetActive(preset: InlineDateQuickPreset): boolean;
|
|
4193
4294
|
applyQuickPreset(preset: InlineDateQuickPreset, event: MouseEvent): void;
|
|
4295
|
+
private syncPickerSelectionModel;
|
|
4194
4296
|
isInteractionBlocked(): boolean;
|
|
4195
4297
|
showQuickClear(): boolean;
|
|
4196
4298
|
showInlinePlaceholder(): boolean;
|
|
@@ -4218,6 +4320,7 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4218
4320
|
displayText(): string;
|
|
4219
4321
|
shouldShowInlineExpandedLabel(): boolean;
|
|
4220
4322
|
private commitDateRangeValue;
|
|
4323
|
+
private clearApplyCommitTimeout;
|
|
4221
4324
|
private currentRangeGroupValue;
|
|
4222
4325
|
private cloneDateRangeValue;
|
|
4223
4326
|
private restoreBaselineSelection;
|
|
@@ -4232,6 +4335,10 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4232
4335
|
private resolveInlineQuickPresetConfig;
|
|
4233
4336
|
private parsePositiveInt;
|
|
4234
4337
|
private resolvePresetById;
|
|
4338
|
+
inlineQuickPresetsPosition(): InlineDateQuickPresetPosition;
|
|
4339
|
+
inlineQuickPresetsEffectivePosition(): InlineDateQuickPresetEffectivePosition;
|
|
4340
|
+
private normalizeInlineQuickPresetPosition;
|
|
4341
|
+
private canUseSideQuickPresetLayout;
|
|
4235
4342
|
private scheduleInlineResize;
|
|
4236
4343
|
private recalculateInlineWidth;
|
|
4237
4344
|
private resolveWidthBounds;
|
|
@@ -4240,6 +4347,10 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
4240
4347
|
private scheduleOverlayActionsContainerSync;
|
|
4241
4348
|
private syncOverlayActionsContainerClass;
|
|
4242
4349
|
private findOverlayActionsContainer;
|
|
4350
|
+
private syncQuickPresetComposition;
|
|
4351
|
+
private ensureQuickPresetRail;
|
|
4352
|
+
private resolvePhysicalQuickPresetPosition;
|
|
4353
|
+
private resolveDocumentDirection;
|
|
4243
4354
|
private syncAutoApplyCalendarBinding;
|
|
4244
4355
|
private unbindAutoApplyCalendarBinding;
|
|
4245
4356
|
private onAutoApplyCalendarInteraction;
|
|
@@ -4315,6 +4426,7 @@ declare class InlineTimeComponent extends MaterialTimepickerComponent {
|
|
|
4315
4426
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
4316
4427
|
isInteractionBlocked(): boolean;
|
|
4317
4428
|
showQuickClear(): boolean;
|
|
4429
|
+
showPanelToggle(): boolean;
|
|
4318
4430
|
hasInlineValue(): boolean;
|
|
4319
4431
|
showInlinePlaceholder(): boolean;
|
|
4320
4432
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
@@ -4367,7 +4479,6 @@ declare class InlineTimeComponent extends MaterialTimepickerComponent {
|
|
|
4367
4479
|
private recalculateInlineWidth;
|
|
4368
4480
|
private resolveWidthBounds;
|
|
4369
4481
|
private resolveChromeWidth;
|
|
4370
|
-
private parsePx;
|
|
4371
4482
|
private resolveFieldLabelFromMetadata;
|
|
4372
4483
|
private normalizeControlValue;
|
|
4373
4484
|
private resolveDisplayTime;
|
|
@@ -4627,6 +4738,8 @@ declare class InlineTreeSelectComponent extends SimpleBaseSelectComponent {
|
|
|
4627
4738
|
selectNode(node: MaterialTreeNode): void;
|
|
4628
4739
|
isSelected(node: MaterialTreeNode): boolean;
|
|
4629
4740
|
isNodeDisabled(node: MaterialTreeNode): boolean;
|
|
4741
|
+
isNodeSelectionOnlyDisabled(node: MaterialTreeNode): boolean;
|
|
4742
|
+
private isNodeSelectionBlocked;
|
|
4630
4743
|
handleKeydown(event: KeyboardEvent, node: MaterialTreeNode): void;
|
|
4631
4744
|
filteredTreeCount(): number;
|
|
4632
4745
|
emptyStateText(): string;
|
|
@@ -4685,6 +4798,12 @@ declare class InlineRatingComponent extends InlineRangeSliderComponent {
|
|
|
4685
4798
|
slotTone(slot: number): InlineRatingTone;
|
|
4686
4799
|
slotColor(slot: number): string;
|
|
4687
4800
|
isSlotInSelectedRange(slot: number): boolean;
|
|
4801
|
+
ratingStarIconName(slot: number): string;
|
|
4802
|
+
ratingStarSelectionAriaLabel(slot: number): string;
|
|
4803
|
+
onRatingStarClick(slot: number, event: MouseEvent): void;
|
|
4804
|
+
ratingValueForStarSelection(slot: number, chooseHalf: boolean): number;
|
|
4805
|
+
selectRatingValue(value: number): void;
|
|
4806
|
+
private ratingStarFill;
|
|
4688
4807
|
selectedStartLabel(): string;
|
|
4689
4808
|
selectedEndLabel(): string;
|
|
4690
4809
|
ratingStarsAriaLabel(): string;
|
|
@@ -4705,6 +4824,7 @@ declare class InlineRatingComponent extends InlineRangeSliderComponent {
|
|
|
4705
4824
|
private clampValue;
|
|
4706
4825
|
private formatRatingValue;
|
|
4707
4826
|
private resolveAllowHalfFlag;
|
|
4827
|
+
private supportsHalfStarSelection;
|
|
4708
4828
|
private resolveColorToken;
|
|
4709
4829
|
private parseColorPalette;
|
|
4710
4830
|
private resolveRatingLabelFromMetadata;
|
|
@@ -5975,6 +6095,7 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent i
|
|
|
5975
6095
|
onCheckboxControlKeydown(event: KeyboardEvent): void;
|
|
5976
6096
|
private syncDisabledModeControlState;
|
|
5977
6097
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
6098
|
+
setExternalControl(control: AbstractControl): void;
|
|
5978
6099
|
/** Disables options when maxSelections reached */
|
|
5979
6100
|
isOptionDisabled(option: SelectOption<unknown>): boolean;
|
|
5980
6101
|
protected getSpecificCssClasses(): string[];
|
|
@@ -6010,6 +6131,8 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent i
|
|
|
6010
6131
|
private shouldToggleFromBooleanContent;
|
|
6011
6132
|
private shouldToggleFromMultipleContent;
|
|
6012
6133
|
private toggleBooleanCheckbox;
|
|
6134
|
+
private normalizeBooleanControlValue;
|
|
6135
|
+
private coerceBooleanControlValue;
|
|
6013
6136
|
private syncBooleanOperationalEvents;
|
|
6014
6137
|
private humanizeName;
|
|
6015
6138
|
optionLabelId(option: SelectOption<unknown>): string;
|
|
@@ -6061,17 +6184,22 @@ declare class MaterialSelectionListComponent extends SimpleBaseSelectComponent i
|
|
|
6061
6184
|
}
|
|
6062
6185
|
|
|
6063
6186
|
/**
|
|
6064
|
-
*
|
|
6187
|
+
* Baseline file upload field.
|
|
6065
6188
|
*
|
|
6066
|
-
*
|
|
6067
|
-
*
|
|
6068
|
-
*
|
|
6189
|
+
* This component owns local file selection, validation and preview. Persisting
|
|
6190
|
+
* the selected file remains a host/backend concern; use @praxisui/files-upload
|
|
6191
|
+
* when the flow needs presign, progress, conflict policy or storage events.
|
|
6069
6192
|
*/
|
|
6070
|
-
declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
|
|
6193
|
+
declare class MaterialFileUploadComponent extends SimpleBaseInputComponent implements OnDestroy {
|
|
6071
6194
|
readonlyMode: boolean;
|
|
6072
6195
|
disabledMode: boolean;
|
|
6073
6196
|
visible: boolean;
|
|
6074
6197
|
presentationMode: boolean;
|
|
6198
|
+
readonly selectedFiles: _angular_core.WritableSignal<File[]>;
|
|
6199
|
+
readonly previewUrl: _angular_core.WritableSignal<string | null>;
|
|
6200
|
+
private externalValueSyncSubscription;
|
|
6201
|
+
readonly selectedSummaryText: _angular_core.Signal<string>;
|
|
6202
|
+
readonly selectedDetailText: _angular_core.Signal<string>;
|
|
6075
6203
|
/**
|
|
6076
6204
|
* Updates the control value when the user selects a file.
|
|
6077
6205
|
*/
|
|
@@ -6082,12 +6210,41 @@ declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
|
|
|
6082
6210
|
setFileUploadMetadata(metadata: ComponentMetadata): void;
|
|
6083
6211
|
fileAccept(): string | null;
|
|
6084
6212
|
allowsMultiple(): boolean;
|
|
6213
|
+
imagePreviewEnabled(): boolean;
|
|
6085
6214
|
isInteractionDisabled(): boolean;
|
|
6215
|
+
clearSelectedFiles(options?: {
|
|
6216
|
+
resetInput?: boolean;
|
|
6217
|
+
}): void;
|
|
6218
|
+
clearLabel(): string;
|
|
6219
|
+
clearAriaLabel(): string;
|
|
6220
|
+
selectedSummaryAriaLabel(): string;
|
|
6221
|
+
fileInputDescribedBy(): string | null;
|
|
6222
|
+
hintId(): string;
|
|
6223
|
+
errorId(): string;
|
|
6224
|
+
previewAltText(): string;
|
|
6225
|
+
writeValue(value: unknown): void;
|
|
6226
|
+
ngOnDestroy(): void;
|
|
6086
6227
|
/**
|
|
6087
6228
|
* CSS classes specific to the file upload wrapper.
|
|
6088
6229
|
*/
|
|
6089
6230
|
protected getSpecificCssClasses(): string[];
|
|
6231
|
+
protected onActiveControlChanged(previousControl: FormControl, currentControl: FormControl): void;
|
|
6090
6232
|
private metadataRecord;
|
|
6233
|
+
private updatePreview;
|
|
6234
|
+
private clearPreview;
|
|
6235
|
+
private validateSelectedFiles;
|
|
6236
|
+
private isAcceptedFile;
|
|
6237
|
+
private maxFileSize;
|
|
6238
|
+
private maxFiles;
|
|
6239
|
+
private applyFileError;
|
|
6240
|
+
private clearFileErrors;
|
|
6241
|
+
private syncSelectedFilesFromValue;
|
|
6242
|
+
private extractFilesFromValue;
|
|
6243
|
+
private isFile;
|
|
6244
|
+
private isImageFile;
|
|
6245
|
+
private hasKnownImageExtension;
|
|
6246
|
+
private formatBytes;
|
|
6247
|
+
private dynamicFieldsText;
|
|
6091
6248
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialFileUploadComponent, never>;
|
|
6092
6249
|
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
6250
|
}
|
|
@@ -6615,7 +6772,8 @@ declare class PdxMaterialRangeSliderComponent extends SimpleBaseInputComponent i
|
|
|
6615
6772
|
readonly sliderSize: _angular_core.Signal<"small" | "large" | "medium">;
|
|
6616
6773
|
readonly markLabels: _angular_core.Signal<RangeSliderMark[]>;
|
|
6617
6774
|
readonly semanticBandViews: _angular_core.Signal<SliderSemanticBandView[]>;
|
|
6618
|
-
|
|
6775
|
+
private readonly distributionRevision;
|
|
6776
|
+
readonly distributionBars: _angular_core.Signal<SliderDistributionBar[]>;
|
|
6619
6777
|
disabledEffective(): boolean;
|
|
6620
6778
|
readonlyEffective(): boolean;
|
|
6621
6779
|
sliderInteractionDisabled(): boolean;
|
|
@@ -6736,6 +6894,7 @@ declare class MaterialTransferListComponent extends SimpleBaseSelectComponent {
|
|
|
6736
6894
|
}
|
|
6737
6895
|
|
|
6738
6896
|
declare class PdxYearInputComponent extends SimpleBaseInputComponent {
|
|
6897
|
+
private specificValidators;
|
|
6739
6898
|
private get meta();
|
|
6740
6899
|
readonly minYear: _angular_core.Signal<number | undefined>;
|
|
6741
6900
|
readonly maxYear: _angular_core.Signal<number | undefined>;
|
|
@@ -6874,8 +7033,14 @@ declare const PDX_MATERIAL_RADIO_GROUP_COMPONENT_METADATA: ComponentDocMeta;
|
|
|
6874
7033
|
|
|
6875
7034
|
declare const PDX_MATERIAL_SEARCHABLE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
6876
7035
|
|
|
7036
|
+
declare const PDX_MATERIAL_ASYNC_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
7037
|
+
|
|
7038
|
+
declare const PDX_MATERIAL_AUTOCOMPLETE_COMPONENT_METADATA: ComponentDocMeta;
|
|
7039
|
+
|
|
6877
7040
|
declare const PDX_MATERIAL_SELECTION_LIST_COMPONENT_METADATA: ComponentDocMeta;
|
|
6878
7041
|
|
|
7042
|
+
declare const PDX_MATERIAL_SLIDE_TOGGLE_COMPONENT_METADATA: ComponentDocMeta;
|
|
7043
|
+
|
|
6879
7044
|
declare const PDX_MATERIAL_TRANSFER_LIST_COMPONENT_METADATA: ComponentDocMeta;
|
|
6880
7045
|
|
|
6881
7046
|
declare const PDX_MATERIAL_TREE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
@@ -7592,5 +7757,5 @@ declare function normalizeFormMetadata(input: FieldMetadata[] | JsonSchema): Fie
|
|
|
7592
7757
|
declare const CLEAR_BUTTON_CONTROL_TYPES: Set<string>;
|
|
7593
7758
|
declare function supportsClearButtonControlType(controlType?: string | null): boolean;
|
|
7594
7759
|
|
|
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 };
|
|
7760
|
+
export { BRAZIL_INPUTS_AI_CAPABILITIES, CACHE_TTL, CHIPS_CONTROLS_AI_CAPABILITIES, CLEAR_BUTTON_CONTROL_TYPES, COLOR_CONTROLS_AI_CAPABILITIES, CONTROL_TYPE_AI_CATALOGS, ColorInputComponent, ComponentPreloaderService, ComponentRegistryService, ConfirmDialogComponent, DATE_CONTROLS_AI_CAPABILITIES, DISPLAY_ACTION_AI_CAPABILITIES, DYNAMIC_FIELDS_PLAYGROUND_CATALOG, DYNAMIC_FIELD_BASE_STATE_RECIPES, DYNAMIC_FIELD_DEFAULT_STATE_RECIPE, DYNAMIC_FIELD_DISABLED_STATE_RECIPE, DYNAMIC_FIELD_ERROR_STATE_RECIPE, DYNAMIC_FIELD_FILLED_STATE_RECIPE, DYNAMIC_FIELD_PRESENTATION_STATE_RECIPE, DYNAMIC_FIELD_READONLY_STATE_RECIPE, DateInputComponent, DateUtilsService, DatetimeLocalInputComponent, DynamicFieldLoaderDirective, EditableCollectionComponent, EmailInputComponent, EntityLookupDialogComponent, FILE_UPLOAD_AI_CAPABILITIES, InlineAsyncSelectComponent, InlineAutocompleteComponent, InlineColorLabelComponent, InlineCurrencyComponent, InlineCurrencyRangeComponent, InlineDateComponent, InlineDateRangeComponent, InlineDistanceRadiusComponent, InlineEntityLookupComponent, InlineInputComponent, InlineMonthRangeComponent, InlineMultiSelectComponent, InlineNumberComponent, InlinePeriodRangeComponent, InlinePipelineStatusComponent, InlineRangeSliderComponent, InlineRatingComponent, InlineRelativePeriodComponent, InlineScorePriorityComponent, InlineSearchableSelectComponent, InlineSelectComponent, InlineSentimentComponent, InlineTimeComponent, InlineTimeRangeComponent, InlineToggleComponent, InlineTreeSelectComponent, InlineYearRangeComponent, KeyboardShortcutService, LIST_CONTROLS_AI_CAPABILITIES, LoggerPresets, MAX_LOAD_ATTEMPTS, MaterialAsyncSelectComponent, MaterialAutocompleteComponent, MaterialAvatarComponent, MaterialButtonComponent, MaterialButtonToggleComponent, MaterialCheckboxGroupComponent, MaterialChipsComponent, MaterialColorPickerComponent, MaterialCpfCnpjInputComponent, MaterialCurrencyComponent, MaterialDateRangeComponent, MaterialDatepickerComponent, MaterialFileUploadComponent, MaterialMultiSelectComponent, MaterialMultiSelectTreeComponent, MaterialPriceRangeComponent, MaterialRadioGroupComponent, MaterialRatingComponent, MaterialSearchableSelectComponent, MaterialSelectComponent, MaterialSelectionListComponent, MaterialSlideToggleComponent, MaterialSliderComponent, MaterialTextareaComponent, MaterialTimepickerComponent, MaterialTransferListComponent, MaterialTreeSelectComponent, MonthInputComponent, NUMERIC_INPUTS_AI_CAPABILITIES, NumberInputComponent, OptionStore, PDX_COLOR_INPUT_COMPONENT_METADATA, PDX_COLOR_PICKER_COMPONENT_METADATA, PDX_DATETIME_LOCAL_INPUT_COMPONENT_METADATA, PDX_DATE_INPUT_COMPONENT_METADATA, PDX_EDITABLE_COLLECTION_COMPONENT_METADATA, PDX_EMAIL_INPUT_COMPONENT_METADATA, PDX_ENTITY_LOOKUP_COMPONENT_METADATA, PDX_FIELD_SHELL_COMPONENT_METADATA, PDX_INLINE_ASYNC_SELECT_COMPONENT_METADATA, PDX_INLINE_AUTOCOMPLETE_COMPONENT_METADATA, PDX_INLINE_COLOR_LABEL_COMPONENT_METADATA, PDX_INLINE_CURRENCY_COMPONENT_METADATA, PDX_INLINE_CURRENCY_RANGE_COMPONENT_METADATA, PDX_INLINE_DATE_COMPONENT_METADATA, PDX_INLINE_DATE_RANGE_COMPONENT_METADATA, PDX_INLINE_DISTANCE_RADIUS_COMPONENT_METADATA, PDX_INLINE_ENTITY_LOOKUP_COMPONENT_METADATA, PDX_INLINE_INPUT_COMPONENT_METADATA, PDX_INLINE_MONTH_RANGE_COMPONENT_METADATA, PDX_INLINE_MULTI_SELECT_COMPONENT_METADATA, PDX_INLINE_NUMBER_COMPONENT_METADATA, PDX_INLINE_PERIOD_RANGE_COMPONENT_METADATA, PDX_INLINE_PHONE_COMPONENT_METADATA, PDX_INLINE_PIPELINE_STATUS_COMPONENT_METADATA, PDX_INLINE_RANGE_SLIDER_COMPONENT_METADATA, PDX_INLINE_RATING_COMPONENT_METADATA, PDX_INLINE_RELATIVE_PERIOD_COMPONENT_METADATA, PDX_INLINE_SCORE_PRIORITY_COMPONENT_METADATA, PDX_INLINE_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_INLINE_SELECT_COMPONENT_METADATA, PDX_INLINE_SENTIMENT_COMPONENT_METADATA, PDX_INLINE_TIME_COMPONENT_METADATA, PDX_INLINE_TIME_RANGE_COMPONENT_METADATA, PDX_INLINE_TOGGLE_COMPONENT_METADATA, PDX_INLINE_TREE_SELECT_COMPONENT_METADATA, PDX_INLINE_YEAR_RANGE_COMPONENT_METADATA, PDX_MATERIAL_ASYNC_SELECT_COMPONENT_METADATA, PDX_MATERIAL_AUTOCOMPLETE_COMPONENT_METADATA, PDX_MATERIAL_AVATAR_COMPONENT_METADATA, PDX_MATERIAL_BUTTON_COMPONENT_METADATA, PDX_MATERIAL_BUTTON_TOGGLE_COMPONENT_METADATA, PDX_MATERIAL_CHECKBOX_GROUP_COMPONENT_METADATA, PDX_MATERIAL_CHIPS_COMPONENT_METADATA, PDX_MATERIAL_COLORPICKER_COMPONENT_METADATA, PDX_MATERIAL_CPF_CNPJ_INPUT_COMPONENT_METADATA, PDX_MATERIAL_CURRENCY_COMPONENT_METADATA, PDX_MATERIAL_DATEPICKER_COMPONENT_METADATA, PDX_MATERIAL_DATE_RANGE_COMPONENT_METADATA, PDX_MATERIAL_FILE_UPLOAD_COMPONENT_METADATA, PDX_MATERIAL_MULTI_SELECT_COMPONENT_METADATA, PDX_MATERIAL_MULTI_SELECT_TREE_COMPONENT_METADATA, PDX_MATERIAL_PRICE_RANGE_COMPONENT_METADATA, PDX_MATERIAL_RADIO_GROUP_COMPONENT_METADATA, PDX_MATERIAL_RANGE_SLIDER_COMPONENT_METADATA, PDX_MATERIAL_RATING_COMPONENT_METADATA, PDX_MATERIAL_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_MATERIAL_SELECTION_LIST_COMPONENT_METADATA, PDX_MATERIAL_SELECT_COMPONENT_METADATA, PDX_MATERIAL_SLIDER_COMPONENT_METADATA, PDX_MATERIAL_SLIDE_TOGGLE_COMPONENT_METADATA, PDX_MATERIAL_TEXTAREA_COMPONENT_METADATA, PDX_MATERIAL_TIMEPICKER_COMPONENT_METADATA, PDX_MATERIAL_TIME_RANGE_COMPONENT_METADATA, PDX_MATERIAL_TRANSFER_LIST_COMPONENT_METADATA, PDX_MATERIAL_TREE_SELECT_COMPONENT_METADATA, PDX_MONTH_INPUT_COMPONENT_METADATA, PDX_NUMBER_INPUT_COMPONENT_METADATA, PDX_PASSWORD_INPUT_COMPONENT_METADATA, PDX_PHONE_INPUT_COMPONENT_METADATA, PDX_PRELOAD_STATUS_COMPONENT_METADATA, PDX_SEARCH_INPUT_COMPONENT_METADATA, PDX_TEXT_INPUT_COMPONENT_METADATA, PDX_TIME_INPUT_COMPONENT_METADATA, PDX_URL_INPUT_COMPONENT_METADATA, PDX_WEEK_INPUT_COMPONENT_METADATA, PDX_YEAR_INPUT_COMPONENT_METADATA, PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST, PRAXIS_DYNAMIC_FIELDS_AUTHORING_PROFILES, PRAXIS_DYNAMIC_FIELDS_EDITORIAL_WAVE_1, PRAXIS_DYNAMIC_FIELDS_EN_US, PRAXIS_DYNAMIC_FIELDS_I18N, PRAXIS_DYNAMIC_FIELDS_LOGGER_BACKEND, PRAXIS_DYNAMIC_FIELDS_PT_BR, PRAXIS_DYNAMIC_FIELDS_WAVE_1_COMPONENT_METADATA, PRICE_RANGE_AI_CAPABILITIES, PasswordInputComponent, PdxColorPickerComponent, PdxMaterialRangeSliderComponent, PdxMaterialTimeRangeComponent, PdxYearInputComponent, PhoneInputComponent, PraxisErrorStateMatcher, PreloadStatusComponent, RETRY_DELAY, SELECT_CONTROLS_AI_CAPABILITIES, SearchInputComponent, SimpleBaseButtonComponent, SimpleBaseInputComponent, SimpleBaseSelectComponent, TEXT_INPUTS_AI_CAPABILITIES, TIME_RANGE_AI_CAPABILITIES, TOGGLE_CONTROLS_AI_CAPABILITIES, TREE_CONTROLS_AI_CAPABILITIES, TextInputComponent, TimeInputComponent, UrlInputComponent, WeekInputComponent, YEAR_INPUT_AI_CAPABILITIES, bindDynamicFieldsLoggerBackendFromInjector, clearDynamicFieldsLoggerBackend, configureDynamicFieldsLogger, createDynamicFieldPreviewRecipe, createErrorStateMatcher, createPraxisDynamicFieldsI18nConfig, emitToDynamicFieldsLoggerBackend, enableDebugForComponent, getControlTypeCatalog, getErrorStateMatcherForField, inferErrorStateStrategy, initializeComponentSystem, initializeComponentSystemSync, isBaseDynamicFieldComponent, isLoadingCapableComponent, isValidJsonSchema, isValueBasedComponent, logger, mapJsonSchemaToFields, mapPropertyToFieldMetadata, normalizeFormMetadata, provideMaterialAvatarMetadata, providePraxisDynamicFields, providePraxisDynamicFieldsCore, providePraxisDynamicFieldsCoreNoDefaults, providePraxisDynamicFieldsI18n, providePraxisDynamicFieldsNoDefaults, providePraxisDynamicFieldsWave1EditorialRegistry, registerPraxisDynamicFieldsWave1EditorialDescriptors, resolvePraxisDynamicFieldsText, setDynamicFieldsLoggerBackend, silenceComponent, supportsClearButtonControlType };
|
|
7596
7761
|
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 };
|