@praxisui/dynamic-fields 9.0.4-rc.9 → 9.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/ai/component-registry.json +2 -2
- package/docs/dynamic-fields-inline-filter-catalog.md +3 -1
- package/fesm2022/praxisui-dynamic-fields.mjs +3013 -2334
- package/package.json +3 -3
- package/src/lib/components/inline-entity-lookup/pdx-inline-entity-lookup.json-api.md +22 -5
- package/src/lib/components/inline-multi-select/pdx-inline-multi-select.json-api.md +4 -3
- package/src/lib/components/material-async-select/pdx-material-async-select.json-api.md +9 -8
- package/src/lib/components/material-date-range/pdx-material-date-range.json-api.md +1 -0
- package/src/lib/components/material-datepicker/pdx-material-datepicker.json-api.md +2 -1
- package/src/lib/components/material-select/pdx-material-select.json-api.md +7 -7
- package/types/praxisui-dynamic-fields.d.ts +201 -12
|
@@ -843,6 +843,7 @@ declare abstract class SimpleBaseInputComponent implements ControlValueAccessor,
|
|
|
843
843
|
params?: Record<string, any>;
|
|
844
844
|
} | null | undefined, keySuffix: string, fallback: string, params?: Record<string, string | number | boolean | null | undefined>): string;
|
|
845
845
|
protected clearActionTooltip(): string | null;
|
|
846
|
+
protected openCalendarAriaLabel(): string;
|
|
846
847
|
protected clearActionAriaLabel(): string;
|
|
847
848
|
private resolveClearActionContextLabel;
|
|
848
849
|
private interpolateValidationMessage;
|
|
@@ -2003,6 +2004,7 @@ declare class MaterialDatepickerComponent extends SimpleBaseInputComponent {
|
|
|
2003
2004
|
/** Emits whenever validation state changes. */
|
|
2004
2005
|
readonly validationChange: _angular_core.OutputEmitterRef<ValidationErrors | null>;
|
|
2005
2006
|
private readonly dateAdapter;
|
|
2007
|
+
private readonly datepickerIntl;
|
|
2006
2008
|
readonlyMode: boolean;
|
|
2007
2009
|
disabledMode: boolean;
|
|
2008
2010
|
visible: boolean;
|
|
@@ -2076,6 +2078,7 @@ declare class MaterialDateRangeComponent extends SimpleBaseInputComponent implem
|
|
|
2076
2078
|
readonly shortcutOverlayViewportMargin = 12;
|
|
2077
2079
|
private pickerOpen;
|
|
2078
2080
|
private readonly dateAdapter;
|
|
2081
|
+
private readonly datepickerIntl;
|
|
2079
2082
|
picker: MatDateRangePicker<Date>;
|
|
2080
2083
|
private endDateInput?;
|
|
2081
2084
|
readonly shouldShowShortcuts: () => boolean;
|
|
@@ -2113,7 +2116,9 @@ declare class MaterialDateRangeComponent extends SimpleBaseInputComponent implem
|
|
|
2113
2116
|
protected normalizeDateRangeValue(value: unknown): DateRangeValue | null;
|
|
2114
2117
|
private coerceDateLike;
|
|
2115
2118
|
private metadataAsField;
|
|
2116
|
-
|
|
2119
|
+
protected syncDateAdapterLocale(): void;
|
|
2120
|
+
protected resolveBuiltinPresetLabel(id: string, fallback: string, overrides: Record<string, string | undefined>): string;
|
|
2121
|
+
protected resolveAdapterLocale(): string;
|
|
2117
2122
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialDateRangeComponent, never>;
|
|
2118
2123
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MaterialDateRangeComponent, "pdx-material-date-range", never, { "readonlyMode": { "alias": "readonlyMode"; "required": false; }; "disabledMode": { "alias": "disabledMode"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "presentationMode": { "alias": "presentationMode"; "required": false; }; "metadataInput": { "alias": "metadata"; "required": false; }; }, { "validationChange": "validationChange"; }, never, never, true, never>;
|
|
2119
2124
|
}
|
|
@@ -2511,18 +2516,80 @@ declare class SearchInputComponent extends SimpleBaseInputComponent {
|
|
|
2511
2516
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchInputComponent, "pdx-search-input", never, { "readonlyMode": { "alias": "readonlyMode"; "required": false; }; "disabledMode": { "alias": "disabledMode"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "presentationMode": { "alias": "presentationMode"; "required": false; }; }, { "validationChange": "validationChange"; }, never, never, true, never>;
|
|
2512
2517
|
}
|
|
2513
2518
|
|
|
2519
|
+
declare class PdxCollectionSearchComponent {
|
|
2520
|
+
readonly value: _angular_core.InputSignal<string>;
|
|
2521
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
2522
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2523
|
+
readonly clearAriaLabel: _angular_core.InputSignal<string>;
|
|
2524
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
2525
|
+
readonly density: _angular_core.InputSignal<"compact" | "regular">;
|
|
2526
|
+
readonly icon: _angular_core.InputSignal<string>;
|
|
2527
|
+
readonly clearIcon: _angular_core.InputSignal<string>;
|
|
2528
|
+
readonly valueChange: _angular_core.OutputEmitterRef<string>;
|
|
2529
|
+
readonly cleared: _angular_core.OutputEmitterRef<void>;
|
|
2530
|
+
private readonly searchInput;
|
|
2531
|
+
focus(): void;
|
|
2532
|
+
onInput(event: Event): void;
|
|
2533
|
+
clearValue(): void;
|
|
2534
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PdxCollectionSearchComponent, never>;
|
|
2535
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PdxCollectionSearchComponent, "pdx-collection-search", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": true; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": true; "isSignal": true; }; "clearAriaLabel": { "alias": "clearAriaLabel"; "required": true; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "density": { "alias": "density"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "clearIcon": { "alias": "clearIcon"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; "cleared": "cleared"; }, never, never, true, never>;
|
|
2536
|
+
}
|
|
2537
|
+
|
|
2538
|
+
declare class PdxCollectionOverlayTriggerDirective {
|
|
2539
|
+
readonly elementRef: ElementRef<HTMLElement>;
|
|
2540
|
+
focus(): void;
|
|
2541
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PdxCollectionOverlayTriggerDirective, never>;
|
|
2542
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PdxCollectionOverlayTriggerDirective, "[pdxCollectionOverlayTrigger]", never, {}, {}, never, never, true, never>;
|
|
2543
|
+
}
|
|
2544
|
+
type PdxCollectionOverlayCloseReason = 'escape' | 'outside' | 'detach' | 'programmatic';
|
|
2545
|
+
declare class PdxCollectionOverlayComponent {
|
|
2546
|
+
readonly open: _angular_core.ModelSignal<boolean>;
|
|
2547
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2548
|
+
readonly panelClass: _angular_core.InputSignal<string>;
|
|
2549
|
+
readonly panelWidth: _angular_core.InputSignal<string | number | null>;
|
|
2550
|
+
readonly density: _angular_core.InputSignal<"compact" | "regular">;
|
|
2551
|
+
readonly opened: _angular_core.OutputEmitterRef<void>;
|
|
2552
|
+
readonly closed: _angular_core.OutputEmitterRef<PdxCollectionOverlayCloseReason>;
|
|
2553
|
+
readonly trigger: _angular_core.Signal<PdxCollectionOverlayTriggerDirective>;
|
|
2554
|
+
readonly positions: ConnectedPosition[];
|
|
2555
|
+
resolvedPanelWidth(): number | string;
|
|
2556
|
+
close(reason: PdxCollectionOverlayCloseReason, restoreFocus?: boolean): void;
|
|
2557
|
+
onOverlayKeydown(event: KeyboardEvent): void;
|
|
2558
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PdxCollectionOverlayComponent, never>;
|
|
2559
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PdxCollectionOverlayComponent, "pdx-collection-overlay", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": true; "isSignal": true; }; "panelClass": { "alias": "panelClass"; "required": false; "isSignal": true; }; "panelWidth": { "alias": "panelWidth"; "required": false; "isSignal": true; }; "density": { "alias": "density"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "opened": "opened"; "closed": "closed"; }, ["trigger"], ["[pdxCollectionOverlayTrigger]", "[pdxCollectionOverlayHeader]", "[pdxCollectionOverlayOptions]", "[pdxCollectionOverlayFooter]"], true, never>;
|
|
2560
|
+
}
|
|
2561
|
+
|
|
2514
2562
|
declare class MaterialSelectComponent extends SimpleBaseSelectComponent {
|
|
2515
2563
|
readonlyMode: boolean;
|
|
2516
2564
|
disabledMode: boolean;
|
|
2517
2565
|
visible: boolean;
|
|
2518
2566
|
presentationMode: boolean;
|
|
2519
|
-
|
|
2567
|
+
readonly panelOpen: _angular_core.WritableSignal<boolean>;
|
|
2568
|
+
private readonly collectionOverlay;
|
|
2569
|
+
private readonly collectionSearch;
|
|
2570
|
+
private readonly overlayTrigger;
|
|
2571
|
+
private readonly overlayOptions;
|
|
2520
2572
|
protected defaultPanelClass(): string;
|
|
2521
2573
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
2522
2574
|
ngOnInit(): void;
|
|
2575
|
+
ngAfterViewInit(): void;
|
|
2523
2576
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2524
2577
|
onSearchInputEvent(event: Event): void;
|
|
2525
|
-
|
|
2578
|
+
toggleOverlay(): void;
|
|
2579
|
+
onOverlayOpened(): void;
|
|
2580
|
+
onOverlayClosed(): void;
|
|
2581
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
2582
|
+
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
2583
|
+
selectOverlayOption(option: SelectOption<unknown>): void;
|
|
2584
|
+
selectEmptyOption(): void;
|
|
2585
|
+
onOptionKeydown(event: KeyboardEvent): void;
|
|
2586
|
+
hasSelectionValue(): boolean;
|
|
2587
|
+
materialDisplayText(): string;
|
|
2588
|
+
labelId(): string;
|
|
2589
|
+
panelId(): string;
|
|
2590
|
+
overlayPanelWidth(): string;
|
|
2591
|
+
private focusOverlayOption;
|
|
2592
|
+
private sameValue;
|
|
2526
2593
|
private optionsFromLegacy;
|
|
2527
2594
|
private normalizeOption;
|
|
2528
2595
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialSelectComponent, never>;
|
|
@@ -2534,7 +2601,11 @@ declare class InlineSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2534
2601
|
disabledMode: boolean;
|
|
2535
2602
|
visible: boolean;
|
|
2536
2603
|
presentationMode: boolean;
|
|
2537
|
-
|
|
2604
|
+
readonly panelOpen: _angular_core.WritableSignal<boolean>;
|
|
2605
|
+
private readonly collectionOverlay;
|
|
2606
|
+
private readonly collectionSearch;
|
|
2607
|
+
private readonly overlayTrigger;
|
|
2608
|
+
private readonly overlayOptions;
|
|
2538
2609
|
inlineMinWidthPx: number;
|
|
2539
2610
|
inlineMaxWidthPx: number;
|
|
2540
2611
|
private fieldLabelText;
|
|
@@ -2545,6 +2616,7 @@ declare class InlineSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2545
2616
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
2546
2617
|
protected setMetadata(metadata: MaterialSelectMetadata): void;
|
|
2547
2618
|
onComponentInit(): void;
|
|
2619
|
+
ngAfterViewInit(): void;
|
|
2548
2620
|
onViewportResize(): void;
|
|
2549
2621
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2550
2622
|
protected getSpecificCssClasses(): string[];
|
|
@@ -2553,7 +2625,17 @@ declare class InlineSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2553
2625
|
showQuickClear(): boolean;
|
|
2554
2626
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
2555
2627
|
onQuickClear(event: MouseEvent): void;
|
|
2556
|
-
|
|
2628
|
+
toggleOverlay(): void;
|
|
2629
|
+
onOverlayOpened(): void;
|
|
2630
|
+
onOverlayClosed(): void;
|
|
2631
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
2632
|
+
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
2633
|
+
selectOverlayOption(option: SelectOption<unknown>): void;
|
|
2634
|
+
selectEmptyOption(): void;
|
|
2635
|
+
onOptionKeydown(event: KeyboardEvent): void;
|
|
2636
|
+
panelId(): string;
|
|
2637
|
+
overlayPanelWidth(): string;
|
|
2638
|
+
private focusOverlayOption;
|
|
2557
2639
|
onSearchInput(term: string): void;
|
|
2558
2640
|
onSearchInputEvent(event: Event): void;
|
|
2559
2641
|
private hasValue;
|
|
@@ -2603,6 +2685,11 @@ declare class MaterialSearchableSelectComponent extends SimpleBaseSelectComponen
|
|
|
2603
2685
|
visible: boolean;
|
|
2604
2686
|
presentationMode: boolean;
|
|
2605
2687
|
private searchInput?;
|
|
2688
|
+
readonly panelOpen: _angular_core.WritableSignal<boolean>;
|
|
2689
|
+
protected readonly collectionOverlay: _angular_core.Signal<PdxCollectionOverlayComponent | undefined>;
|
|
2690
|
+
protected readonly collectionSearch: _angular_core.Signal<PdxCollectionSearchComponent | undefined>;
|
|
2691
|
+
protected readonly overlayTrigger: _angular_core.Signal<ElementRef<HTMLButtonElement> | undefined>;
|
|
2692
|
+
protected readonly overlayOptions: _angular_core.Signal<readonly ElementRef<HTMLButtonElement>[]>;
|
|
2606
2693
|
private readonly store;
|
|
2607
2694
|
readonly endReached: _angular_core.WritableSignal<boolean>;
|
|
2608
2695
|
private initialLoadStrategy;
|
|
@@ -2611,6 +2698,7 @@ declare class MaterialSearchableSelectComponent extends SimpleBaseSelectComponen
|
|
|
2611
2698
|
protected defaultPanelClass(): string;
|
|
2612
2699
|
setSelectMetadata(metadata: SearchableSelectMetadata): void;
|
|
2613
2700
|
ngOnInit(): void;
|
|
2701
|
+
ngAfterViewInit(): void;
|
|
2614
2702
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2615
2703
|
searchableSelectAriaDisabled(): 'true' | null;
|
|
2616
2704
|
searchableSelectAriaReadonly(): 'true' | null;
|
|
@@ -2621,6 +2709,18 @@ declare class MaterialSearchableSelectComponent extends SimpleBaseSelectComponen
|
|
|
2621
2709
|
searchInputAriaLabel(): string;
|
|
2622
2710
|
onSearchInputEvent(event: Event): void;
|
|
2623
2711
|
onOpened(opened: boolean): void;
|
|
2712
|
+
toggleOverlay(): void;
|
|
2713
|
+
onOverlayOpened(): void;
|
|
2714
|
+
onOverlayClosed(): void;
|
|
2715
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
2716
|
+
selectOverlayOption(option: SelectOption<unknown>): void;
|
|
2717
|
+
selectEmptyOption(): void;
|
|
2718
|
+
onOptionKeydown(event: KeyboardEvent): void;
|
|
2719
|
+
hasSelectionValue(): boolean;
|
|
2720
|
+
materialDisplayText(): string;
|
|
2721
|
+
labelId(): string;
|
|
2722
|
+
panelId(): string;
|
|
2723
|
+
overlayPanelWidth(): string;
|
|
2624
2724
|
private getSelectedIds;
|
|
2625
2725
|
private preloadSelected;
|
|
2626
2726
|
private refreshOptions;
|
|
@@ -2635,6 +2735,8 @@ declare class MaterialSearchableSelectComponent extends SimpleBaseSelectComponen
|
|
|
2635
2735
|
onSearch(term: string): void;
|
|
2636
2736
|
protected registerMatSelect(select: MatSelect): void;
|
|
2637
2737
|
private refocusSearchInput;
|
|
2738
|
+
protected focusOverlayOption(index: number): void;
|
|
2739
|
+
private resolveMaterialOptionLabel;
|
|
2638
2740
|
reload(reset: boolean): void;
|
|
2639
2741
|
protected onDependenciesChanged(): void;
|
|
2640
2742
|
private syncDisabledModeControlState;
|
|
@@ -2649,8 +2751,8 @@ declare class InlineSearchableSelectComponent extends MaterialSearchableSelectCo
|
|
|
2649
2751
|
setSelectMetadata(metadata: MaterialSelectMetadata): void;
|
|
2650
2752
|
protected setMetadata(metadata: MaterialSelectMetadata): void;
|
|
2651
2753
|
onComponentInit(): void;
|
|
2754
|
+
ngAfterViewInit(): void;
|
|
2652
2755
|
onViewportResize(): void;
|
|
2653
|
-
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2654
2756
|
protected getSpecificCssClasses(): string[];
|
|
2655
2757
|
hasSelection(): boolean;
|
|
2656
2758
|
selectedCount(): number;
|
|
@@ -2660,12 +2762,22 @@ declare class InlineSearchableSelectComponent extends MaterialSearchableSelectCo
|
|
|
2660
2762
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
2661
2763
|
onQuickClear(event: MouseEvent): void;
|
|
2662
2764
|
onOpenedChange(opened: boolean): void;
|
|
2765
|
+
toggleOverlay(): void;
|
|
2766
|
+
onOverlayOpened(): void;
|
|
2767
|
+
onOverlayClosed(): void;
|
|
2768
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
2769
|
+
selectOverlayOption(option: SelectOption<unknown>): void;
|
|
2770
|
+
selectEmptyOption(): void;
|
|
2771
|
+
onOptionKeydown(event: KeyboardEvent): void;
|
|
2663
2772
|
onSearchInput(term: string): void;
|
|
2664
2773
|
onSearchInputEvent(event: Event): void;
|
|
2665
2774
|
showLoadMore(): boolean;
|
|
2666
2775
|
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
2667
2776
|
panelActionsVisible(): boolean;
|
|
2668
2777
|
showEndReachedMessage(): boolean;
|
|
2778
|
+
overlayPanelWidth(): string;
|
|
2779
|
+
panelId(): string;
|
|
2780
|
+
isOverlayDisabled(): boolean;
|
|
2669
2781
|
onLoadMoreClick(event: MouseEvent): void;
|
|
2670
2782
|
placeholderText(): string;
|
|
2671
2783
|
searchPlaceholderText(): string;
|
|
@@ -2727,7 +2839,13 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2727
2839
|
presentationMode: boolean;
|
|
2728
2840
|
private searchInput?;
|
|
2729
2841
|
private autocomplete?;
|
|
2842
|
+
readonly materialPanelOpen: _angular_core.WritableSignal<boolean>;
|
|
2843
|
+
private readonly materialCollectionOverlay;
|
|
2844
|
+
private readonly materialCollectionSearch;
|
|
2845
|
+
private readonly materialOverlayTrigger;
|
|
2846
|
+
private readonly materialOverlayOptions;
|
|
2730
2847
|
readonly termControl: FormControl<unknown>;
|
|
2848
|
+
materialSearchTerm(): string;
|
|
2731
2849
|
readonly activeLookupFilters: _angular_core.WritableSignal<LookupFilterRequest[]>;
|
|
2732
2850
|
readonly selectedLookupSortKey: _angular_core.WritableSignal<string | null>;
|
|
2733
2851
|
readonly selectedLookupSearchStrategyKey: _angular_core.WritableSignal<string | null>;
|
|
@@ -2748,7 +2866,21 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2748
2866
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2749
2867
|
searchInputAriaLabel(): string;
|
|
2750
2868
|
ngOnInit(): void;
|
|
2869
|
+
ngAfterViewInit(): void;
|
|
2751
2870
|
onOpened(opened: boolean): void;
|
|
2871
|
+
toggleMaterialOverlay(): void;
|
|
2872
|
+
onMaterialOverlayOpened(): void;
|
|
2873
|
+
onMaterialOverlayClosed(): void;
|
|
2874
|
+
onMaterialTriggerKeydown(event: KeyboardEvent): void;
|
|
2875
|
+
onMaterialSearchKeydown(event: KeyboardEvent): void;
|
|
2876
|
+
selectMaterialOption(option: SelectOption<unknown>): void;
|
|
2877
|
+
selectMaterialEmptyOption(): void;
|
|
2878
|
+
onMaterialOptionKeydown(event: KeyboardEvent): void;
|
|
2879
|
+
hasMaterialSelection(): boolean;
|
|
2880
|
+
materialDisplayText(): string;
|
|
2881
|
+
materialLabelId(): string;
|
|
2882
|
+
materialPanelId(): string;
|
|
2883
|
+
materialOverlayPanelWidth(): string;
|
|
2752
2884
|
usesSearchCombobox(): boolean;
|
|
2753
2885
|
comboboxInputAriaLabel(): string;
|
|
2754
2886
|
autocompletePanelClass(): string;
|
|
@@ -2804,6 +2936,8 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2804
2936
|
retry(): void;
|
|
2805
2937
|
protected registerMatSelect(select: MatSelect): void;
|
|
2806
2938
|
private refocusSearchInput;
|
|
2939
|
+
private focusMaterialOption;
|
|
2940
|
+
private resolveMaterialOptionLabel;
|
|
2807
2941
|
reload(reset: boolean): void;
|
|
2808
2942
|
protected setupRemoteSelectionHydration(): void;
|
|
2809
2943
|
protected onDependenciesChanged(): void;
|
|
@@ -2846,14 +2980,19 @@ type InlineAsyncSelectMetadata = MaterialSelectMetadata & {
|
|
|
2846
2980
|
declare class InlineAsyncSelectComponent extends MaterialAsyncSelectComponent {
|
|
2847
2981
|
inlineMinWidthPx: number;
|
|
2848
2982
|
inlineMaxWidthPx: number;
|
|
2983
|
+
readonly isPanelOpen: _angular_core.WritableSignal<boolean>;
|
|
2849
2984
|
private fieldLabelText;
|
|
2850
2985
|
private staticOptions;
|
|
2986
|
+
private readonly collectionOverlay;
|
|
2987
|
+
private readonly collectionSearch;
|
|
2988
|
+
private readonly overlayTrigger;
|
|
2989
|
+
private readonly overlayOptions;
|
|
2851
2990
|
private currentMetadata;
|
|
2852
2991
|
setSelectMetadata(metadata: InlineAsyncSelectMetadata): void;
|
|
2853
2992
|
protected setMetadata(metadata: MaterialSelectMetadata): void;
|
|
2854
2993
|
onComponentInit(): void;
|
|
2994
|
+
ngAfterViewInit(): void;
|
|
2855
2995
|
onViewportResize(): void;
|
|
2856
|
-
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2857
2996
|
protected getSpecificCssClasses(): string[];
|
|
2858
2997
|
hasSelection(): boolean;
|
|
2859
2998
|
selectedCount(): number;
|
|
@@ -2863,12 +3002,23 @@ declare class InlineAsyncSelectComponent extends MaterialAsyncSelectComponent {
|
|
|
2863
3002
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
2864
3003
|
onQuickClear(event: MouseEvent): void;
|
|
2865
3004
|
onOpenedChange(opened: boolean): void;
|
|
3005
|
+
toggleOverlay(): void;
|
|
3006
|
+
onOverlayOpened(): void;
|
|
3007
|
+
onOverlayClosed(): void;
|
|
3008
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
3009
|
+
selectOverlayOption(option: SelectOption<unknown>): void;
|
|
3010
|
+
selectEmptyOption(): void;
|
|
3011
|
+
onOptionKeydown(event: KeyboardEvent): void;
|
|
2866
3012
|
onSearchInputEvent(event: Event): void;
|
|
2867
3013
|
onSearchInput(term: string): void;
|
|
2868
3014
|
showLoadMore(): boolean;
|
|
2869
3015
|
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
2870
3016
|
panelActionsVisible(): boolean;
|
|
2871
3017
|
showEndReachedMessage(): boolean;
|
|
3018
|
+
overlayPanelWidth(): string;
|
|
3019
|
+
panelId(): string;
|
|
3020
|
+
isOverlayDisabled(): boolean;
|
|
3021
|
+
private focusOverlayOption;
|
|
2872
3022
|
onLoadMoreClick(event: MouseEvent): void;
|
|
2873
3023
|
placeholderText(): string;
|
|
2874
3024
|
searchPlaceholderText(): string;
|
|
@@ -2878,7 +3028,7 @@ declare class InlineAsyncSelectComponent extends MaterialAsyncSelectComponent {
|
|
|
2878
3028
|
private equalsOptionValue;
|
|
2879
3029
|
private asRecord;
|
|
2880
3030
|
private resolveFieldLabelFromMetadata;
|
|
2881
|
-
|
|
3031
|
+
currentSearchTerm(): string;
|
|
2882
3032
|
private applyStaticOptionsFilter;
|
|
2883
3033
|
private humanizeFieldName;
|
|
2884
3034
|
private recalculateInlineSizeBounds;
|
|
@@ -2899,6 +3049,7 @@ interface EntityLookupViewModel {
|
|
|
2899
3049
|
label: string;
|
|
2900
3050
|
description: string;
|
|
2901
3051
|
status: string;
|
|
3052
|
+
statusCode: string;
|
|
2902
3053
|
statusTone: LookupStatusTone;
|
|
2903
3054
|
selectable: boolean;
|
|
2904
3055
|
selectionState: EntityLookupResultState;
|
|
@@ -2965,6 +3116,8 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
2965
3116
|
private nextMetadataFunctionId;
|
|
2966
3117
|
private readonly inlineSelectPanelClasses;
|
|
2967
3118
|
private readonly fullFieldSelectPanelClasses;
|
|
3119
|
+
private singleSelectionCloseTimer;
|
|
3120
|
+
private singleSelectionCloseDestroyHookRegistered;
|
|
2968
3121
|
private placeholderTextCacheSignature;
|
|
2969
3122
|
private placeholderTextCache;
|
|
2970
3123
|
set initialMetadata(metadata: MaterialEntityLookupMetadata | null | undefined);
|
|
@@ -3057,6 +3210,7 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
3057
3210
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
3058
3211
|
onQuickClear(event: MouseEvent): void;
|
|
3059
3212
|
onOpenedChange(opened: boolean): void;
|
|
3213
|
+
onQuickSelectionCommitted(): void;
|
|
3060
3214
|
onSearchInput(term: string): void;
|
|
3061
3215
|
showLoadMore(): boolean;
|
|
3062
3216
|
showEndReachedMessage(): boolean;
|
|
@@ -3086,6 +3240,7 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
3086
3240
|
dialogOpenSupportingText(): string;
|
|
3087
3241
|
dialogContextSupportingText(hasActiveFilters: boolean): string;
|
|
3088
3242
|
dialogApplyActionText(): string;
|
|
3243
|
+
dialogCurrentSelectionText(value: string): string;
|
|
3089
3244
|
dialogFilterPanelToggleText(open: boolean): string;
|
|
3090
3245
|
dialogFilterPlaceholderText(operator: LookupFilterOperator, type: LookupFilterFieldType): string;
|
|
3091
3246
|
dialogFilterOperatorHintText(operator: LookupFilterOperator): string;
|
|
@@ -3100,6 +3255,14 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
3100
3255
|
dialogResultsAriaLabelText(): string;
|
|
3101
3256
|
dialogFiltersAriaLabelText(): string;
|
|
3102
3257
|
dialogPreviewAriaLabelText(): string;
|
|
3258
|
+
dialogCloseAriaLabelText(): string;
|
|
3259
|
+
dialogLoadErrorTitleText(): string;
|
|
3260
|
+
dialogLoadErrorSupportingText(): string;
|
|
3261
|
+
dialogRetryActionText(): string;
|
|
3262
|
+
lookupSearchStrategyOptionText(strategy: {
|
|
3263
|
+
key?: string;
|
|
3264
|
+
kind?: string;
|
|
3265
|
+
}): string;
|
|
3103
3266
|
dialogResultOptionAriaLabel(item: EntityLookupViewModel): string;
|
|
3104
3267
|
dialogCancelActionText(): string;
|
|
3105
3268
|
dialogTitleText(): string;
|
|
@@ -3146,6 +3309,7 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
3146
3309
|
private normalizeLookupTone;
|
|
3147
3310
|
private classifyLookupSelectionState;
|
|
3148
3311
|
private resolveStatusTone;
|
|
3312
|
+
private resolveStatusLabel;
|
|
3149
3313
|
private lookupSeparator;
|
|
3150
3314
|
private normalizeLookupText;
|
|
3151
3315
|
private normalizeLookupOptionalText;
|
|
@@ -3219,6 +3383,15 @@ declare class EntityLookupDialogComponent implements AfterViewInit {
|
|
|
3219
3383
|
onSearchStrategyChange(event: Event): void;
|
|
3220
3384
|
searchStrategyLabel(): string;
|
|
3221
3385
|
searchStrategyDefaultLabel(): string;
|
|
3386
|
+
searchStrategyOptionText(strategy: {
|
|
3387
|
+
key?: string;
|
|
3388
|
+
kind?: string;
|
|
3389
|
+
}): string;
|
|
3390
|
+
closeAriaLabel(): string;
|
|
3391
|
+
errorStateTitle(): string;
|
|
3392
|
+
errorStateSupporting(): string;
|
|
3393
|
+
retryActionText(): string;
|
|
3394
|
+
retryResults(): void;
|
|
3222
3395
|
sortOptions(): _praxisui_core.LookupSortOptionMetadata[];
|
|
3223
3396
|
trackLookupSortOption(index: number, option: {
|
|
3224
3397
|
key?: string;
|
|
@@ -3340,7 +3513,11 @@ declare class InlineMultiSelectComponent extends SimpleBaseSelectComponent {
|
|
|
3340
3513
|
disabledMode: boolean;
|
|
3341
3514
|
visible: boolean;
|
|
3342
3515
|
presentationMode: boolean;
|
|
3343
|
-
|
|
3516
|
+
readonly overlayOpen: _angular_core.WritableSignal<boolean>;
|
|
3517
|
+
private readonly collectionOverlay;
|
|
3518
|
+
private readonly collectionSearch;
|
|
3519
|
+
private readonly overlayTrigger;
|
|
3520
|
+
private readonly overlayOptions;
|
|
3344
3521
|
inlineMinWidthPx: number;
|
|
3345
3522
|
inlineMaxWidthPx: number;
|
|
3346
3523
|
private fieldLabelText;
|
|
@@ -3350,8 +3527,8 @@ declare class InlineMultiSelectComponent extends SimpleBaseSelectComponent {
|
|
|
3350
3527
|
selectAllLabel(): string;
|
|
3351
3528
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
3352
3529
|
protected setMetadata(metadata: MaterialSelectMetadata): void;
|
|
3353
|
-
protected registerMatSelect(select: MatSelect): void;
|
|
3354
3530
|
onComponentInit(): void;
|
|
3531
|
+
ngAfterViewInit(): void;
|
|
3355
3532
|
onViewportResize(): void;
|
|
3356
3533
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
3357
3534
|
protected getSpecificCssClasses(): string[];
|
|
@@ -3372,6 +3549,16 @@ declare class InlineMultiSelectComponent extends SimpleBaseSelectComponent {
|
|
|
3372
3549
|
onQuickClear(event: MouseEvent): void;
|
|
3373
3550
|
onRemoveSelectedToken(event: MouseEvent, value: unknown): void;
|
|
3374
3551
|
onOpenedChange(opened: boolean): void;
|
|
3552
|
+
toggleOverlay(): void;
|
|
3553
|
+
onOverlayOpened(): void;
|
|
3554
|
+
onOverlayClosed(): void;
|
|
3555
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
3556
|
+
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
3557
|
+
onOptionKeydown(event: KeyboardEvent): void;
|
|
3558
|
+
toggleOverlayValue(value: unknown): void;
|
|
3559
|
+
toggleOverlaySelectAll(): void;
|
|
3560
|
+
panelId(): string;
|
|
3561
|
+
overlayPanelWidth(): string;
|
|
3375
3562
|
showPanelActions(): boolean;
|
|
3376
3563
|
showPanelClearAction(): boolean;
|
|
3377
3564
|
panelActionsAriaLabel(): string;
|
|
@@ -3399,6 +3586,8 @@ declare class InlineMultiSelectComponent extends SimpleBaseSelectComponent {
|
|
|
3399
3586
|
ariaLabel(): string;
|
|
3400
3587
|
private currentValues;
|
|
3401
3588
|
private restorePanelCommittedValue;
|
|
3589
|
+
private updateOverlayValue;
|
|
3590
|
+
private focusOverlayOption;
|
|
3402
3591
|
private usesExplicitApplyMode;
|
|
3403
3592
|
private inlineOverlayAction;
|
|
3404
3593
|
private resolveOptionLabel;
|
|
@@ -7806,5 +7995,5 @@ declare function normalizeFormMetadata(input: FieldMetadata[] | JsonSchema): Fie
|
|
|
7806
7995
|
declare const CLEAR_BUTTON_CONTROL_TYPES: Set<string>;
|
|
7807
7996
|
declare function supportsClearButtonControlType(controlType?: string | null): boolean;
|
|
7808
7997
|
|
|
7809
|
-
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 };
|
|
7810
|
-
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 };
|
|
7998
|
+
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, PdxCollectionOverlayComponent, PdxCollectionOverlayTriggerDirective, PdxCollectionSearchComponent, 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 };
|
|
7999
|
+
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, PdxCollectionOverlayCloseReason, PopupSettings, PraxisDynamicFieldText, PraxisDynamicFieldsI18nOptions, PraxisDynamicFieldsI18nOverrides, PreloadStatus, RatingIconState, RegistryStats, SelectOption, ShortcutHandler, ShortcutInfo, SimpleSelectMetadata, TimeRangeValue, ValueChangeOptions };
|