@praxisui/dynamic-fields 9.0.66 → 9.0.68-rc.0
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 +6 -0
- package/ai/component-registry.json +3604 -1063
- package/docs/color-components-evolution-plan.md +369 -0
- package/docs/dynamic-fields-field-catalog.md +34 -28
- package/docs/dynamic-fields-inline-components-guide.md +1 -0
- package/docs/dynamic-fields-inline-filter-catalog.md +11 -2
- package/docs/dynamic-fields-inline-filter-runtime-contract.md +2 -0
- package/docs/dynamic-fields-inventory.md +83 -82
- package/docs/governed-color-token-selection-observation-rfc.md +38 -0
- package/fesm2022/praxisui-dynamic-fields.mjs +4291 -964
- package/package.json +4 -3
- package/src/lib/components/color-input/pdx-color-input.json-api.md +209 -171
- package/src/lib/components/color-picker/pdx-color-picker.json-api.md +273 -245
- package/src/lib/components/inline-color-label/pdx-inline-color-label.json-api.md +224 -195
- package/types/praxisui-dynamic-fields.d.ts +233 -12
|
@@ -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, 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, LookupSearchStrategyMetadata, MaterialEntityLookupMetadata, LookupStatusTone, EntityLookupResultState, EntityLookupResult, LookupDialogMetadata, LookupFilterOperator, LookupFilterFieldType, LookupResultColumnMetadata, MaterialAutocompleteMetadata, RangeSliderMark, RangeSliderSemanticTone, PriceRangeValue, MaterialToggleMetadata, MaterialRangeSliderMetadata, RangeSliderValue, InlinePeriodRangeMetadata, FieldControlType, MaterialTimepickerMetadata, MaterialTimeRangeMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, InlineDistanceRadiusUnit, MaterialMultiSelectTreeMetadata, MaterialChipsMetadata, RangeSliderSemanticBand, MaterialSliderMetadata, MaterialPhoneMetadata, MaterialTimeInputMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialColorPickerMetadata, MaterialYearInputMetadata, ApiUrlEntry, 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, GovernedColorTokenSelection, GovernedColorPalette, MaterialColorInputMetadata, MaterialDateInputMetadata, MaterialDatepickerMetadata, MaterialDateRangeMetadata, DateRangePreset, DateRangeShortcutPreset, StaticPresetResolutionOptions, StaticDateRangePreset, DateRangeValue, MaterialDatetimeLocalInputMetadata, MaterialEmailInputMetadata, MaterialTextareaMetadata, MaterialNumericMetadata, MaterialCurrencyMetadata, MaterialCpfCnpjMetadata, MaterialPriceRangeMetadata, MaterialMonthInputMetadata, MaterialPasswordMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, LookupFilterRequest, LookupFilteringMetadata, LookupSortOptionMetadata, LookupFilterDefinitionMetadata, LookupSearchStrategyMetadata, MaterialEntityLookupMetadata, LookupStatusTone, EntityLookupResultState, EntityLookupResult, LookupDialogMetadata, LookupFilterOperator, LookupFilterFieldType, LookupResultColumnMetadata, MaterialAutocompleteMetadata, RangeSliderMark, RangeSliderSemanticTone, PriceRangeValue, MaterialToggleMetadata, MaterialRangeSliderMetadata, RangeSliderValue, InlinePeriodRangeMetadata, FieldControlType, MaterialTimepickerMetadata, MaterialTimeRangeMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, InlineDistanceRadiusUnit, MaterialMultiSelectTreeMetadata, MaterialChipsMetadata, RangeSliderSemanticBand, MaterialSliderMetadata, MaterialPhoneMetadata, MaterialTimeInputMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialColorPickerMetadata, MaterialYearInputMetadata, ApiUrlEntry, 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';
|
|
@@ -22,7 +22,6 @@ import { MatButtonToggleChange } from '@angular/material/button-toggle';
|
|
|
22
22
|
import { NgStyle } from '@angular/common';
|
|
23
23
|
import { SafeHtml } from '@angular/platform-browser';
|
|
24
24
|
import { MatSelectionListChange, MatSelectionList } from '@angular/material/list';
|
|
25
|
-
import { MatBottomSheet } from '@angular/material/bottom-sheet';
|
|
26
25
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
27
26
|
|
|
28
27
|
/**
|
|
@@ -517,6 +516,8 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
517
516
|
copyValueAriaLabel?: PraxisDynamicFieldText;
|
|
518
517
|
nativeInputAriaLabel?: PraxisDynamicFieldText;
|
|
519
518
|
recentSectionLabel?: PraxisDynamicFieldText;
|
|
519
|
+
governedPaletteLoading?: PraxisDynamicFieldText;
|
|
520
|
+
governedPaletteUnavailable?: PraxisDynamicFieldText;
|
|
520
521
|
swatchAriaLabel?: PraxisDynamicFieldText;
|
|
521
522
|
gradientTabLabel?: PraxisDynamicFieldText;
|
|
522
523
|
paletteTabLabel?: PraxisDynamicFieldText;
|
|
@@ -525,6 +526,15 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
525
526
|
clearActionLabel?: PraxisDynamicFieldText;
|
|
526
527
|
cancelActionLabel?: PraxisDynamicFieldText;
|
|
527
528
|
applyActionLabel?: PraxisDynamicFieldText;
|
|
529
|
+
contrastDiagnosticTitle?: PraxisDynamicFieldText;
|
|
530
|
+
contrastOn?: PraxisDynamicFieldText;
|
|
531
|
+
contrastAgainst?: PraxisDynamicFieldText;
|
|
532
|
+
contrastPass?: PraxisDynamicFieldText;
|
|
533
|
+
contrastFail?: PraxisDynamicFieldText;
|
|
534
|
+
contrastNoEvidence?: PraxisDynamicFieldText;
|
|
535
|
+
localContrastPreviewTitle?: PraxisDynamicFieldText;
|
|
536
|
+
localContrastPreviewSubtitle?: PraxisDynamicFieldText;
|
|
537
|
+
localContrastNoSurfaces?: PraxisDynamicFieldText;
|
|
528
538
|
};
|
|
529
539
|
multiSelect?: {
|
|
530
540
|
placeholder?: PraxisDynamicFieldText;
|
|
@@ -1944,6 +1954,30 @@ declare class TextInputComponent extends SimpleBaseInputComponent {
|
|
|
1944
1954
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextInputComponent, "pdx-text-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>;
|
|
1945
1955
|
}
|
|
1946
1956
|
|
|
1957
|
+
interface ColorPaletteEntry$1 {
|
|
1958
|
+
key: string;
|
|
1959
|
+
tokenId: string | null;
|
|
1960
|
+
displayName: string | null;
|
|
1961
|
+
aliases: readonly string[];
|
|
1962
|
+
semanticRole: string | null;
|
|
1963
|
+
purposes: readonly string[];
|
|
1964
|
+
color: string;
|
|
1965
|
+
tooltip: string;
|
|
1966
|
+
}
|
|
1967
|
+
interface GovernedPaletteContext$1 {
|
|
1968
|
+
paletteKey: string;
|
|
1969
|
+
displayName: string;
|
|
1970
|
+
familyKey: string;
|
|
1971
|
+
variantKey: string;
|
|
1972
|
+
variantDisplayName: string;
|
|
1973
|
+
version: number;
|
|
1974
|
+
etag: string;
|
|
1975
|
+
}
|
|
1976
|
+
interface GovernedPaletteVariantOption$1 {
|
|
1977
|
+
palette: GovernedColorPalette;
|
|
1978
|
+
key: string;
|
|
1979
|
+
displayName: string;
|
|
1980
|
+
}
|
|
1947
1981
|
/**
|
|
1948
1982
|
* Specialized input component for HTML color inputs.
|
|
1949
1983
|
*
|
|
@@ -1953,11 +1987,13 @@ declare class TextInputComponent extends SimpleBaseInputComponent {
|
|
|
1953
1987
|
* reactive forms integration and error handling.
|
|
1954
1988
|
*/
|
|
1955
1989
|
declare class ColorInputComponent extends SimpleBaseInputComponent {
|
|
1990
|
+
private readonly paletteInjector;
|
|
1956
1991
|
private nativePickerRef?;
|
|
1957
1992
|
private menuTrigger?;
|
|
1958
1993
|
private paletteItems?;
|
|
1959
1994
|
/** Emits whenever validation state changes. */
|
|
1960
1995
|
readonly validationChange: _angular_core.OutputEmitterRef<ValidationErrors | null>;
|
|
1996
|
+
readonly governedSelectionChange: _angular_core.OutputEmitterRef<GovernedColorTokenSelection | null>;
|
|
1961
1997
|
readonlyMode: boolean;
|
|
1962
1998
|
disabledMode: boolean;
|
|
1963
1999
|
visible: boolean;
|
|
@@ -1972,6 +2008,22 @@ declare class ColorInputComponent extends SimpleBaseInputComponent {
|
|
|
1972
2008
|
showNativeOption: boolean;
|
|
1973
2009
|
panelWidthPx: number;
|
|
1974
2010
|
readonly recent: _angular_core.WritableSignal<string[]>;
|
|
2011
|
+
readonly paletteSearchTerm: _angular_core.WritableSignal<string>;
|
|
2012
|
+
readonly governedPaletteContext: _angular_core.WritableSignal<GovernedPaletteContext$1 | null>;
|
|
2013
|
+
readonly governedPaletteVariants: _angular_core.WritableSignal<GovernedPaletteVariantOption$1[]>;
|
|
2014
|
+
private readonly governedPaletteEntries;
|
|
2015
|
+
private readonly governedPaletteColors;
|
|
2016
|
+
readonly paletteEntries: _angular_core.Signal<ColorPaletteEntry$1[]>;
|
|
2017
|
+
readonly filteredPaletteEntries: _angular_core.Signal<ColorPaletteEntry$1[]>;
|
|
2018
|
+
readonly paletteGroups: _angular_core.Signal<{
|
|
2019
|
+
key: string;
|
|
2020
|
+
label: string;
|
|
2021
|
+
items: ColorPaletteEntry$1[];
|
|
2022
|
+
}[]>;
|
|
2023
|
+
readonly governedPaletteConfigured: _angular_core.WritableSignal<boolean>;
|
|
2024
|
+
readonly governedPaletteStatus: _angular_core.WritableSignal<"loading" | "idle" | "ready" | "unavailable">;
|
|
2025
|
+
private governedPaletteRequestKey;
|
|
2026
|
+
private readonly governedPalettePurposes;
|
|
1975
2027
|
readonly swatches: _angular_core.Signal<string[]>;
|
|
1976
2028
|
constructor();
|
|
1977
2029
|
ngOnInit(): void;
|
|
@@ -1988,9 +2040,10 @@ declare class ColorInputComponent extends SimpleBaseInputComponent {
|
|
|
1988
2040
|
isReadonlyEffective(): boolean;
|
|
1989
2041
|
openMenu(): void;
|
|
1990
2042
|
focusPaletteItem(): void;
|
|
2043
|
+
onPaletteOpened(): void;
|
|
1991
2044
|
paletteItemOffset(): number;
|
|
1992
2045
|
onPaletteKeydown(event: KeyboardEvent, globalIndex: number, groupStart: number, groupLength: number): void;
|
|
1993
|
-
onSwatchClick(
|
|
2046
|
+
onSwatchClick(value: string | ColorPaletteEntry$1): void;
|
|
1994
2047
|
isSelected(c: string): boolean;
|
|
1995
2048
|
copyCurrent(): void;
|
|
1996
2049
|
colorPickerButtonTooltip(): string;
|
|
@@ -2000,9 +2053,27 @@ declare class ColorInputComponent extends SimpleBaseInputComponent {
|
|
|
2000
2053
|
nativeColorInputAriaLabel(): string;
|
|
2001
2054
|
recentSectionLabel(): string;
|
|
2002
2055
|
paletteSectionLabel(): string;
|
|
2056
|
+
paletteSearchPlaceholder(): string;
|
|
2057
|
+
paletteSearchAriaLabel(): string;
|
|
2058
|
+
paletteSearchClearAriaLabel(): string;
|
|
2059
|
+
paletteNoResultsLabel(): string;
|
|
2060
|
+
paletteContextLabel(version: number): string;
|
|
2061
|
+
paletteResultCountLabel(): string;
|
|
2062
|
+
paletteVariantsAriaLabel(): string;
|
|
2063
|
+
paletteEntryAriaLabel(item: ColorPaletteEntry$1): string;
|
|
2064
|
+
selectGovernedPaletteVariant(option: GovernedPaletteVariantOption$1, event: Event): void;
|
|
2065
|
+
onFilteredPaletteKeydown(event: KeyboardEvent, key: string): void;
|
|
2066
|
+
onPaletteSearchKeydown(event: KeyboardEvent): void;
|
|
2067
|
+
private normalizePaletteSearch;
|
|
2068
|
+
governedPaletteLoadingLabel(): string;
|
|
2069
|
+
governedPaletteUnavailableLabel(): string;
|
|
2070
|
+
private resolveGovernedPalette;
|
|
2071
|
+
private activateGovernedPalette;
|
|
2072
|
+
private normalizeGovernedPaletteRef;
|
|
2003
2073
|
colorSwatchAriaLabel(color: string): string;
|
|
2004
2074
|
colorSwatchTooltip(color: string): string;
|
|
2005
2075
|
private applyColor;
|
|
2076
|
+
private toGovernedSelection;
|
|
2006
2077
|
currentSolidHex(): string;
|
|
2007
2078
|
private pushRecent;
|
|
2008
2079
|
private normalizeHex;
|
|
@@ -2022,7 +2093,7 @@ declare class ColorInputComponent extends SimpleBaseInputComponent {
|
|
|
2022
2093
|
private saveToStorage;
|
|
2023
2094
|
trackColor(_: number, c: string): string;
|
|
2024
2095
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ColorInputComponent, never>;
|
|
2025
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ColorInputComponent, "pdx-color-input", never, { "readonlyMode": { "alias": "readonlyMode"; "required": false; }; "disabledMode": { "alias": "disabledMode"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "presentationMode": { "alias": "presentationMode"; "required": false; }; "palettePreset": { "alias": "palettePreset"; "required": false; }; "paletteColors": { "alias": "paletteColors"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "popupWidth": { "alias": "popupWidth"; "required": false; }; "preview": { "alias": "preview"; "required": false; }; "showRecent": { "alias": "showRecent"; "required": false; }; "maxRecent": { "alias": "maxRecent"; "required": false; }; "showNativeOption": { "alias": "showNativeOption"; "required": false; }; }, { "validationChange": "validationChange"; }, never, never, true, never>;
|
|
2096
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ColorInputComponent, "pdx-color-input", never, { "readonlyMode": { "alias": "readonlyMode"; "required": false; }; "disabledMode": { "alias": "disabledMode"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "presentationMode": { "alias": "presentationMode"; "required": false; }; "palettePreset": { "alias": "palettePreset"; "required": false; }; "paletteColors": { "alias": "paletteColors"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "popupWidth": { "alias": "popupWidth"; "required": false; }; "preview": { "alias": "preview"; "required": false; }; "showRecent": { "alias": "showRecent"; "required": false; }; "maxRecent": { "alias": "maxRecent"; "required": false; }; "showNativeOption": { "alias": "showNativeOption"; "required": false; }; }, { "validationChange": "validationChange"; "governedSelectionChange": "governedSelectionChange"; }, never, never, true, never>;
|
|
2026
2097
|
}
|
|
2027
2098
|
|
|
2028
2099
|
/**
|
|
@@ -2139,9 +2210,15 @@ declare class MaterialDateRangeComponent extends SimpleBaseInputComponent implem
|
|
|
2139
2210
|
private readonly dateAdapter;
|
|
2140
2211
|
private readonly datepickerIntl;
|
|
2141
2212
|
picker: MatDateRangePicker<Date>;
|
|
2213
|
+
private startDateInput?;
|
|
2142
2214
|
private endDateInput?;
|
|
2215
|
+
private readonly accessibleDateInputLabelsEffect;
|
|
2216
|
+
private applyAccessibleDateInputLabel;
|
|
2143
2217
|
readonly shouldShowShortcuts: () => boolean;
|
|
2144
2218
|
readonly shortcutOverlayAriaLabel: _angular_core.Signal<string>;
|
|
2219
|
+
startInputAriaLabel(): string;
|
|
2220
|
+
endInputAriaLabel(): string;
|
|
2221
|
+
private dateInputAriaLabel;
|
|
2145
2222
|
readonly overlayPositions: () => ConnectedPosition[];
|
|
2146
2223
|
private shortcutOverlayBelowPositions;
|
|
2147
2224
|
private shortcutOverlayLeftPositions;
|
|
@@ -5877,6 +5954,7 @@ declare class InlineSentimentComponent extends SimpleBaseSelectComponent {
|
|
|
5877
5954
|
|
|
5878
5955
|
interface ColorLabelOptionVisual {
|
|
5879
5956
|
id: string;
|
|
5957
|
+
group: string;
|
|
5880
5958
|
label: string;
|
|
5881
5959
|
subtitle: string;
|
|
5882
5960
|
color: string;
|
|
@@ -5885,6 +5963,10 @@ interface ColorLabelOptionVisual {
|
|
|
5885
5963
|
selected: boolean;
|
|
5886
5964
|
}
|
|
5887
5965
|
declare class InlineColorLabelComponent extends SimpleBaseSelectComponent<unknown> {
|
|
5966
|
+
private readonly paletteInjector;
|
|
5967
|
+
private readonly governedPaletteColors;
|
|
5968
|
+
readonly governedPaletteStatus: _angular_core.WritableSignal<"loading" | "idle" | "ready" | "unavailable">;
|
|
5969
|
+
private governedPaletteRequestKey;
|
|
5888
5970
|
readonlyMode: boolean;
|
|
5889
5971
|
disabledMode: boolean;
|
|
5890
5972
|
visible: boolean;
|
|
@@ -5922,7 +6004,12 @@ declare class InlineColorLabelComponent extends SimpleBaseSelectComponent<unknow
|
|
|
5922
6004
|
panelTitleText(): string;
|
|
5923
6005
|
panelSubtitleText(): string;
|
|
5924
6006
|
colorLabelOptions(): ColorLabelOptionVisual[];
|
|
6007
|
+
visibleColorLabelOptions(): ColorLabelOptionVisual[];
|
|
5925
6008
|
selectedOptions(): ColorLabelOptionVisual[];
|
|
6009
|
+
visibleColorLabelGroups(): Array<{
|
|
6010
|
+
label: string;
|
|
6011
|
+
options: ColorLabelOptionVisual[];
|
|
6012
|
+
}>;
|
|
5926
6013
|
cardColumns(): number;
|
|
5927
6014
|
optionsGroupAriaLabel(): string;
|
|
5928
6015
|
optionAriaLabel(option: ColorLabelOptionVisual): string;
|
|
@@ -5995,6 +6082,7 @@ declare class InlineColorLabelComponent extends SimpleBaseSelectComponent<unknow
|
|
|
5995
6082
|
private restoreFocusToTrigger;
|
|
5996
6083
|
private multipleMode;
|
|
5997
6084
|
private currentMetadata;
|
|
6085
|
+
private resolveGovernedPalette;
|
|
5998
6086
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InlineColorLabelComponent, never>;
|
|
5999
6087
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InlineColorLabelComponent, "pdx-inline-color-label", 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>;
|
|
6000
6088
|
}
|
|
@@ -7013,6 +7101,45 @@ declare class MaterialRatingComponent extends SimpleBaseInputComponent implement
|
|
|
7013
7101
|
|
|
7014
7102
|
type PickerView = 'gradient' | 'palette';
|
|
7015
7103
|
type ColorFormat = 'hex' | 'rgb' | 'rgba' | 'hsl';
|
|
7104
|
+
interface ColorPaletteEntry {
|
|
7105
|
+
key: string;
|
|
7106
|
+
tokenId: string | null;
|
|
7107
|
+
displayName: string | null;
|
|
7108
|
+
aliases: readonly string[];
|
|
7109
|
+
semanticRole: string | null;
|
|
7110
|
+
purposes: readonly string[];
|
|
7111
|
+
color: string;
|
|
7112
|
+
tooltip: string;
|
|
7113
|
+
}
|
|
7114
|
+
interface GovernedPaletteContext {
|
|
7115
|
+
paletteKey: string;
|
|
7116
|
+
displayName: string;
|
|
7117
|
+
familyKey: string;
|
|
7118
|
+
variantKey: string;
|
|
7119
|
+
variantDisplayName: string;
|
|
7120
|
+
version: number;
|
|
7121
|
+
etag: string;
|
|
7122
|
+
}
|
|
7123
|
+
interface GovernedPaletteVariantOption {
|
|
7124
|
+
palette: GovernedColorPalette;
|
|
7125
|
+
key: string;
|
|
7126
|
+
displayName: string;
|
|
7127
|
+
}
|
|
7128
|
+
interface GovernedContrastRow {
|
|
7129
|
+
key: string;
|
|
7130
|
+
counterpartTokenId: string;
|
|
7131
|
+
counterpartLabel: string;
|
|
7132
|
+
ratio: number;
|
|
7133
|
+
requiredLevel: 'AA' | 'AAA';
|
|
7134
|
+
passes: boolean;
|
|
7135
|
+
selectedIsForeground: boolean;
|
|
7136
|
+
}
|
|
7137
|
+
interface LocalContrastPreviewRow {
|
|
7138
|
+
key: string;
|
|
7139
|
+
surfaceLabel: string;
|
|
7140
|
+
surfaceTokenId: string;
|
|
7141
|
+
ratio: number;
|
|
7142
|
+
}
|
|
7016
7143
|
interface GradientSettings {
|
|
7017
7144
|
showOpacity?: boolean;
|
|
7018
7145
|
channel?: 'hsv' | 'hsl';
|
|
@@ -7028,7 +7155,8 @@ interface PopupSettings {
|
|
|
7028
7155
|
appendTo?: Element | unknown;
|
|
7029
7156
|
}
|
|
7030
7157
|
declare class PdxColorPickerComponent extends SimpleBaseInputComponent implements ControlValueAccessor, OnChanges {
|
|
7031
|
-
private readonly
|
|
7158
|
+
private readonly paletteInjector;
|
|
7159
|
+
private readonly interactivity;
|
|
7032
7160
|
actionsLayout: 'start' | 'end';
|
|
7033
7161
|
activeView: PickerView;
|
|
7034
7162
|
adaptiveMode: boolean;
|
|
@@ -7063,6 +7191,7 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7063
7191
|
showOnlyWhenFilled?: boolean;
|
|
7064
7192
|
};
|
|
7065
7193
|
readonly valueChange: _angular_core.OutputEmitterRef<string | null>;
|
|
7194
|
+
readonly governedSelectionChange: _angular_core.OutputEmitterRef<GovernedColorTokenSelection | null>;
|
|
7066
7195
|
readonly open: _angular_core.OutputEmitterRef<void>;
|
|
7067
7196
|
readonly close: _angular_core.OutputEmitterRef<void>;
|
|
7068
7197
|
readonly cancel: _angular_core.OutputEmitterRef<void>;
|
|
@@ -7072,12 +7201,65 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7072
7201
|
readonly blurEvent: _angular_core.OutputEmitterRef<void>;
|
|
7073
7202
|
toggleBtn?: ElementRef<HTMLButtonElement>;
|
|
7074
7203
|
private menuTrigger?;
|
|
7204
|
+
private pickerContent?;
|
|
7205
|
+
private readonly dialog;
|
|
7206
|
+
private readonly viewContainerRef;
|
|
7207
|
+
private dialogRef?;
|
|
7208
|
+
private readonly narrowViewport;
|
|
7209
|
+
readonly adaptiveOpen: _angular_core.WritableSignal<boolean>;
|
|
7075
7210
|
private readonly current;
|
|
7076
7211
|
private readonly draft;
|
|
7077
7212
|
private readonly draftAlpha;
|
|
7078
7213
|
private readonly configTick;
|
|
7214
|
+
readonly precisionChannels: readonly ["r", "g", "b"];
|
|
7215
|
+
readonly advancedPrecision: _angular_core.WritableSignal<boolean>;
|
|
7216
|
+
readonly polarModes: readonly ["hsv", "hsl"];
|
|
7217
|
+
readonly polarChannels: readonly ["h", "s", "level"];
|
|
7218
|
+
readonly polarMode: _angular_core.WritableSignal<"hsl" | "hsv">;
|
|
7219
|
+
readonly planeColor: _angular_core.WritableSignal<{
|
|
7220
|
+
h: number;
|
|
7221
|
+
s: number;
|
|
7222
|
+
v: number;
|
|
7223
|
+
a: number;
|
|
7224
|
+
}>;
|
|
7225
|
+
readonly planeHue: _angular_core.Signal<string>;
|
|
7226
|
+
readonly precisionPolar: FormGroup<{
|
|
7227
|
+
h: FormControl<number | null>;
|
|
7228
|
+
s: FormControl<number | null>;
|
|
7229
|
+
level: FormControl<number | null>;
|
|
7230
|
+
}>;
|
|
7231
|
+
private planePointer;
|
|
7232
|
+
readonly precisionRgb: FormGroup<{
|
|
7233
|
+
r: FormControl<number | null>;
|
|
7234
|
+
g: FormControl<number | null>;
|
|
7235
|
+
b: FormControl<number | null>;
|
|
7236
|
+
}>;
|
|
7237
|
+
readonly precisionHex: FormControl<string>;
|
|
7238
|
+
readonly precisionInvalid: _angular_core.WritableSignal<boolean>;
|
|
7239
|
+
readonly tokenDraft: _angular_core.Signal<boolean>;
|
|
7240
|
+
private readonly governedPaletteEntries;
|
|
7241
|
+
readonly governedSelectionDraft: _angular_core.WritableSignal<GovernedColorTokenSelection | null>;
|
|
7242
|
+
private readonly activeGovernedPalette;
|
|
7243
|
+
readonly governedContrastRows: _angular_core.Signal<GovernedContrastRow[]>;
|
|
7244
|
+
readonly localContrastPreviewActive: _angular_core.Signal<boolean>;
|
|
7245
|
+
readonly localContrastPreviewRows: _angular_core.Signal<LocalContrastPreviewRow[]>;
|
|
7246
|
+
private readonly governedPaletteColors;
|
|
7247
|
+
readonly paletteSearchTerm: _angular_core.WritableSignal<string>;
|
|
7248
|
+
readonly governedPaletteContext: _angular_core.WritableSignal<GovernedPaletteContext | null>;
|
|
7249
|
+
readonly governedPaletteVariants: _angular_core.WritableSignal<GovernedPaletteVariantOption[]>;
|
|
7250
|
+
readonly paletteEntries: _angular_core.Signal<ColorPaletteEntry[]>;
|
|
7251
|
+
readonly filteredPaletteEntries: _angular_core.Signal<ColorPaletteEntry[]>;
|
|
7252
|
+
readonly paletteGroups: _angular_core.Signal<{
|
|
7253
|
+
key: string;
|
|
7254
|
+
label: string;
|
|
7255
|
+
items: ColorPaletteEntry[];
|
|
7256
|
+
}[]>;
|
|
7257
|
+
readonly governedPaletteConfigured: _angular_core.WritableSignal<boolean>;
|
|
7258
|
+
readonly governedPaletteStatus: _angular_core.WritableSignal<"loading" | "idle" | "ready" | "unavailable">;
|
|
7259
|
+
private governedPaletteRequestKey;
|
|
7260
|
+
private readonly governedPalettePurposes;
|
|
7079
7261
|
panelWidthPx: number;
|
|
7080
|
-
constructor(
|
|
7262
|
+
constructor();
|
|
7081
7263
|
ngOnChanges(_changes: SimpleChanges): void;
|
|
7082
7264
|
private resolveClearButtonConfig;
|
|
7083
7265
|
showClearAction(): boolean;
|
|
@@ -7092,7 +7274,28 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7092
7274
|
paletteTabLabel(): string;
|
|
7093
7275
|
opacityLabel(): string;
|
|
7094
7276
|
recentSectionLabel(): string;
|
|
7277
|
+
governedPaletteLoadingLabel(): string;
|
|
7278
|
+
governedPaletteUnavailableLabel(): string;
|
|
7095
7279
|
addPaletteColorLabel(): string;
|
|
7280
|
+
paletteSearchPlaceholder(): string;
|
|
7281
|
+
paletteSearchAriaLabel(): string;
|
|
7282
|
+
paletteSearchClearAriaLabel(): string;
|
|
7283
|
+
paletteNoResultsLabel(): string;
|
|
7284
|
+
paletteContextLabel(version: number): string;
|
|
7285
|
+
paletteResultCountLabel(): string;
|
|
7286
|
+
paletteVariantsAriaLabel(): string;
|
|
7287
|
+
paletteEntryAriaLabel(item: ColorPaletteEntry): string;
|
|
7288
|
+
contrastDiagnosticTitle(): string;
|
|
7289
|
+
contrastOnLabel(): string;
|
|
7290
|
+
contrastAgainstLabel(): string;
|
|
7291
|
+
contrastPassLabel(): string;
|
|
7292
|
+
contrastFailLabel(): string;
|
|
7293
|
+
contrastNoEvidenceLabel(): string;
|
|
7294
|
+
localContrastPreviewTitle(): string;
|
|
7295
|
+
localContrastPreviewSubtitle(): string;
|
|
7296
|
+
localContrastNoSurfacesLabel(): string;
|
|
7297
|
+
selectGovernedPaletteVariant(option: GovernedPaletteVariantOption, event: Event): void;
|
|
7298
|
+
private normalizePaletteSearch;
|
|
7096
7299
|
colorSwatchAriaLabel(color: string): string;
|
|
7097
7300
|
cancelActionLabel(): string;
|
|
7098
7301
|
applyActionLabel(): string;
|
|
@@ -7100,6 +7303,7 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7100
7303
|
writeValue(obj: unknown): void;
|
|
7101
7304
|
handleFocus(): void;
|
|
7102
7305
|
handleBlur(): void;
|
|
7306
|
+
useAdaptiveOverlay(): boolean;
|
|
7103
7307
|
openPicker(): void;
|
|
7104
7308
|
onClose(): void;
|
|
7105
7309
|
selectedTabIndex: _angular_core.WritableSignal<number>;
|
|
@@ -7115,8 +7319,12 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7115
7319
|
private readonly customColors;
|
|
7116
7320
|
readonly recentColors: _angular_core.WritableSignal<string[]>;
|
|
7117
7321
|
paletteColors: _angular_core.Signal<string[]>;
|
|
7322
|
+
private resolveGovernedPalette;
|
|
7323
|
+
private activateGovernedPalette;
|
|
7324
|
+
private toGovernedSelection;
|
|
7325
|
+
private asGovernedPaletteRef;
|
|
7118
7326
|
trackColor(_: number, c: string): string;
|
|
7119
|
-
onSwatchClick(
|
|
7327
|
+
onSwatchClick(value: string | ColorPaletteEntry): void;
|
|
7120
7328
|
addPaletteColor(): void;
|
|
7121
7329
|
private pushRecent;
|
|
7122
7330
|
copyDraft(): void;
|
|
@@ -7124,6 +7332,20 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7124
7332
|
onClear(): void;
|
|
7125
7333
|
onCancel(): void;
|
|
7126
7334
|
onApply(): void;
|
|
7335
|
+
private closePickerOverlay;
|
|
7336
|
+
private isCssVariableReference;
|
|
7337
|
+
precisionLabel(key: string): string;
|
|
7338
|
+
onPrecisionKeydown(event: KeyboardEvent): void;
|
|
7339
|
+
onPanelKeydown(event: KeyboardEvent): void;
|
|
7340
|
+
focusPrecisionEditor(): void;
|
|
7341
|
+
setPolarMode(mode: 'hsv' | 'hsl'): void;
|
|
7342
|
+
onHue(event: Event): void;
|
|
7343
|
+
togglePrecision(): void;
|
|
7344
|
+
startPlane(event: PointerEvent): void;
|
|
7345
|
+
movePlane(event: PointerEvent): void;
|
|
7346
|
+
endPlane(event: PointerEvent): void;
|
|
7347
|
+
private syncPolar;
|
|
7348
|
+
private syncPrecision;
|
|
7127
7349
|
readonlyEffective(): boolean;
|
|
7128
7350
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
7129
7351
|
protected getSpecificCssClasses(): string[];
|
|
@@ -7132,11 +7354,9 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7132
7354
|
private currentMetadataRecord;
|
|
7133
7355
|
private asRecord;
|
|
7134
7356
|
private toFormat;
|
|
7357
|
+
private resolveRgba;
|
|
7135
7358
|
private toHex;
|
|
7136
|
-
private toRgb;
|
|
7137
|
-
private toHsl;
|
|
7138
7359
|
private extractAlpha;
|
|
7139
|
-
private clamp01;
|
|
7140
7360
|
private buildPaletteColors;
|
|
7141
7361
|
private defaultColor;
|
|
7142
7362
|
private defaultHex;
|
|
@@ -7150,7 +7370,7 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7150
7370
|
private loadFromStorage;
|
|
7151
7371
|
private saveToStorage;
|
|
7152
7372
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PdxColorPickerComponent, never>;
|
|
7153
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PdxColorPickerComponent, "pdx-color-picker", never, { "actionsLayout": { "alias": "actionsLayout"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "adaptiveTitle": { "alias": "adaptiveTitle"; "required": false; }; "adaptiveSubtitle": { "alias": "adaptiveSubtitle"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "disabledMode": { "alias": "disabledMode"; "required": false; }; "readonlyMode": { "alias": "readonlyMode"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "presentationMode": { "alias": "presentationMode"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "format": { "alias": "format"; "required": false; }; "gradientSettings": { "alias": "gradientSettings"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "paletteSettings": { "alias": "paletteSettings"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "preview": { "alias": "preview"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "views": { "alias": "views"; "required": false; }; "maxRecent": { "alias": "maxRecent"; "required": false; }; "showRecent": { "alias": "showRecent"; "required": false; }; }, { "valueChange": "valueChange"; "open": "open"; "close": "close"; "cancel": "cancel"; "activeViewChange": "activeViewChange"; "activeColorClick": "activeColorClick"; "focusEvent": "focusEvent"; "blurEvent": "blurEvent"; }, never, never, true, never>;
|
|
7373
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PdxColorPickerComponent, "pdx-color-picker", never, { "actionsLayout": { "alias": "actionsLayout"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "adaptiveTitle": { "alias": "adaptiveTitle"; "required": false; }; "adaptiveSubtitle": { "alias": "adaptiveSubtitle"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "disabledMode": { "alias": "disabledMode"; "required": false; }; "readonlyMode": { "alias": "readonlyMode"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "presentationMode": { "alias": "presentationMode"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "format": { "alias": "format"; "required": false; }; "gradientSettings": { "alias": "gradientSettings"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "paletteSettings": { "alias": "paletteSettings"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "preview": { "alias": "preview"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "views": { "alias": "views"; "required": false; }; "maxRecent": { "alias": "maxRecent"; "required": false; }; "showRecent": { "alias": "showRecent"; "required": false; }; }, { "valueChange": "valueChange"; "governedSelectionChange": "governedSelectionChange"; "open": "open"; "close": "close"; "cancel": "cancel"; "activeViewChange": "activeViewChange"; "activeColorClick": "activeColorClick"; "focusEvent": "focusEvent"; "blurEvent": "blurEvent"; }, never, never, true, never>;
|
|
7154
7374
|
}
|
|
7155
7375
|
|
|
7156
7376
|
interface SliderDistributionBar {
|
|
@@ -7898,6 +8118,7 @@ declare function createDynamicFieldPreviewRecipe(input: {
|
|
|
7898
8118
|
|
|
7899
8119
|
declare const DYNAMIC_FIELDS_PLAYGROUND_CATALOG: DynamicFieldCatalogEntry[];
|
|
7900
8120
|
|
|
8121
|
+
declare const INLINE_COLOR_LABEL_AI_CAPABILITIES: CapabilityCatalog;
|
|
7901
8122
|
declare const CONTROL_TYPE_AI_CATALOGS: Partial<Record<FieldControlType, CapabilityCatalog>>;
|
|
7902
8123
|
declare function getControlTypeCatalog(controlType?: FieldControlType | string | null): CapabilityCatalog;
|
|
7903
8124
|
|
|
@@ -8198,5 +8419,5 @@ declare function normalizeFormMetadata(input: FieldMetadata[] | JsonSchema): Fie
|
|
|
8198
8419
|
declare const CLEAR_BUTTON_CONTROL_TYPES: Set<string>;
|
|
8199
8420
|
declare function supportsClearButtonControlType(controlType?: string | null): boolean;
|
|
8200
8421
|
|
|
8201
|
-
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, DISTANCE_RADIUS_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, InlineMaskedValueAccessorDirective, 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, OptionDisplayResolverService, 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, applyAlphaToColor, bindDynamicFieldsLoggerBackendFromInjector, clearDynamicFieldsLoggerBackend, configureDynamicFieldsLogger, createDynamicFieldPreviewRecipe, createErrorStateMatcher, createPraxisDynamicFieldsI18nConfig, emitToDynamicFieldsLoggerBackend, enableDebugForComponent, getControlTypeCatalog, getErrorStateMatcherForField, inferErrorStateStrategy, initializeComponentSystem, initializeComponentSystemSync, interpolateThreeStopGradientColor, isBaseDynamicFieldComponent, isLoadingCapableComponent, isValidCssColor, isValidJsonSchema, isValueBasedComponent, logger, mapJsonSchemaToFields, mapPropertyToFieldMetadata, normalizeCssColorToRgb, normalizeFormMetadata, provideMaterialAvatarMetadata, providePraxisDynamicFields, providePraxisDynamicFieldsCore, providePraxisDynamicFieldsCoreNoDefaults, providePraxisDynamicFieldsI18n, providePraxisDynamicFieldsNoDefaults, providePraxisDynamicFieldsWave1EditorialRegistry, registerPraxisDynamicFieldsWave1EditorialDescriptors, resolvePraxisDynamicFieldsText, setDynamicFieldsLoggerBackend, silenceComponent, supportsClearButtonControlType };
|
|
8422
|
+
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, DISTANCE_RADIUS_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, INLINE_COLOR_LABEL_AI_CAPABILITIES, InlineAsyncSelectComponent, InlineAutocompleteComponent, InlineColorLabelComponent, InlineCurrencyComponent, InlineCurrencyRangeComponent, InlineDateComponent, InlineDateRangeComponent, InlineDistanceRadiusComponent, InlineEntityLookupComponent, InlineInputComponent, InlineMaskedValueAccessorDirective, 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, OptionDisplayResolverService, 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, applyAlphaToColor, bindDynamicFieldsLoggerBackendFromInjector, clearDynamicFieldsLoggerBackend, configureDynamicFieldsLogger, createDynamicFieldPreviewRecipe, createErrorStateMatcher, createPraxisDynamicFieldsI18nConfig, emitToDynamicFieldsLoggerBackend, enableDebugForComponent, getControlTypeCatalog, getErrorStateMatcherForField, inferErrorStateStrategy, initializeComponentSystem, initializeComponentSystemSync, interpolateThreeStopGradientColor, isBaseDynamicFieldComponent, isLoadingCapableComponent, isValidCssColor, isValidJsonSchema, isValueBasedComponent, logger, mapJsonSchemaToFields, mapPropertyToFieldMetadata, normalizeCssColorToRgb, normalizeFormMetadata, provideMaterialAvatarMetadata, providePraxisDynamicFields, providePraxisDynamicFieldsCore, providePraxisDynamicFieldsCoreNoDefaults, providePraxisDynamicFieldsI18n, providePraxisDynamicFieldsNoDefaults, providePraxisDynamicFieldsWave1EditorialRegistry, registerPraxisDynamicFieldsWave1EditorialDescriptors, resolvePraxisDynamicFieldsText, setDynamicFieldsLoggerBackend, silenceComponent, supportsClearButtonControlType };
|
|
8202
8423
|
export type { BaseDynamicFieldComponent, BaseValidationConfig, ComponentLifecycleEvent, ComponentLoadResult, ComponentRegistration, ConfirmDialogData, CssRgbColor, 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 };
|