@praxisui/dynamic-fields 9.0.66 → 9.0.67
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 +28 -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 +4236 -936
- 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 +227 -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
|
/**
|
|
@@ -5877,6 +5948,7 @@ declare class InlineSentimentComponent extends SimpleBaseSelectComponent {
|
|
|
5877
5948
|
|
|
5878
5949
|
interface ColorLabelOptionVisual {
|
|
5879
5950
|
id: string;
|
|
5951
|
+
group: string;
|
|
5880
5952
|
label: string;
|
|
5881
5953
|
subtitle: string;
|
|
5882
5954
|
color: string;
|
|
@@ -5885,6 +5957,10 @@ interface ColorLabelOptionVisual {
|
|
|
5885
5957
|
selected: boolean;
|
|
5886
5958
|
}
|
|
5887
5959
|
declare class InlineColorLabelComponent extends SimpleBaseSelectComponent<unknown> {
|
|
5960
|
+
private readonly paletteInjector;
|
|
5961
|
+
private readonly governedPaletteColors;
|
|
5962
|
+
readonly governedPaletteStatus: _angular_core.WritableSignal<"loading" | "idle" | "ready" | "unavailable">;
|
|
5963
|
+
private governedPaletteRequestKey;
|
|
5888
5964
|
readonlyMode: boolean;
|
|
5889
5965
|
disabledMode: boolean;
|
|
5890
5966
|
visible: boolean;
|
|
@@ -5922,7 +5998,12 @@ declare class InlineColorLabelComponent extends SimpleBaseSelectComponent<unknow
|
|
|
5922
5998
|
panelTitleText(): string;
|
|
5923
5999
|
panelSubtitleText(): string;
|
|
5924
6000
|
colorLabelOptions(): ColorLabelOptionVisual[];
|
|
6001
|
+
visibleColorLabelOptions(): ColorLabelOptionVisual[];
|
|
5925
6002
|
selectedOptions(): ColorLabelOptionVisual[];
|
|
6003
|
+
visibleColorLabelGroups(): Array<{
|
|
6004
|
+
label: string;
|
|
6005
|
+
options: ColorLabelOptionVisual[];
|
|
6006
|
+
}>;
|
|
5926
6007
|
cardColumns(): number;
|
|
5927
6008
|
optionsGroupAriaLabel(): string;
|
|
5928
6009
|
optionAriaLabel(option: ColorLabelOptionVisual): string;
|
|
@@ -5995,6 +6076,7 @@ declare class InlineColorLabelComponent extends SimpleBaseSelectComponent<unknow
|
|
|
5995
6076
|
private restoreFocusToTrigger;
|
|
5996
6077
|
private multipleMode;
|
|
5997
6078
|
private currentMetadata;
|
|
6079
|
+
private resolveGovernedPalette;
|
|
5998
6080
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InlineColorLabelComponent, never>;
|
|
5999
6081
|
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
6082
|
}
|
|
@@ -7013,6 +7095,45 @@ declare class MaterialRatingComponent extends SimpleBaseInputComponent implement
|
|
|
7013
7095
|
|
|
7014
7096
|
type PickerView = 'gradient' | 'palette';
|
|
7015
7097
|
type ColorFormat = 'hex' | 'rgb' | 'rgba' | 'hsl';
|
|
7098
|
+
interface ColorPaletteEntry {
|
|
7099
|
+
key: string;
|
|
7100
|
+
tokenId: string | null;
|
|
7101
|
+
displayName: string | null;
|
|
7102
|
+
aliases: readonly string[];
|
|
7103
|
+
semanticRole: string | null;
|
|
7104
|
+
purposes: readonly string[];
|
|
7105
|
+
color: string;
|
|
7106
|
+
tooltip: string;
|
|
7107
|
+
}
|
|
7108
|
+
interface GovernedPaletteContext {
|
|
7109
|
+
paletteKey: string;
|
|
7110
|
+
displayName: string;
|
|
7111
|
+
familyKey: string;
|
|
7112
|
+
variantKey: string;
|
|
7113
|
+
variantDisplayName: string;
|
|
7114
|
+
version: number;
|
|
7115
|
+
etag: string;
|
|
7116
|
+
}
|
|
7117
|
+
interface GovernedPaletteVariantOption {
|
|
7118
|
+
palette: GovernedColorPalette;
|
|
7119
|
+
key: string;
|
|
7120
|
+
displayName: string;
|
|
7121
|
+
}
|
|
7122
|
+
interface GovernedContrastRow {
|
|
7123
|
+
key: string;
|
|
7124
|
+
counterpartTokenId: string;
|
|
7125
|
+
counterpartLabel: string;
|
|
7126
|
+
ratio: number;
|
|
7127
|
+
requiredLevel: 'AA' | 'AAA';
|
|
7128
|
+
passes: boolean;
|
|
7129
|
+
selectedIsForeground: boolean;
|
|
7130
|
+
}
|
|
7131
|
+
interface LocalContrastPreviewRow {
|
|
7132
|
+
key: string;
|
|
7133
|
+
surfaceLabel: string;
|
|
7134
|
+
surfaceTokenId: string;
|
|
7135
|
+
ratio: number;
|
|
7136
|
+
}
|
|
7016
7137
|
interface GradientSettings {
|
|
7017
7138
|
showOpacity?: boolean;
|
|
7018
7139
|
channel?: 'hsv' | 'hsl';
|
|
@@ -7028,7 +7149,8 @@ interface PopupSettings {
|
|
|
7028
7149
|
appendTo?: Element | unknown;
|
|
7029
7150
|
}
|
|
7030
7151
|
declare class PdxColorPickerComponent extends SimpleBaseInputComponent implements ControlValueAccessor, OnChanges {
|
|
7031
|
-
private readonly
|
|
7152
|
+
private readonly paletteInjector;
|
|
7153
|
+
private readonly interactivity;
|
|
7032
7154
|
actionsLayout: 'start' | 'end';
|
|
7033
7155
|
activeView: PickerView;
|
|
7034
7156
|
adaptiveMode: boolean;
|
|
@@ -7063,6 +7185,7 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7063
7185
|
showOnlyWhenFilled?: boolean;
|
|
7064
7186
|
};
|
|
7065
7187
|
readonly valueChange: _angular_core.OutputEmitterRef<string | null>;
|
|
7188
|
+
readonly governedSelectionChange: _angular_core.OutputEmitterRef<GovernedColorTokenSelection | null>;
|
|
7066
7189
|
readonly open: _angular_core.OutputEmitterRef<void>;
|
|
7067
7190
|
readonly close: _angular_core.OutputEmitterRef<void>;
|
|
7068
7191
|
readonly cancel: _angular_core.OutputEmitterRef<void>;
|
|
@@ -7072,12 +7195,65 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7072
7195
|
readonly blurEvent: _angular_core.OutputEmitterRef<void>;
|
|
7073
7196
|
toggleBtn?: ElementRef<HTMLButtonElement>;
|
|
7074
7197
|
private menuTrigger?;
|
|
7198
|
+
private pickerContent?;
|
|
7199
|
+
private readonly dialog;
|
|
7200
|
+
private readonly viewContainerRef;
|
|
7201
|
+
private dialogRef?;
|
|
7202
|
+
private readonly narrowViewport;
|
|
7203
|
+
readonly adaptiveOpen: _angular_core.WritableSignal<boolean>;
|
|
7075
7204
|
private readonly current;
|
|
7076
7205
|
private readonly draft;
|
|
7077
7206
|
private readonly draftAlpha;
|
|
7078
7207
|
private readonly configTick;
|
|
7208
|
+
readonly precisionChannels: readonly ["r", "g", "b"];
|
|
7209
|
+
readonly advancedPrecision: _angular_core.WritableSignal<boolean>;
|
|
7210
|
+
readonly polarModes: readonly ["hsv", "hsl"];
|
|
7211
|
+
readonly polarChannels: readonly ["h", "s", "level"];
|
|
7212
|
+
readonly polarMode: _angular_core.WritableSignal<"hsl" | "hsv">;
|
|
7213
|
+
readonly planeColor: _angular_core.WritableSignal<{
|
|
7214
|
+
h: number;
|
|
7215
|
+
s: number;
|
|
7216
|
+
v: number;
|
|
7217
|
+
a: number;
|
|
7218
|
+
}>;
|
|
7219
|
+
readonly planeHue: _angular_core.Signal<string>;
|
|
7220
|
+
readonly precisionPolar: FormGroup<{
|
|
7221
|
+
h: FormControl<number | null>;
|
|
7222
|
+
s: FormControl<number | null>;
|
|
7223
|
+
level: FormControl<number | null>;
|
|
7224
|
+
}>;
|
|
7225
|
+
private planePointer;
|
|
7226
|
+
readonly precisionRgb: FormGroup<{
|
|
7227
|
+
r: FormControl<number | null>;
|
|
7228
|
+
g: FormControl<number | null>;
|
|
7229
|
+
b: FormControl<number | null>;
|
|
7230
|
+
}>;
|
|
7231
|
+
readonly precisionHex: FormControl<string>;
|
|
7232
|
+
readonly precisionInvalid: _angular_core.WritableSignal<boolean>;
|
|
7233
|
+
readonly tokenDraft: _angular_core.Signal<boolean>;
|
|
7234
|
+
private readonly governedPaletteEntries;
|
|
7235
|
+
readonly governedSelectionDraft: _angular_core.WritableSignal<GovernedColorTokenSelection | null>;
|
|
7236
|
+
private readonly activeGovernedPalette;
|
|
7237
|
+
readonly governedContrastRows: _angular_core.Signal<GovernedContrastRow[]>;
|
|
7238
|
+
readonly localContrastPreviewActive: _angular_core.Signal<boolean>;
|
|
7239
|
+
readonly localContrastPreviewRows: _angular_core.Signal<LocalContrastPreviewRow[]>;
|
|
7240
|
+
private readonly governedPaletteColors;
|
|
7241
|
+
readonly paletteSearchTerm: _angular_core.WritableSignal<string>;
|
|
7242
|
+
readonly governedPaletteContext: _angular_core.WritableSignal<GovernedPaletteContext | null>;
|
|
7243
|
+
readonly governedPaletteVariants: _angular_core.WritableSignal<GovernedPaletteVariantOption[]>;
|
|
7244
|
+
readonly paletteEntries: _angular_core.Signal<ColorPaletteEntry[]>;
|
|
7245
|
+
readonly filteredPaletteEntries: _angular_core.Signal<ColorPaletteEntry[]>;
|
|
7246
|
+
readonly paletteGroups: _angular_core.Signal<{
|
|
7247
|
+
key: string;
|
|
7248
|
+
label: string;
|
|
7249
|
+
items: ColorPaletteEntry[];
|
|
7250
|
+
}[]>;
|
|
7251
|
+
readonly governedPaletteConfigured: _angular_core.WritableSignal<boolean>;
|
|
7252
|
+
readonly governedPaletteStatus: _angular_core.WritableSignal<"loading" | "idle" | "ready" | "unavailable">;
|
|
7253
|
+
private governedPaletteRequestKey;
|
|
7254
|
+
private readonly governedPalettePurposes;
|
|
7079
7255
|
panelWidthPx: number;
|
|
7080
|
-
constructor(
|
|
7256
|
+
constructor();
|
|
7081
7257
|
ngOnChanges(_changes: SimpleChanges): void;
|
|
7082
7258
|
private resolveClearButtonConfig;
|
|
7083
7259
|
showClearAction(): boolean;
|
|
@@ -7092,7 +7268,28 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7092
7268
|
paletteTabLabel(): string;
|
|
7093
7269
|
opacityLabel(): string;
|
|
7094
7270
|
recentSectionLabel(): string;
|
|
7271
|
+
governedPaletteLoadingLabel(): string;
|
|
7272
|
+
governedPaletteUnavailableLabel(): string;
|
|
7095
7273
|
addPaletteColorLabel(): string;
|
|
7274
|
+
paletteSearchPlaceholder(): string;
|
|
7275
|
+
paletteSearchAriaLabel(): string;
|
|
7276
|
+
paletteSearchClearAriaLabel(): string;
|
|
7277
|
+
paletteNoResultsLabel(): string;
|
|
7278
|
+
paletteContextLabel(version: number): string;
|
|
7279
|
+
paletteResultCountLabel(): string;
|
|
7280
|
+
paletteVariantsAriaLabel(): string;
|
|
7281
|
+
paletteEntryAriaLabel(item: ColorPaletteEntry): string;
|
|
7282
|
+
contrastDiagnosticTitle(): string;
|
|
7283
|
+
contrastOnLabel(): string;
|
|
7284
|
+
contrastAgainstLabel(): string;
|
|
7285
|
+
contrastPassLabel(): string;
|
|
7286
|
+
contrastFailLabel(): string;
|
|
7287
|
+
contrastNoEvidenceLabel(): string;
|
|
7288
|
+
localContrastPreviewTitle(): string;
|
|
7289
|
+
localContrastPreviewSubtitle(): string;
|
|
7290
|
+
localContrastNoSurfacesLabel(): string;
|
|
7291
|
+
selectGovernedPaletteVariant(option: GovernedPaletteVariantOption, event: Event): void;
|
|
7292
|
+
private normalizePaletteSearch;
|
|
7096
7293
|
colorSwatchAriaLabel(color: string): string;
|
|
7097
7294
|
cancelActionLabel(): string;
|
|
7098
7295
|
applyActionLabel(): string;
|
|
@@ -7100,6 +7297,7 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7100
7297
|
writeValue(obj: unknown): void;
|
|
7101
7298
|
handleFocus(): void;
|
|
7102
7299
|
handleBlur(): void;
|
|
7300
|
+
useAdaptiveOverlay(): boolean;
|
|
7103
7301
|
openPicker(): void;
|
|
7104
7302
|
onClose(): void;
|
|
7105
7303
|
selectedTabIndex: _angular_core.WritableSignal<number>;
|
|
@@ -7115,8 +7313,12 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7115
7313
|
private readonly customColors;
|
|
7116
7314
|
readonly recentColors: _angular_core.WritableSignal<string[]>;
|
|
7117
7315
|
paletteColors: _angular_core.Signal<string[]>;
|
|
7316
|
+
private resolveGovernedPalette;
|
|
7317
|
+
private activateGovernedPalette;
|
|
7318
|
+
private toGovernedSelection;
|
|
7319
|
+
private asGovernedPaletteRef;
|
|
7118
7320
|
trackColor(_: number, c: string): string;
|
|
7119
|
-
onSwatchClick(
|
|
7321
|
+
onSwatchClick(value: string | ColorPaletteEntry): void;
|
|
7120
7322
|
addPaletteColor(): void;
|
|
7121
7323
|
private pushRecent;
|
|
7122
7324
|
copyDraft(): void;
|
|
@@ -7124,6 +7326,20 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7124
7326
|
onClear(): void;
|
|
7125
7327
|
onCancel(): void;
|
|
7126
7328
|
onApply(): void;
|
|
7329
|
+
private closePickerOverlay;
|
|
7330
|
+
private isCssVariableReference;
|
|
7331
|
+
precisionLabel(key: string): string;
|
|
7332
|
+
onPrecisionKeydown(event: KeyboardEvent): void;
|
|
7333
|
+
onPanelKeydown(event: KeyboardEvent): void;
|
|
7334
|
+
focusPrecisionEditor(): void;
|
|
7335
|
+
setPolarMode(mode: 'hsv' | 'hsl'): void;
|
|
7336
|
+
onHue(event: Event): void;
|
|
7337
|
+
togglePrecision(): void;
|
|
7338
|
+
startPlane(event: PointerEvent): void;
|
|
7339
|
+
movePlane(event: PointerEvent): void;
|
|
7340
|
+
endPlane(event: PointerEvent): void;
|
|
7341
|
+
private syncPolar;
|
|
7342
|
+
private syncPrecision;
|
|
7127
7343
|
readonlyEffective(): boolean;
|
|
7128
7344
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
7129
7345
|
protected getSpecificCssClasses(): string[];
|
|
@@ -7132,11 +7348,9 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7132
7348
|
private currentMetadataRecord;
|
|
7133
7349
|
private asRecord;
|
|
7134
7350
|
private toFormat;
|
|
7351
|
+
private resolveRgba;
|
|
7135
7352
|
private toHex;
|
|
7136
|
-
private toRgb;
|
|
7137
|
-
private toHsl;
|
|
7138
7353
|
private extractAlpha;
|
|
7139
|
-
private clamp01;
|
|
7140
7354
|
private buildPaletteColors;
|
|
7141
7355
|
private defaultColor;
|
|
7142
7356
|
private defaultHex;
|
|
@@ -7150,7 +7364,7 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
7150
7364
|
private loadFromStorage;
|
|
7151
7365
|
private saveToStorage;
|
|
7152
7366
|
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>;
|
|
7367
|
+
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
7368
|
}
|
|
7155
7369
|
|
|
7156
7370
|
interface SliderDistributionBar {
|
|
@@ -7898,6 +8112,7 @@ declare function createDynamicFieldPreviewRecipe(input: {
|
|
|
7898
8112
|
|
|
7899
8113
|
declare const DYNAMIC_FIELDS_PLAYGROUND_CATALOG: DynamicFieldCatalogEntry[];
|
|
7900
8114
|
|
|
8115
|
+
declare const INLINE_COLOR_LABEL_AI_CAPABILITIES: CapabilityCatalog;
|
|
7901
8116
|
declare const CONTROL_TYPE_AI_CATALOGS: Partial<Record<FieldControlType, CapabilityCatalog>>;
|
|
7902
8117
|
declare function getControlTypeCatalog(controlType?: FieldControlType | string | null): CapabilityCatalog;
|
|
7903
8118
|
|
|
@@ -8198,5 +8413,5 @@ declare function normalizeFormMetadata(input: FieldMetadata[] | JsonSchema): Fie
|
|
|
8198
8413
|
declare const CLEAR_BUTTON_CONTROL_TYPES: Set<string>;
|
|
8199
8414
|
declare function supportsClearButtonControlType(controlType?: string | null): boolean;
|
|
8200
8415
|
|
|
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 };
|
|
8416
|
+
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
8417
|
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 };
|