@praxisui/dynamic-fields 8.0.0-beta.98 → 9.0.0-beta.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 +2 -2
- package/docs/dynamic-fields-inline-components-guide.md +36 -24
- package/fesm2022/praxisui-dynamic-fields.mjs +3699 -345
- package/package.json +3 -3
- package/src/lib/base/pdx-base-input-runtime-contract.json-api.md +4 -4
- package/src/lib/components/inline-color-label/pdx-inline-color-label.json-api.md +43 -2
- package/src/lib/components/inline-currency-range/pdx-inline-currency-range.json-api.md +15 -0
- package/src/lib/components/inline-date/pdx-inline-date.json-api.md +10 -2
- package/src/lib/components/inline-date-range/pdx-inline-date-range.json-api.md +26 -9
- package/src/lib/components/inline-distance-radius/pdx-inline-distance-radius.json-api.md +7 -0
- package/src/lib/components/inline-multi-select/pdx-inline-multi-select.json-api.md +24 -3
- package/src/lib/components/inline-pipeline-status/pdx-inline-pipeline-status.json-api.md +17 -0
- package/src/lib/components/inline-range-slider/pdx-inline-range-slider.json-api.md +8 -1
- package/src/lib/components/inline-rating/pdx-inline-rating.json-api.md +13 -0
- package/src/lib/components/inline-relative-period/pdx-inline-relative-period.json-api.md +13 -0
- package/src/lib/components/inline-score-priority/pdx-inline-score-priority.json-api.md +13 -0
- package/src/lib/components/inline-sentiment/pdx-inline-sentiment.json-api.md +20 -2
- package/src/lib/components/inline-time-range/pdx-inline-time-range.json-api.md +13 -0
- package/src/lib/components/material-cpf-cnpj-input/pdx-material-cpf-cnpj-input.json-api.md +4 -3
- package/src/lib/components/material-price-range/pdx-material-price-range.json-api.md +4 -0
- package/src/lib/components/material-slide-toggle/pdx-material-slide-toggle.json-api.md +26 -22
- package/types/praxisui-dynamic-fields.d.ts +381 -4
|
@@ -3,7 +3,7 @@ import { WritableSignal, InjectionToken, Provider, OnInit, OnDestroy, AfterViewI
|
|
|
3
3
|
import { AbstractControl, ControlValueAccessor, NgControl, ValidationErrors, FormControl, FormGroup, FormArray, FormGroupDirective, NgForm } from '@angular/forms';
|
|
4
4
|
import { Observable, BehaviorSubject, Subscription } from 'rxjs';
|
|
5
5
|
import * as _praxisui_core from '@praxisui/core';
|
|
6
|
-
import { ComponentMetadata, PraxisTextValue, PraxisI18nDictionary, PraxisI18nConfig, PraxisI18nMessageDescriptor, PraxisI18nService, GlobalActionService, GlobalActionRef, OptionSourceMetadata, GenericCrudService, GlobalConfigService, OptionDTO, ComponentMetadataEditorialDescriptor, ComponentDocMeta, ComponentMetadataRegistry, FieldMetadata, MaterialButtonMetadata, FieldArrayConfig, MaterialInputMetadata, MaterialColorInputMetadata, MaterialDateInputMetadata, MaterialDatepickerMetadata, MaterialDateRangeMetadata, DateRangePreset, DateRangeValue, MaterialDatetimeLocalInputMetadata, MaterialEmailInputMetadata, MaterialTextareaMetadata, MaterialNumericMetadata, MaterialCurrencyMetadata, MaterialCpfCnpjMetadata, MaterialPriceRangeMetadata, MaterialMonthInputMetadata, MaterialPasswordMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, LookupFilterRequest, LookupFilteringMetadata, LookupSortOptionMetadata, LookupFilterDefinitionMetadata, MaterialEntityLookupMetadata, LookupStatusTone, EntityLookupResultState, EntityLookupResult, LookupDialogMetadata, LookupFilterOperator, LookupFilterFieldType, LookupResultColumnMetadata, MaterialAutocompleteMetadata, MaterialToggleMetadata, MaterialRangeSliderMetadata, RangeSliderValue, InlinePeriodRangeMetadata, FieldControlType, MaterialTimepickerMetadata, MaterialTimeRangeMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialMultiSelectTreeMetadata, MaterialChipsMetadata,
|
|
6
|
+
import { ComponentMetadata, PraxisTextValue, PraxisI18nDictionary, PraxisI18nConfig, PraxisI18nMessageDescriptor, PraxisI18nService, GlobalActionService, GlobalActionRef, OptionSourceMetadata, GenericCrudService, GlobalConfigService, OptionDTO, ComponentMetadataEditorialDescriptor, ComponentDocMeta, ComponentMetadataRegistry, FieldMetadata, MaterialButtonMetadata, FieldArrayConfig, MaterialInputMetadata, MaterialColorInputMetadata, MaterialDateInputMetadata, MaterialDatepickerMetadata, MaterialDateRangeMetadata, DateRangePreset, DateRangeValue, MaterialDatetimeLocalInputMetadata, MaterialEmailInputMetadata, MaterialTextareaMetadata, MaterialNumericMetadata, MaterialCurrencyMetadata, MaterialCpfCnpjMetadata, MaterialPriceRangeMetadata, MaterialMonthInputMetadata, MaterialPasswordMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, LookupFilterRequest, LookupFilteringMetadata, LookupSortOptionMetadata, LookupFilterDefinitionMetadata, MaterialEntityLookupMetadata, LookupStatusTone, EntityLookupResultState, EntityLookupResult, LookupDialogMetadata, LookupFilterOperator, LookupFilterFieldType, LookupResultColumnMetadata, MaterialAutocompleteMetadata, RangeSliderMark, RangeSliderSemanticTone, MaterialToggleMetadata, MaterialRangeSliderMetadata, RangeSliderValue, InlinePeriodRangeMetadata, FieldControlType, MaterialTimepickerMetadata, MaterialTimeRangeMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialMultiSelectTreeMetadata, MaterialChipsMetadata, RangeSliderSemanticBand, MaterialSliderMetadata, MaterialPhoneMetadata, MaterialTimeInputMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialColorPickerMetadata, MaterialYearInputMetadata, CapabilityCatalog, ComponentAuthoringManifest, ManifestControlProfile } from '@praxisui/core';
|
|
7
7
|
import { Router } from '@angular/router';
|
|
8
8
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
9
9
|
import { MatSelect } from '@angular/material/select';
|
|
@@ -298,6 +298,14 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
298
298
|
presetAriaLabelModeAuto?: PraxisDynamicFieldText;
|
|
299
299
|
presetAriaLabelModeConfirm?: PraxisDynamicFieldText;
|
|
300
300
|
};
|
|
301
|
+
inlineDate?: {
|
|
302
|
+
placeholder?: PraxisDynamicFieldText;
|
|
303
|
+
overlayCancelLabel?: PraxisDynamicFieldText;
|
|
304
|
+
overlayApplyLabel?: PraxisDynamicFieldText;
|
|
305
|
+
overlayActionsAriaLabel?: PraxisDynamicFieldText;
|
|
306
|
+
overlayCancelAriaLabel?: PraxisDynamicFieldText;
|
|
307
|
+
overlayApplyAriaLabel?: PraxisDynamicFieldText;
|
|
308
|
+
};
|
|
301
309
|
inlineTimeRange?: {
|
|
302
310
|
placeholder?: PraxisDynamicFieldText;
|
|
303
311
|
ariaSelection?: PraxisDynamicFieldText;
|
|
@@ -305,6 +313,10 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
305
313
|
startInputLabel?: PraxisDynamicFieldText;
|
|
306
314
|
endInputLabel?: PraxisDynamicFieldText;
|
|
307
315
|
presetAriaLabel?: PraxisDynamicFieldText;
|
|
316
|
+
overlayActionsAriaLabel?: PraxisDynamicFieldText;
|
|
317
|
+
clearActionLabel?: PraxisDynamicFieldText;
|
|
318
|
+
cancelActionLabel?: PraxisDynamicFieldText;
|
|
319
|
+
applyActionLabel?: PraxisDynamicFieldText;
|
|
308
320
|
validation?: {
|
|
309
321
|
range?: PraxisDynamicFieldText;
|
|
310
322
|
minDistance?: PraxisDynamicFieldText;
|
|
@@ -312,9 +324,19 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
312
324
|
invalid?: PraxisDynamicFieldText;
|
|
313
325
|
};
|
|
314
326
|
};
|
|
327
|
+
inlineRange?: {
|
|
328
|
+
placeholder?: PraxisDynamicFieldText;
|
|
329
|
+
cancelActionLabel?: PraxisDynamicFieldText;
|
|
330
|
+
};
|
|
315
331
|
inlineCurrencyRange?: {
|
|
316
332
|
placeholder?: PraxisDynamicFieldText;
|
|
317
333
|
ariaSelection?: PraxisDynamicFieldText;
|
|
334
|
+
actions?: {
|
|
335
|
+
ariaLabel?: PraxisDynamicFieldText;
|
|
336
|
+
clear?: PraxisDynamicFieldText;
|
|
337
|
+
cancel?: PraxisDynamicFieldText;
|
|
338
|
+
apply?: PraxisDynamicFieldText;
|
|
339
|
+
};
|
|
318
340
|
value?: {
|
|
319
341
|
from?: PraxisDynamicFieldText;
|
|
320
342
|
upto?: PraxisDynamicFieldText;
|
|
@@ -338,6 +360,10 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
338
360
|
selectionBadgesAriaLabel?: PraxisDynamicFieldText;
|
|
339
361
|
removeSelectionAriaLabel?: PraxisDynamicFieldText;
|
|
340
362
|
emptyStateText?: PraxisDynamicFieldText;
|
|
363
|
+
overlayActionsAriaLabel?: PraxisDynamicFieldText;
|
|
364
|
+
clearActionLabel?: PraxisDynamicFieldText;
|
|
365
|
+
cancelActionLabel?: PraxisDynamicFieldText;
|
|
366
|
+
applyActionLabel?: PraxisDynamicFieldText;
|
|
341
367
|
};
|
|
342
368
|
inlinePipeline?: {
|
|
343
369
|
placeholder?: PraxisDynamicFieldText;
|
|
@@ -345,6 +371,9 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
345
371
|
searchPlaceholder?: PraxisDynamicFieldText;
|
|
346
372
|
selectionActionsAriaLabel?: PraxisDynamicFieldText;
|
|
347
373
|
clearActionLabel?: PraxisDynamicFieldText;
|
|
374
|
+
cancelActionLabel?: PraxisDynamicFieldText;
|
|
375
|
+
applyActionLabel?: PraxisDynamicFieldText;
|
|
376
|
+
overlayActionsAriaLabel?: PraxisDynamicFieldText;
|
|
348
377
|
selectionPillsAriaLabel?: PraxisDynamicFieldText;
|
|
349
378
|
barAriaEmpty?: PraxisDynamicFieldText;
|
|
350
379
|
barAriaSelected?: PraxisDynamicFieldText;
|
|
@@ -358,6 +387,10 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
358
387
|
progressEmptyLabel?: PraxisDynamicFieldText;
|
|
359
388
|
optionsGroupAriaLabel?: PraxisDynamicFieldText;
|
|
360
389
|
emptyStateText?: PraxisDynamicFieldText;
|
|
390
|
+
overlayActionsAriaLabel?: PraxisDynamicFieldText;
|
|
391
|
+
clearActionLabel?: PraxisDynamicFieldText;
|
|
392
|
+
cancelActionLabel?: PraxisDynamicFieldText;
|
|
393
|
+
applyActionLabel?: PraxisDynamicFieldText;
|
|
361
394
|
};
|
|
362
395
|
inlineTime?: {
|
|
363
396
|
placeholder?: PraxisDynamicFieldText;
|
|
@@ -376,6 +409,10 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
376
409
|
optionsGroupAriaLabel?: PraxisDynamicFieldText;
|
|
377
410
|
selectionPillsAriaLabel?: PraxisDynamicFieldText;
|
|
378
411
|
emptyStateText?: PraxisDynamicFieldText;
|
|
412
|
+
overlayActionsAriaLabel?: PraxisDynamicFieldText;
|
|
413
|
+
clearActionLabel?: PraxisDynamicFieldText;
|
|
414
|
+
cancelActionLabel?: PraxisDynamicFieldText;
|
|
415
|
+
applyActionLabel?: PraxisDynamicFieldText;
|
|
379
416
|
};
|
|
380
417
|
autocomplete?: {
|
|
381
418
|
inputAriaLabel?: PraxisDynamicFieldText;
|
|
@@ -399,11 +436,16 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
399
436
|
applyActionLabel?: PraxisDynamicFieldText;
|
|
400
437
|
};
|
|
401
438
|
multiSelect?: {
|
|
439
|
+
placeholder?: PraxisDynamicFieldText;
|
|
402
440
|
selectAllLabel?: PraxisDynamicFieldText;
|
|
403
441
|
selectedTokensAriaLabel?: PraxisDynamicFieldText;
|
|
404
442
|
removeSelectionAriaLabel?: PraxisDynamicFieldText;
|
|
405
443
|
selectedPanelTitle?: PraxisDynamicFieldText;
|
|
406
444
|
selectedPanelRemoveHint?: PraxisDynamicFieldText;
|
|
445
|
+
panelActionsAriaLabel?: PraxisDynamicFieldText;
|
|
446
|
+
clearActionLabel?: PraxisDynamicFieldText;
|
|
447
|
+
cancelActionLabel?: PraxisDynamicFieldText;
|
|
448
|
+
applyActionLabel?: PraxisDynamicFieldText;
|
|
407
449
|
};
|
|
408
450
|
transferList?: {
|
|
409
451
|
availableLabel?: PraxisDynamicFieldText;
|
|
@@ -481,6 +523,8 @@ declare abstract class SimpleBaseInputComponent implements ControlValueAccessor,
|
|
|
481
523
|
private resolvedNgControl;
|
|
482
524
|
private integratedControl;
|
|
483
525
|
private controlIntegrationSubscription;
|
|
526
|
+
private appliedBaseValidators;
|
|
527
|
+
private appliedBaseValidatorsControl;
|
|
484
528
|
/** Subject para eventos de lifecycle */
|
|
485
529
|
readonly lifecycleEvents$: BehaviorSubject<ComponentLifecycleEvent | null>;
|
|
486
530
|
/** Native element registered by subclasses */
|
|
@@ -511,6 +555,7 @@ declare abstract class SimpleBaseInputComponent implements ControlValueAccessor,
|
|
|
511
555
|
* Define um FormControl externo a ser utilizado como fonte de verdade.
|
|
512
556
|
*/
|
|
513
557
|
setExternalControl(control: AbstractControl): void;
|
|
558
|
+
private asFormControl;
|
|
514
559
|
/**
|
|
515
560
|
* Retorna o FormControl em uso pelo componente.
|
|
516
561
|
*
|
|
@@ -672,6 +717,7 @@ declare abstract class SimpleBaseInputComponent implements ControlValueAccessor,
|
|
|
672
717
|
* Define metadata do componente
|
|
673
718
|
*/
|
|
674
719
|
protected setMetadata(metadata: ComponentMetadata): void;
|
|
720
|
+
protected onActiveControlChanged(_previousControl: FormControl, _currentControl: FormControl): void;
|
|
675
721
|
/** Registra elemento nativo e aplica atributos/eventos */
|
|
676
722
|
protected registerInputElement(el: HTMLElement): void;
|
|
677
723
|
/** Aplica atributos e ARIA com base no metadata */
|
|
@@ -728,6 +774,7 @@ declare abstract class SimpleBaseInputComponent implements ControlValueAccessor,
|
|
|
728
774
|
private interpolateValidationMessage;
|
|
729
775
|
private setupValidators;
|
|
730
776
|
private applyValidators;
|
|
777
|
+
private removeAppliedBaseValidators;
|
|
731
778
|
private createCustomValidator;
|
|
732
779
|
private generateUniqueId;
|
|
733
780
|
private getTransformApply;
|
|
@@ -1009,6 +1056,8 @@ declare abstract class SimpleBaseSelectComponent<T = any> extends SimpleBaseInpu
|
|
|
1009
1056
|
* Applies typed metadata to the select component.
|
|
1010
1057
|
*/
|
|
1011
1058
|
setInputMetadata(metadata: ComponentMetadata): void;
|
|
1059
|
+
private searchableOptionText;
|
|
1060
|
+
private normalizeOptionSearchText;
|
|
1012
1061
|
/**
|
|
1013
1062
|
* Applies typed metadata to the select component.
|
|
1014
1063
|
*/
|
|
@@ -2202,9 +2251,11 @@ declare class MaterialCpfCnpjInputComponent extends SimpleBaseInputComponent {
|
|
|
2202
2251
|
cpfCnpjMetadata: _angular_core.Signal<MaterialCpfCnpjMetadata | null>;
|
|
2203
2252
|
getSpecificCssClasses(): string[];
|
|
2204
2253
|
setInputMetadata(metadata: MaterialCpfCnpjMetadata): void;
|
|
2254
|
+
protected onActiveControlChanged(previousControl: FormControl, _currentControl: FormControl): void;
|
|
2205
2255
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2206
2256
|
onComponentInit(): void;
|
|
2207
2257
|
private setupDynamicValidator;
|
|
2258
|
+
private shouldApplySemanticDocumentValidator;
|
|
2208
2259
|
isReadonlyEffective(): boolean;
|
|
2209
2260
|
writeValue(value: unknown): void;
|
|
2210
2261
|
handleInput(event: Event): void;
|
|
@@ -2367,10 +2418,13 @@ declare class MaterialSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2367
2418
|
disabledMode: boolean;
|
|
2368
2419
|
visible: boolean;
|
|
2369
2420
|
presentationMode: boolean;
|
|
2421
|
+
private searchInput?;
|
|
2370
2422
|
protected defaultPanelClass(): string;
|
|
2371
2423
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
2372
2424
|
ngOnInit(): void;
|
|
2373
2425
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2426
|
+
onSearchInputEvent(event: Event): void;
|
|
2427
|
+
onOpened(opened: boolean): void;
|
|
2374
2428
|
private optionsFromLegacy;
|
|
2375
2429
|
private normalizeOption;
|
|
2376
2430
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialSelectComponent, never>;
|
|
@@ -3105,6 +3159,7 @@ interface InlineMultiSelectTokenViewModel {
|
|
|
3105
3159
|
trackKey: string;
|
|
3106
3160
|
}
|
|
3107
3161
|
declare class InlineMultiSelectComponent extends SimpleBaseSelectComponent {
|
|
3162
|
+
unselectedFilteredOptions(): SelectOption<unknown>[];
|
|
3108
3163
|
readonlyMode: boolean;
|
|
3109
3164
|
disabledMode: boolean;
|
|
3110
3165
|
visible: boolean;
|
|
@@ -3113,13 +3168,18 @@ declare class InlineMultiSelectComponent extends SimpleBaseSelectComponent {
|
|
|
3113
3168
|
inlineMinWidthPx: number;
|
|
3114
3169
|
inlineMaxWidthPx: number;
|
|
3115
3170
|
private fieldLabelText;
|
|
3171
|
+
private panelOpen;
|
|
3172
|
+
private panelCommittedValue;
|
|
3173
|
+
private committingPanelValue;
|
|
3116
3174
|
selectAllLabel(): string;
|
|
3117
3175
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
3118
3176
|
protected setMetadata(metadata: MaterialSelectMetadata): void;
|
|
3177
|
+
protected registerMatSelect(select: MatSelect): void;
|
|
3119
3178
|
onComponentInit(): void;
|
|
3120
3179
|
onViewportResize(): void;
|
|
3121
3180
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
3122
3181
|
protected getSpecificCssClasses(): string[];
|
|
3182
|
+
protected defaultPanelClass(): string | string[] | undefined;
|
|
3123
3183
|
hasSelection(): boolean;
|
|
3124
3184
|
selectedCount(): number;
|
|
3125
3185
|
displayText(): string;
|
|
@@ -3136,6 +3196,24 @@ declare class InlineMultiSelectComponent extends SimpleBaseSelectComponent {
|
|
|
3136
3196
|
onQuickClear(event: MouseEvent): void;
|
|
3137
3197
|
onRemoveSelectedToken(event: MouseEvent, value: unknown): void;
|
|
3138
3198
|
onOpenedChange(opened: boolean): void;
|
|
3199
|
+
showPanelActions(): boolean;
|
|
3200
|
+
showPanelClearAction(): boolean;
|
|
3201
|
+
panelActionsAriaLabel(): string;
|
|
3202
|
+
clearPanelActionLabel(): string;
|
|
3203
|
+
cancelPanelActionLabel(): string;
|
|
3204
|
+
applyPanelActionLabel(): string;
|
|
3205
|
+
clearPanelActionAriaLabel(): string;
|
|
3206
|
+
cancelPanelActionAriaLabel(): string;
|
|
3207
|
+
applyPanelActionAriaLabel(): string;
|
|
3208
|
+
clearPanelActionAppearance(): string;
|
|
3209
|
+
cancelPanelActionAppearance(): string;
|
|
3210
|
+
applyPanelActionAppearance(): string;
|
|
3211
|
+
clearPanelActionColorRole(): string;
|
|
3212
|
+
cancelPanelActionColorRole(): string;
|
|
3213
|
+
applyPanelActionColorRole(): string;
|
|
3214
|
+
onPanelClear(event: MouseEvent): void;
|
|
3215
|
+
onPanelCancel(event: MouseEvent): void;
|
|
3216
|
+
onPanelApply(event: MouseEvent): void;
|
|
3139
3217
|
onSearchInput(term: string): void;
|
|
3140
3218
|
onSearchInputEvent(event: Event): void;
|
|
3141
3219
|
isOptionDisabled(option: SelectOption<unknown>): boolean;
|
|
@@ -3144,6 +3222,9 @@ declare class InlineMultiSelectComponent extends SimpleBaseSelectComponent {
|
|
|
3144
3222
|
searchInputAriaLabel(): string;
|
|
3145
3223
|
ariaLabel(): string;
|
|
3146
3224
|
private currentValues;
|
|
3225
|
+
private restorePanelCommittedValue;
|
|
3226
|
+
private usesExplicitApplyMode;
|
|
3227
|
+
private inlineOverlayAction;
|
|
3147
3228
|
private resolveOptionLabel;
|
|
3148
3229
|
private equalsOptionValue;
|
|
3149
3230
|
private maxVisibleSelectedTokens;
|
|
@@ -3455,6 +3536,14 @@ interface InlineCurrencyDistributionBar {
|
|
|
3455
3536
|
color?: string;
|
|
3456
3537
|
label?: string;
|
|
3457
3538
|
}
|
|
3539
|
+
interface InlineCurrencySemanticBandView {
|
|
3540
|
+
id: string;
|
|
3541
|
+
startPercent: number;
|
|
3542
|
+
widthPercent: number;
|
|
3543
|
+
tone: RangeSliderSemanticTone;
|
|
3544
|
+
color?: string;
|
|
3545
|
+
label?: string;
|
|
3546
|
+
}
|
|
3458
3547
|
declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
3459
3548
|
private static readonly MAX_DISTRIBUTION_SOURCE_BINS;
|
|
3460
3549
|
private static readonly MAX_DISTRIBUTION_RENDER_BINS;
|
|
@@ -3482,6 +3571,7 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
|
3482
3571
|
private distributionCacheKey;
|
|
3483
3572
|
private distributionCache;
|
|
3484
3573
|
private lastTriggerElement;
|
|
3574
|
+
private panelBaselineValue;
|
|
3485
3575
|
private currentMetadata;
|
|
3486
3576
|
setInputMetadata(metadata: MaterialPriceRangeMetadata): void;
|
|
3487
3577
|
protected setMetadata(metadata: MaterialPriceRangeMetadata): void;
|
|
@@ -3494,6 +3584,9 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
|
3494
3584
|
maxValue(): number;
|
|
3495
3585
|
stepValue(): number;
|
|
3496
3586
|
showTickMarks(): boolean;
|
|
3587
|
+
markLabels(): RangeSliderMark[];
|
|
3588
|
+
semanticBands(): InlineCurrencySemanticBandView[];
|
|
3589
|
+
markPosition(value: number): number;
|
|
3497
3590
|
showDistributionBars(): boolean;
|
|
3498
3591
|
distributionBars(): InlineCurrencyDistributionBar[];
|
|
3499
3592
|
distributionHeightPx(): number | null;
|
|
@@ -3502,9 +3595,32 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
|
3502
3595
|
distributionOpacity(): number | null;
|
|
3503
3596
|
isInteractionBlocked(): boolean;
|
|
3504
3597
|
hasSelection(): boolean;
|
|
3598
|
+
hasPanelSelection(): boolean;
|
|
3505
3599
|
showQuickClear(): boolean;
|
|
3506
3600
|
displayText(): string;
|
|
3507
3601
|
currentSelectionText(): string;
|
|
3602
|
+
panelSelectionText(): string;
|
|
3603
|
+
scaleReadoutCondensed(): boolean;
|
|
3604
|
+
scaleReadoutSummaryOnly(): boolean;
|
|
3605
|
+
clearPanelActionLabel(): string;
|
|
3606
|
+
cancelPanelActionLabel(): string;
|
|
3607
|
+
applyPanelActionLabel(): string;
|
|
3608
|
+
clearPanelActionAriaLabel(): string;
|
|
3609
|
+
cancelPanelActionAriaLabel(): string;
|
|
3610
|
+
applyPanelActionAriaLabel(): string;
|
|
3611
|
+
panelActionsAriaLabel(): string;
|
|
3612
|
+
showPanelClearAction(): boolean;
|
|
3613
|
+
showPanelCancelAction(): boolean;
|
|
3614
|
+
clearPanelActionIcon(): string;
|
|
3615
|
+
cancelPanelActionIcon(): string;
|
|
3616
|
+
applyPanelActionIcon(): string;
|
|
3617
|
+
clearPanelActionAppearance(): string;
|
|
3618
|
+
cancelPanelActionAppearance(): string;
|
|
3619
|
+
applyPanelActionAppearance(): string;
|
|
3620
|
+
clearPanelActionColorRole(): string;
|
|
3621
|
+
cancelPanelActionColorRole(): string;
|
|
3622
|
+
applyPanelActionColorRole(): string;
|
|
3623
|
+
private formatRangeSelectionText;
|
|
3508
3624
|
currentStartLabel(): string;
|
|
3509
3625
|
currentEndLabel(): string;
|
|
3510
3626
|
sliderStartThumbValue(): number;
|
|
@@ -3523,7 +3639,12 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
|
3523
3639
|
onTriggerKeydown(event: Event): void;
|
|
3524
3640
|
onSliderStartInput(event: Event): void;
|
|
3525
3641
|
onSliderEndInput(event: Event): void;
|
|
3526
|
-
|
|
3642
|
+
onPanelClear(event: MouseEvent): void;
|
|
3643
|
+
onPanelCancel(event: MouseEvent): void;
|
|
3644
|
+
onPanelApply(event: MouseEvent): void;
|
|
3645
|
+
closePanel(options?: {
|
|
3646
|
+
restoreFocus?: boolean;
|
|
3647
|
+
}): void;
|
|
3527
3648
|
onOverlayDetach(): void;
|
|
3528
3649
|
panelId(): string;
|
|
3529
3650
|
panelTitleId(): string;
|
|
@@ -3531,8 +3652,17 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
|
3531
3652
|
private rebuildValidators;
|
|
3532
3653
|
private buildRangeValidator;
|
|
3533
3654
|
private syncRangeGroupFromControl;
|
|
3655
|
+
private syncRangeGroupFromValue;
|
|
3534
3656
|
private updateRangeFromSlider;
|
|
3535
3657
|
private currentRangeValue;
|
|
3658
|
+
private panelRangeValue;
|
|
3659
|
+
private openPanel;
|
|
3660
|
+
cancelPanel(): void;
|
|
3661
|
+
private applyPanelValue;
|
|
3662
|
+
private usesExplicitApplyMode;
|
|
3663
|
+
private inlineOverlayAction;
|
|
3664
|
+
private resolveMarks;
|
|
3665
|
+
private resolveSemanticBands;
|
|
3536
3666
|
private distributionVisual;
|
|
3537
3667
|
private resolveDistributionVisual;
|
|
3538
3668
|
private parseDistributionConfig;
|
|
@@ -3543,6 +3673,7 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
|
3543
3673
|
private valuePositionPercent;
|
|
3544
3674
|
private toNonEmptyText;
|
|
3545
3675
|
private parseJsonValue;
|
|
3676
|
+
private normalizeTone;
|
|
3546
3677
|
private normalizePositivePx;
|
|
3547
3678
|
private clampRatio;
|
|
3548
3679
|
private resolveDistributionGapPx;
|
|
@@ -3646,6 +3777,8 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
|
|
|
3646
3777
|
private sliderPointerLastClientX;
|
|
3647
3778
|
private sliderPointerDirection;
|
|
3648
3779
|
private lastTriggerElement;
|
|
3780
|
+
private panelBaselineValue;
|
|
3781
|
+
readonly singleDraftControl: FormControl<number | null>;
|
|
3649
3782
|
setInputMetadata(metadata: MaterialRangeSliderMetadata): void;
|
|
3650
3783
|
protected setMetadata(metadata: MaterialRangeSliderMetadata): void;
|
|
3651
3784
|
onComponentInit(): void;
|
|
@@ -3663,6 +3796,7 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
|
|
|
3663
3796
|
isRangeMode(): boolean;
|
|
3664
3797
|
isInteractionBlocked(): boolean;
|
|
3665
3798
|
hasSelection(): boolean;
|
|
3799
|
+
hasPanelSelection(): boolean;
|
|
3666
3800
|
showQuickClear(): boolean;
|
|
3667
3801
|
showInlineInputs(): boolean;
|
|
3668
3802
|
showDistributionBars(): boolean;
|
|
@@ -3677,6 +3811,24 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
|
|
|
3677
3811
|
quickPresetsGroupLabel(): string;
|
|
3678
3812
|
clearPanelActionLabel(): string;
|
|
3679
3813
|
donePanelActionLabel(): string;
|
|
3814
|
+
cancelPanelActionLabel(): string;
|
|
3815
|
+
clearPanelActionAriaLabel(): string;
|
|
3816
|
+
applyPanelActionAriaLabel(): string;
|
|
3817
|
+
cancelPanelActionAriaLabel(): string;
|
|
3818
|
+
panelActionsAriaLabel(): string;
|
|
3819
|
+
showPanelClearAction(): boolean;
|
|
3820
|
+
showPanelCancelAction(): boolean;
|
|
3821
|
+
clearPanelActionIcon(): string;
|
|
3822
|
+
applyPanelActionIcon(): string;
|
|
3823
|
+
cancelPanelActionIcon(): string;
|
|
3824
|
+
clearPanelActionAppearance(): string;
|
|
3825
|
+
applyPanelActionAppearance(): string;
|
|
3826
|
+
cancelPanelActionAppearance(): string;
|
|
3827
|
+
clearPanelActionColorRole(): string;
|
|
3828
|
+
applyPanelActionColorRole(): string;
|
|
3829
|
+
cancelPanelActionColorRole(): string;
|
|
3830
|
+
singlePanelControl(): FormControl<number | null> | FormControl;
|
|
3831
|
+
panelSelectionText(): string;
|
|
3680
3832
|
quickPresets(): InlineRangeQuickPreset[];
|
|
3681
3833
|
hasQuickPresets(): boolean;
|
|
3682
3834
|
presetAriaLabel(preset: InlineRangeQuickPreset): string;
|
|
@@ -3688,6 +3840,7 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
|
|
|
3688
3840
|
onQuickClear(event: MouseEvent): void;
|
|
3689
3841
|
onPanelClear(event: MouseEvent): void;
|
|
3690
3842
|
onPanelDone(event: MouseEvent): void;
|
|
3843
|
+
onPanelCancel(event: MouseEvent): void;
|
|
3691
3844
|
onThumbDragStart(thumb: 'start' | 'end'): void;
|
|
3692
3845
|
onThumbDragEnd(): void;
|
|
3693
3846
|
onSliderPointerDown(event: PointerEvent): void;
|
|
@@ -3711,8 +3864,18 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
|
|
|
3711
3864
|
private rebuildValidators;
|
|
3712
3865
|
private buildRangeValidator;
|
|
3713
3866
|
private syncRangeGroupFromControl;
|
|
3867
|
+
private syncPanelControlsFromControl;
|
|
3868
|
+
private syncRangeGroupFromValue;
|
|
3714
3869
|
private currentNumericValue;
|
|
3715
3870
|
private currentRangeValue;
|
|
3871
|
+
private panelRangeValue;
|
|
3872
|
+
private panelNumericValue;
|
|
3873
|
+
private openPanel;
|
|
3874
|
+
private cancelPanel;
|
|
3875
|
+
private applyPanelValue;
|
|
3876
|
+
private usesExplicitApplyMode;
|
|
3877
|
+
private inlineOverlayAction;
|
|
3878
|
+
private normalizeSingleValue;
|
|
3716
3879
|
private distributionVisual;
|
|
3717
3880
|
private resolveDistributionVisual;
|
|
3718
3881
|
private parseDistributionConfig;
|
|
@@ -3881,10 +4044,23 @@ declare class InlineDateComponent extends MaterialDatepickerComponent {
|
|
|
3881
4044
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
3882
4045
|
onQuickClear(event: MouseEvent): void;
|
|
3883
4046
|
onInlineInput(): void;
|
|
4047
|
+
onOverlayCancelAction(): void;
|
|
4048
|
+
onOverlayApplyAction(): void;
|
|
3884
4049
|
openPicker(picker: MatDatepicker<Date>, event: MouseEvent): void;
|
|
3885
4050
|
widthProbeText(): string;
|
|
3886
4051
|
placeholderText(): string;
|
|
3887
4052
|
ariaLabel(): string;
|
|
4053
|
+
usesExplicitApplyMode(): boolean;
|
|
4054
|
+
overlayCancelLabel(): string;
|
|
4055
|
+
overlayApplyLabel(): string;
|
|
4056
|
+
overlayActionsAriaLabel(): string;
|
|
4057
|
+
overlayCancelAriaLabel(): string;
|
|
4058
|
+
overlayApplyAriaLabel(): string;
|
|
4059
|
+
cancelPanelActionAppearance(): string;
|
|
4060
|
+
applyPanelActionAppearance(): string;
|
|
4061
|
+
cancelPanelActionColorRole(): string;
|
|
4062
|
+
applyPanelActionColorRole(): string;
|
|
4063
|
+
private inlineOverlayAction;
|
|
3888
4064
|
private hasValue;
|
|
3889
4065
|
private scheduleInlineResize;
|
|
3890
4066
|
private recalculateInlineWidth;
|
|
@@ -3947,7 +4123,13 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
3947
4123
|
overlayActionsAriaLabel(): string;
|
|
3948
4124
|
overlayCancelAriaLabel(): string;
|
|
3949
4125
|
overlayApplyAriaLabel(): string;
|
|
4126
|
+
cancelPanelActionAppearance(): string;
|
|
4127
|
+
applyPanelActionAppearance(): string;
|
|
4128
|
+
cancelPanelActionColorRole(): string;
|
|
4129
|
+
applyPanelActionColorRole(): string;
|
|
4130
|
+
shouldRenderOverlayActions(): boolean;
|
|
3950
4131
|
inlineQuickPresetsApplyMode(): InlineDateQuickPresetApplyMode;
|
|
4132
|
+
private inlineOverlayAction;
|
|
3951
4133
|
presetAriaLabel(preset: InlineDateQuickPreset): string;
|
|
3952
4134
|
presetTooltip(preset: InlineDateQuickPreset): string;
|
|
3953
4135
|
shouldShowPresetTooltip(preset: InlineDateQuickPreset): boolean;
|
|
@@ -3963,7 +4145,7 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
3963
4145
|
onQuickClear(event: MouseEvent): void;
|
|
3964
4146
|
onInlineInput(): void;
|
|
3965
4147
|
onInputKeydown(event: Event, picker: MatDateRangePicker<Date>): void;
|
|
3966
|
-
onInputClick(event: Event): void;
|
|
4148
|
+
onInputClick(picker: MatDateRangePicker<Date>, event: Event): void;
|
|
3967
4149
|
onFieldContainerClick(picker: MatDateRangePicker<Date>, event: MouseEvent): void;
|
|
3968
4150
|
openPicker(picker: MatDateRangePicker<Date>, event: Event): void;
|
|
3969
4151
|
onOverlayOpened(): void;
|
|
@@ -4227,10 +4409,14 @@ declare class InlineTimeRangeComponent extends PdxMaterialTimeRangeComponent {
|
|
|
4227
4409
|
private trackGradientCacheKey;
|
|
4228
4410
|
private trackGradientCacheValue;
|
|
4229
4411
|
private lastTriggerElement;
|
|
4412
|
+
private panelCommittedValue;
|
|
4413
|
+
private draftTimeRangeValue;
|
|
4414
|
+
private committingPanelValue;
|
|
4230
4415
|
private currentMetadata;
|
|
4231
4416
|
setInputMetadata(metadata: MaterialTimeRangeMetadata): void;
|
|
4232
4417
|
ngOnInit(): void;
|
|
4233
4418
|
ngAfterViewInit(): void;
|
|
4419
|
+
setValue(value: any, options?: any): void;
|
|
4234
4420
|
onComponentDestroy(): void;
|
|
4235
4421
|
onViewportResize(): void;
|
|
4236
4422
|
onDocumentEscape(): void;
|
|
@@ -4275,9 +4461,34 @@ declare class InlineTimeRangeComponent extends PdxMaterialTimeRangeComponent {
|
|
|
4275
4461
|
onThumbDragStart(thumb: 'start' | 'end'): void;
|
|
4276
4462
|
onThumbDragEnd(): void;
|
|
4277
4463
|
closePanel(): void;
|
|
4464
|
+
private closePanelWithoutDraftReset;
|
|
4278
4465
|
onOverlayDetach(): void;
|
|
4466
|
+
onOverlayOutsideClick(event: MouseEvent): void;
|
|
4279
4467
|
panelId(): string;
|
|
4280
4468
|
panelTitleId(): string;
|
|
4469
|
+
showTimeRangeOverlayActions(): boolean;
|
|
4470
|
+
hasPanelValue(): boolean;
|
|
4471
|
+
panelActionsAriaLabel(): string;
|
|
4472
|
+
clearPanelActionLabel(): string;
|
|
4473
|
+
cancelPanelActionLabel(): string;
|
|
4474
|
+
applyPanelActionLabel(): string;
|
|
4475
|
+
clearPanelActionAriaLabel(): string;
|
|
4476
|
+
cancelPanelActionAriaLabel(): string;
|
|
4477
|
+
applyPanelActionAriaLabel(): string;
|
|
4478
|
+
showPanelClearAction(): boolean;
|
|
4479
|
+
showPanelCancelAction(): boolean;
|
|
4480
|
+
clearPanelActionIcon(): string;
|
|
4481
|
+
cancelPanelActionIcon(): string;
|
|
4482
|
+
applyPanelActionIcon(): string;
|
|
4483
|
+
clearPanelActionAppearance(): string;
|
|
4484
|
+
cancelPanelActionAppearance(): string;
|
|
4485
|
+
applyPanelActionAppearance(): string;
|
|
4486
|
+
clearPanelActionColorRole(): string;
|
|
4487
|
+
cancelPanelActionColorRole(): string;
|
|
4488
|
+
applyPanelActionColorRole(): string;
|
|
4489
|
+
onPanelClear(event: MouseEvent): void;
|
|
4490
|
+
onPanelCancel(event: MouseEvent): void;
|
|
4491
|
+
onPanelDone(event: MouseEvent): void;
|
|
4281
4492
|
private onSliderChanged;
|
|
4282
4493
|
private patchTimeFormFromMinutes;
|
|
4283
4494
|
private syncSliderFromTimeForm;
|
|
@@ -4302,6 +4513,15 @@ declare class InlineTimeRangeComponent extends PdxMaterialTimeRangeComponent {
|
|
|
4302
4513
|
private recalculateInlineSizeBounds;
|
|
4303
4514
|
private resolveFieldLabelFromMetadata;
|
|
4304
4515
|
private humanizeFieldName;
|
|
4516
|
+
private openPanel;
|
|
4517
|
+
private cancelPanelSelection;
|
|
4518
|
+
private shouldHoldPanelDraft;
|
|
4519
|
+
private commitPanelValue;
|
|
4520
|
+
private currentPanelValue;
|
|
4521
|
+
private patchTimeRangeFormValue;
|
|
4522
|
+
private cloneTimeRangeValue;
|
|
4523
|
+
private usesExplicitTimeRangeOverlay;
|
|
4524
|
+
private inlineOverlayAction;
|
|
4305
4525
|
private rememberTriggerElement;
|
|
4306
4526
|
private restoreFocusToTrigger;
|
|
4307
4527
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InlineTimeRangeComponent, never>;
|
|
@@ -4404,6 +4624,7 @@ declare class InlineRatingComponent extends InlineRangeSliderComponent {
|
|
|
4404
4624
|
ariaLabel(): string;
|
|
4405
4625
|
protected getSpecificCssClasses(): string[];
|
|
4406
4626
|
protected resolveInlineContextTooltipValue(): string;
|
|
4627
|
+
showRatingOverlayActions(): boolean;
|
|
4407
4628
|
ratingScaleSlots(): number[];
|
|
4408
4629
|
slotTone(slot: number): InlineRatingTone;
|
|
4409
4630
|
slotColor(slot: number): string;
|
|
@@ -4411,6 +4632,7 @@ declare class InlineRatingComponent extends InlineRangeSliderComponent {
|
|
|
4411
4632
|
selectedStartLabel(): string;
|
|
4412
4633
|
selectedEndLabel(): string;
|
|
4413
4634
|
ratingStarsAriaLabel(): string;
|
|
4635
|
+
onDocumentEscape(): void;
|
|
4414
4636
|
toneLowColor(): string | null;
|
|
4415
4637
|
toneMidColor(): string | null;
|
|
4416
4638
|
toneHighColor(): string | null;
|
|
@@ -4432,6 +4654,7 @@ declare class InlineRatingComponent extends InlineRangeSliderComponent {
|
|
|
4432
4654
|
private resolveRatingLabelFromMetadata;
|
|
4433
4655
|
private humanizeRatingFieldName;
|
|
4434
4656
|
private currentRatingMetadata;
|
|
4657
|
+
private usesExplicitRatingOverlay;
|
|
4435
4658
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InlineRatingComponent, never>;
|
|
4436
4659
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InlineRatingComponent, "pdx-inline-rating", never, {}, {}, never, never, true, never>;
|
|
4437
4660
|
}
|
|
@@ -4456,6 +4679,9 @@ declare class InlineDistanceRadiusComponent extends InlineRangeSliderComponent {
|
|
|
4456
4679
|
protected setMetadata(metadata: MaterialRangeSliderMetadata): void;
|
|
4457
4680
|
onComponentInit(): void;
|
|
4458
4681
|
onTriggerKeydownEvent(event: Event): void;
|
|
4682
|
+
onDistancePanelOutsideClick(event: MouseEvent): void;
|
|
4683
|
+
showDistanceOverlayActions(): boolean;
|
|
4684
|
+
distanceSinglePanelControl(): FormControl<number | null> | FormControl;
|
|
4459
4685
|
minValue(): number;
|
|
4460
4686
|
maxValue(): number;
|
|
4461
4687
|
stepValue(): number;
|
|
@@ -4513,6 +4739,7 @@ declare class InlineDistanceRadiusComponent extends InlineRangeSliderComponent {
|
|
|
4513
4739
|
private currentBaseValue;
|
|
4514
4740
|
private currentRangeBaseValue;
|
|
4515
4741
|
private currentRawDistanceValue;
|
|
4742
|
+
private usesExplicitDistanceOverlay;
|
|
4516
4743
|
private currentRadialBaseValue;
|
|
4517
4744
|
private currentNormalizedRangeRatios;
|
|
4518
4745
|
private clampBaseValue;
|
|
@@ -4581,6 +4808,8 @@ declare class InlinePipelineStatusComponent extends SimpleBaseSelectComponent<un
|
|
|
4581
4808
|
panelOpen: boolean;
|
|
4582
4809
|
private fieldLabelText;
|
|
4583
4810
|
private lastTriggerElement;
|
|
4811
|
+
private draftSelectionValue;
|
|
4812
|
+
private hasDraftSelectionValue;
|
|
4584
4813
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
4585
4814
|
protected setMetadata(metadata: MaterialSelectMetadata): void;
|
|
4586
4815
|
onComponentInit(): void;
|
|
@@ -4597,7 +4826,9 @@ declare class InlinePipelineStatusComponent extends SimpleBaseSelectComponent<un
|
|
|
4597
4826
|
onTriggerClick(event: MouseEvent): void;
|
|
4598
4827
|
onTriggerKeydown(event: Event): void;
|
|
4599
4828
|
closePanel(): void;
|
|
4829
|
+
private closePanelWithoutDraftReset;
|
|
4600
4830
|
onOverlayDetach(): void;
|
|
4831
|
+
onOverlayOutsideClick(event: MouseEvent): void;
|
|
4601
4832
|
panelId(): string;
|
|
4602
4833
|
panelTitleId(): string;
|
|
4603
4834
|
panelTitleText(): string;
|
|
@@ -4636,6 +4867,29 @@ declare class InlinePipelineStatusComponent extends SimpleBaseSelectComponent<un
|
|
|
4636
4867
|
emptyStateText(): string;
|
|
4637
4868
|
private resolveMultipleMode;
|
|
4638
4869
|
private selectedValues;
|
|
4870
|
+
showPipelineOverlayActions(): boolean;
|
|
4871
|
+
hasPanelSelection(): boolean;
|
|
4872
|
+
panelActionsAriaLabel(): string;
|
|
4873
|
+
clearPanelActionLabel(): string;
|
|
4874
|
+
cancelPanelActionLabel(): string;
|
|
4875
|
+
applyPanelActionLabel(): string;
|
|
4876
|
+
clearPanelActionAriaLabel(): string;
|
|
4877
|
+
cancelPanelActionAriaLabel(): string;
|
|
4878
|
+
applyPanelActionAriaLabel(): string;
|
|
4879
|
+
showPanelClearAction(): boolean;
|
|
4880
|
+
showPanelCancelAction(): boolean;
|
|
4881
|
+
clearPanelActionIcon(): string;
|
|
4882
|
+
cancelPanelActionIcon(): string;
|
|
4883
|
+
applyPanelActionIcon(): string;
|
|
4884
|
+
clearPanelActionAppearance(): string;
|
|
4885
|
+
cancelPanelActionAppearance(): string;
|
|
4886
|
+
applyPanelActionAppearance(): string;
|
|
4887
|
+
clearPanelActionColorRole(): string;
|
|
4888
|
+
cancelPanelActionColorRole(): string;
|
|
4889
|
+
applyPanelActionColorRole(): string;
|
|
4890
|
+
onPanelClear(event: MouseEvent): void;
|
|
4891
|
+
onPanelCancel(event: MouseEvent): void;
|
|
4892
|
+
onPanelDone(event: MouseEvent): void;
|
|
4639
4893
|
isInteractionBlocked(): boolean;
|
|
4640
4894
|
private toVisualOption;
|
|
4641
4895
|
private resolveOptionOrderIndex;
|
|
@@ -4659,6 +4913,14 @@ declare class InlinePipelineStatusComponent extends SimpleBaseSelectComponent<un
|
|
|
4659
4913
|
private resolveWidthBounds;
|
|
4660
4914
|
private rememberTriggerElement;
|
|
4661
4915
|
private restoreFocusToTrigger;
|
|
4916
|
+
private openPanel;
|
|
4917
|
+
private cancelPanelSelection;
|
|
4918
|
+
private currentRawSelectionValue;
|
|
4919
|
+
private setDraftSelectionValue;
|
|
4920
|
+
private clearDraftSelection;
|
|
4921
|
+
private cloneSelectionValue;
|
|
4922
|
+
private usesExplicitPipelineOverlay;
|
|
4923
|
+
private inlineOverlayAction;
|
|
4662
4924
|
private multipleMode;
|
|
4663
4925
|
private currentMetadata;
|
|
4664
4926
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InlinePipelineStatusComponent, never>;
|
|
@@ -4727,6 +4989,8 @@ declare class InlineScorePriorityComponent extends InlineRangeSliderComponent {
|
|
|
4727
4989
|
private scoreReadSingleFromControl;
|
|
4728
4990
|
private scoreReadRangeFromControl;
|
|
4729
4991
|
private scoreRangeForDisplay;
|
|
4992
|
+
showScoreOverlayActions(): boolean;
|
|
4993
|
+
private usesExplicitScoreOverlay;
|
|
4730
4994
|
private scoreNormalizeRange;
|
|
4731
4995
|
private scoreBuildBandVisual;
|
|
4732
4996
|
private scoreFallbackColor;
|
|
@@ -4781,6 +5045,8 @@ declare class InlineRelativePeriodComponent extends SimpleBaseSelectComponent {
|
|
|
4781
5045
|
panelOpen: boolean;
|
|
4782
5046
|
private fieldLabelText;
|
|
4783
5047
|
private lastTriggerElement;
|
|
5048
|
+
private draftSelectionValue;
|
|
5049
|
+
private hasDraftSelectionValue;
|
|
4784
5050
|
private currentMetadata;
|
|
4785
5051
|
private asRecord;
|
|
4786
5052
|
private metadataRecord;
|
|
@@ -4799,7 +5065,9 @@ declare class InlineRelativePeriodComponent extends SimpleBaseSelectComponent {
|
|
|
4799
5065
|
onTriggerClick(event: MouseEvent): void;
|
|
4800
5066
|
onTriggerKeydown(event: Event): void;
|
|
4801
5067
|
closePanel(): void;
|
|
5068
|
+
private closePanelWithoutDraftReset;
|
|
4802
5069
|
onOverlayDetach(): void;
|
|
5070
|
+
onOverlayOutsideClick(event: MouseEvent): void;
|
|
4803
5071
|
panelId(): string;
|
|
4804
5072
|
panelTitleId(): string;
|
|
4805
5073
|
panelTitleText(): string;
|
|
@@ -4825,6 +5093,29 @@ declare class InlineRelativePeriodComponent extends SimpleBaseSelectComponent {
|
|
|
4825
5093
|
placeholderText(): string;
|
|
4826
5094
|
ariaLabel(): string;
|
|
4827
5095
|
emptyStateText(): string;
|
|
5096
|
+
showRelativeOverlayActions(): boolean;
|
|
5097
|
+
hasPanelSelection(): boolean;
|
|
5098
|
+
panelActionsAriaLabel(): string;
|
|
5099
|
+
clearPanelActionLabel(): string;
|
|
5100
|
+
cancelPanelActionLabel(): string;
|
|
5101
|
+
applyPanelActionLabel(): string;
|
|
5102
|
+
clearPanelActionAriaLabel(): string;
|
|
5103
|
+
cancelPanelActionAriaLabel(): string;
|
|
5104
|
+
applyPanelActionAriaLabel(): string;
|
|
5105
|
+
showPanelClearAction(): boolean;
|
|
5106
|
+
showPanelCancelAction(): boolean;
|
|
5107
|
+
clearPanelActionIcon(): string;
|
|
5108
|
+
cancelPanelActionIcon(): string;
|
|
5109
|
+
applyPanelActionIcon(): string;
|
|
5110
|
+
clearPanelActionAppearance(): string;
|
|
5111
|
+
cancelPanelActionAppearance(): string;
|
|
5112
|
+
applyPanelActionAppearance(): string;
|
|
5113
|
+
clearPanelActionColorRole(): string;
|
|
5114
|
+
cancelPanelActionColorRole(): string;
|
|
5115
|
+
applyPanelActionColorRole(): string;
|
|
5116
|
+
onPanelClear(event: MouseEvent): void;
|
|
5117
|
+
onPanelCancel(event: MouseEvent): void;
|
|
5118
|
+
onPanelDone(event: MouseEvent): void;
|
|
4828
5119
|
isInteractionBlocked(): boolean;
|
|
4829
5120
|
private parseOptionsSource;
|
|
4830
5121
|
private selectedOptions;
|
|
@@ -4847,6 +5138,14 @@ declare class InlineRelativePeriodComponent extends SimpleBaseSelectComponent {
|
|
|
4847
5138
|
private resolveWidthBounds;
|
|
4848
5139
|
private rememberTriggerElement;
|
|
4849
5140
|
private restoreFocusToTrigger;
|
|
5141
|
+
private openPanel;
|
|
5142
|
+
private cancelPanelSelection;
|
|
5143
|
+
private currentRawSelectionValue;
|
|
5144
|
+
private setDraftSelectionValue;
|
|
5145
|
+
private clearDraftSelection;
|
|
5146
|
+
private cloneSelectionValue;
|
|
5147
|
+
private usesExplicitRelativeOverlay;
|
|
5148
|
+
private inlineOverlayAction;
|
|
4850
5149
|
private multipleMode;
|
|
4851
5150
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InlineRelativePeriodComponent, never>;
|
|
4852
5151
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InlineRelativePeriodComponent, "pdx-inline-relative-period", 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>;
|
|
@@ -4875,6 +5174,8 @@ declare class InlineSentimentComponent extends SimpleBaseSelectComponent {
|
|
|
4875
5174
|
panelOpen: boolean;
|
|
4876
5175
|
private fieldLabelText;
|
|
4877
5176
|
private lastTriggerElement;
|
|
5177
|
+
private draftSelectionValue;
|
|
5178
|
+
private hasDraftSelectionValue;
|
|
4878
5179
|
private currentMetadata;
|
|
4879
5180
|
private asRecord;
|
|
4880
5181
|
private metadataRecord;
|
|
@@ -4894,6 +5195,7 @@ declare class InlineSentimentComponent extends SimpleBaseSelectComponent {
|
|
|
4894
5195
|
onTriggerKeydown(event: Event): void;
|
|
4895
5196
|
closePanel(): void;
|
|
4896
5197
|
onOverlayDetach(): void;
|
|
5198
|
+
onOverlayOutsideClick(event: MouseEvent): void;
|
|
4897
5199
|
panelId(): string;
|
|
4898
5200
|
panelTitleId(): string;
|
|
4899
5201
|
panelTitleText(): string;
|
|
@@ -4913,6 +5215,29 @@ declare class InlineSentimentComponent extends SimpleBaseSelectComponent {
|
|
|
4913
5215
|
placeholderText(): string;
|
|
4914
5216
|
ariaLabel(): string;
|
|
4915
5217
|
emptyStateText(): string;
|
|
5218
|
+
showSentimentOverlayActions(): boolean;
|
|
5219
|
+
hasPanelSelection(): boolean;
|
|
5220
|
+
panelActionsAriaLabel(): string;
|
|
5221
|
+
clearPanelActionLabel(): string;
|
|
5222
|
+
cancelPanelActionLabel(): string;
|
|
5223
|
+
applyPanelActionLabel(): string;
|
|
5224
|
+
clearPanelActionAriaLabel(): string;
|
|
5225
|
+
cancelPanelActionAriaLabel(): string;
|
|
5226
|
+
applyPanelActionAriaLabel(): string;
|
|
5227
|
+
showPanelClearAction(): boolean;
|
|
5228
|
+
showPanelCancelAction(): boolean;
|
|
5229
|
+
clearPanelActionIcon(): string;
|
|
5230
|
+
cancelPanelActionIcon(): string;
|
|
5231
|
+
applyPanelActionIcon(): string;
|
|
5232
|
+
clearPanelActionAppearance(): string;
|
|
5233
|
+
cancelPanelActionAppearance(): string;
|
|
5234
|
+
applyPanelActionAppearance(): string;
|
|
5235
|
+
clearPanelActionColorRole(): string;
|
|
5236
|
+
cancelPanelActionColorRole(): string;
|
|
5237
|
+
applyPanelActionColorRole(): string;
|
|
5238
|
+
onPanelClear(event: MouseEvent): void;
|
|
5239
|
+
onPanelCancel(event: MouseEvent): void;
|
|
5240
|
+
onPanelDone(event: MouseEvent): void;
|
|
4916
5241
|
isInteractionBlocked(): boolean;
|
|
4917
5242
|
private parseOptionsSource;
|
|
4918
5243
|
private toVisualOption;
|
|
@@ -4923,6 +5248,13 @@ declare class InlineSentimentComponent extends SimpleBaseSelectComponent {
|
|
|
4923
5248
|
private parseColorList;
|
|
4924
5249
|
private selectedValues;
|
|
4925
5250
|
private currentRawSelectionValue;
|
|
5251
|
+
private openPanel;
|
|
5252
|
+
private cancelPanelSelection;
|
|
5253
|
+
private setDraftSelectionValue;
|
|
5254
|
+
private clearDraftSelection;
|
|
5255
|
+
private cloneSelectionValue;
|
|
5256
|
+
private usesExplicitSentimentOverlay;
|
|
5257
|
+
private inlineOverlayAction;
|
|
4926
5258
|
private currentSelectionVisuals;
|
|
4927
5259
|
private fallbackVisualFromValue;
|
|
4928
5260
|
private resolveCloseOnSelect;
|
|
@@ -4971,6 +5303,8 @@ declare class InlineColorLabelComponent extends SimpleBaseSelectComponent<unknow
|
|
|
4971
5303
|
panelOpen: boolean;
|
|
4972
5304
|
private fieldLabelText;
|
|
4973
5305
|
private lastTriggerElement;
|
|
5306
|
+
private draftSelectionValue;
|
|
5307
|
+
private hasDraftSelectionValue;
|
|
4974
5308
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
4975
5309
|
protected setMetadata(metadata: MaterialSelectMetadata): void;
|
|
4976
5310
|
onComponentInit(): void;
|
|
@@ -4988,6 +5322,7 @@ declare class InlineColorLabelComponent extends SimpleBaseSelectComponent<unknow
|
|
|
4988
5322
|
onTriggerKeydown(event: Event): void;
|
|
4989
5323
|
closePanel(): void;
|
|
4990
5324
|
onOverlayDetach(): void;
|
|
5325
|
+
onOverlayOutsideClick(event: MouseEvent): void;
|
|
4991
5326
|
panelId(): string;
|
|
4992
5327
|
panelTitleId(): string;
|
|
4993
5328
|
panelTitleText(): string;
|
|
@@ -5012,12 +5347,43 @@ declare class InlineColorLabelComponent extends SimpleBaseSelectComponent<unknow
|
|
|
5012
5347
|
placeholderText(): string;
|
|
5013
5348
|
ariaLabel(): string;
|
|
5014
5349
|
emptyStateText(): string;
|
|
5350
|
+
showColorLabelOverlayActions(): boolean;
|
|
5351
|
+
hasPanelSelection(): boolean;
|
|
5352
|
+
panelActionsAriaLabel(): string;
|
|
5353
|
+
clearPanelActionLabel(): string;
|
|
5354
|
+
cancelPanelActionLabel(): string;
|
|
5355
|
+
applyPanelActionLabel(): string;
|
|
5356
|
+
clearPanelActionAriaLabel(): string;
|
|
5357
|
+
cancelPanelActionAriaLabel(): string;
|
|
5358
|
+
applyPanelActionAriaLabel(): string;
|
|
5359
|
+
showPanelClearAction(): boolean;
|
|
5360
|
+
showPanelCancelAction(): boolean;
|
|
5361
|
+
clearPanelActionIcon(): string;
|
|
5362
|
+
cancelPanelActionIcon(): string;
|
|
5363
|
+
applyPanelActionIcon(): string;
|
|
5364
|
+
clearPanelActionAppearance(): string;
|
|
5365
|
+
cancelPanelActionAppearance(): string;
|
|
5366
|
+
applyPanelActionAppearance(): string;
|
|
5367
|
+
clearPanelActionColorRole(): string;
|
|
5368
|
+
cancelPanelActionColorRole(): string;
|
|
5369
|
+
applyPanelActionColorRole(): string;
|
|
5370
|
+
onPanelClear(event: MouseEvent): void;
|
|
5371
|
+
onPanelCancel(event: MouseEvent): void;
|
|
5372
|
+
onPanelDone(event: MouseEvent): void;
|
|
5015
5373
|
isInteractionBlocked(): boolean;
|
|
5016
5374
|
private parseOptionsSource;
|
|
5017
5375
|
private toVisualOption;
|
|
5018
5376
|
private resolveOptionColor;
|
|
5019
5377
|
private parseColorList;
|
|
5020
5378
|
private selectedValues;
|
|
5379
|
+
private openPanel;
|
|
5380
|
+
private cancelPanelSelection;
|
|
5381
|
+
private setDraftSelectionValue;
|
|
5382
|
+
private clearDraftSelection;
|
|
5383
|
+
private currentSelectionValue;
|
|
5384
|
+
private cloneSelectionValue;
|
|
5385
|
+
private usesExplicitColorLabelOverlay;
|
|
5386
|
+
private inlineOverlayAction;
|
|
5021
5387
|
private resolveCloseOnSelect;
|
|
5022
5388
|
private resolveMultipleMode;
|
|
5023
5389
|
private equalsOptionValue;
|
|
@@ -5228,18 +5594,28 @@ declare class MaterialButtonToggleComponent extends SimpleBaseSelectComponent {
|
|
|
5228
5594
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MaterialButtonToggleComponent, "pdx-material-button-toggle", 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>;
|
|
5229
5595
|
}
|
|
5230
5596
|
|
|
5231
|
-
declare class MaterialSlideToggleComponent extends SimpleBaseInputComponent {
|
|
5597
|
+
declare class MaterialSlideToggleComponent extends SimpleBaseInputComponent implements DoCheck {
|
|
5232
5598
|
readonlyMode: boolean;
|
|
5233
5599
|
disabledMode: boolean;
|
|
5234
5600
|
visible: boolean;
|
|
5235
5601
|
presentationMode: boolean;
|
|
5602
|
+
private disabledModeAppliedToControl;
|
|
5603
|
+
ngDoCheck(): void;
|
|
5236
5604
|
requiredEffective(): boolean;
|
|
5605
|
+
requiredTrueEffective(): boolean;
|
|
5237
5606
|
toggleInteractionDisabled(): boolean;
|
|
5238
5607
|
toggleAriaDisabled(): 'true' | null;
|
|
5239
5608
|
toggleAriaReadonly(): 'true' | null;
|
|
5240
5609
|
readonlyEffective(): boolean;
|
|
5610
|
+
onTogglePointerDown(event: Event): void;
|
|
5611
|
+
onToggleInteractionEvent(event: Event): void;
|
|
5612
|
+
onToggleKeydown(event: KeyboardEvent): void;
|
|
5241
5613
|
/** Applies component metadata with strong typing. */
|
|
5242
5614
|
setInputMetadata(metadata: MaterialToggleMetadata): void;
|
|
5615
|
+
protected onActiveControlChanged(previousControl: FormControl, _currentControl: FormControl): void;
|
|
5616
|
+
private syncRequiredTrueValidator;
|
|
5617
|
+
private blockToggleInteractionIfNeeded;
|
|
5618
|
+
private syncDisabledModeControlState;
|
|
5243
5619
|
protected getSpecificCssClasses(): string[];
|
|
5244
5620
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialSlideToggleComponent, never>;
|
|
5245
5621
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MaterialSlideToggleComponent, "pdx-material-slide-toggle", 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>;
|
|
@@ -5791,6 +6167,7 @@ declare class PhoneInputComponent extends SimpleBaseInputComponent {
|
|
|
5791
6167
|
protected getSpecificCssClasses(): string[];
|
|
5792
6168
|
/** Applies strongly typed metadata to the component. */
|
|
5793
6169
|
setInputMetadata(metadata: MaterialPhoneMetadata): void;
|
|
6170
|
+
protected onActiveControlChanged(_previousControl: FormControl, _currentControl: FormControl): void;
|
|
5794
6171
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
5795
6172
|
isReadonlyEffective(): boolean;
|
|
5796
6173
|
private metadataAsField;
|