@praxisui/dynamic-fields 8.0.0-beta.87 → 8.0.0-beta.88
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/dynamic-fields",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.88",
|
|
4
4
|
"description": "Angular Material-based dynamic form fields for Praxis UI with lazy loading and metadata-driven rendering.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"@angular/platform-browser": "^21.0.0",
|
|
12
12
|
"@angular/router": "^21.0.0",
|
|
13
13
|
"rxjs": "^7.8.0",
|
|
14
|
-
"@praxisui/core": "^8.0.0-beta.
|
|
15
|
-
"@praxisui/cron-builder": "^8.0.0-beta.
|
|
14
|
+
"@praxisui/core": "^8.0.0-beta.88",
|
|
15
|
+
"@praxisui/cron-builder": "^8.0.0-beta.88"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"libphonenumber-js": "^1.12.41",
|
|
@@ -2832,6 +2832,7 @@ declare class InlineEntityLookupComponent extends MaterialAsyncSelectComponent {
|
|
|
2832
2832
|
onQuickClear(event: MouseEvent): void;
|
|
2833
2833
|
onOpenedChange(opened: boolean): void;
|
|
2834
2834
|
onSearchInputEvent(event: Event): void;
|
|
2835
|
+
onSearchInputKeydown(event: KeyboardEvent): void;
|
|
2835
2836
|
onSearchInput(term: string): void;
|
|
2836
2837
|
showLoadMore(): boolean;
|
|
2837
2838
|
showEndReachedMessage(): boolean;
|
|
@@ -3230,6 +3231,7 @@ declare class InlineAutocompleteComponent extends MaterialAutocompleteComponent
|
|
|
3230
3231
|
private resizeRafId;
|
|
3231
3232
|
private fieldLabelText;
|
|
3232
3233
|
private staticOptions;
|
|
3234
|
+
displayWith: (value: unknown) => string;
|
|
3233
3235
|
private currentMetadata;
|
|
3234
3236
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
3235
3237
|
protected setMetadata(metadata: MaterialAutocompleteMetadata): void;
|
|
@@ -3240,6 +3242,7 @@ declare class InlineAutocompleteComponent extends MaterialAutocompleteComponent
|
|
|
3240
3242
|
protected getSpecificCssClasses(): string[];
|
|
3241
3243
|
isReadonlyEffective(): boolean;
|
|
3242
3244
|
showQuickClear(): boolean;
|
|
3245
|
+
hasInlineValue(): boolean;
|
|
3243
3246
|
showInlinePlaceholder(): boolean;
|
|
3244
3247
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
3245
3248
|
onQuickClear(event: MouseEvent): void;
|
|
@@ -3304,6 +3307,7 @@ declare class InlineNumberComponent extends SimpleBaseInputComponent {
|
|
|
3304
3307
|
showPercentSuffix(): boolean;
|
|
3305
3308
|
percentDisplayText(): string;
|
|
3306
3309
|
percentRangeText(): string;
|
|
3310
|
+
percentInputCh(): string | null;
|
|
3307
3311
|
percentAngle(): number;
|
|
3308
3312
|
percentFillWidth(): number;
|
|
3309
3313
|
effectiveMinValue(): number | null;
|
|
@@ -3335,9 +3339,9 @@ declare class InlineNumberComponent extends SimpleBaseInputComponent {
|
|
|
3335
3339
|
private currentNumericValue;
|
|
3336
3340
|
private percentRatio;
|
|
3337
3341
|
private formatCompactNumber;
|
|
3342
|
+
private decimalPlacesFromStep;
|
|
3338
3343
|
private longestMeasureCandidate;
|
|
3339
3344
|
private isPercentFormat;
|
|
3340
|
-
private resolveNonEmptyString;
|
|
3341
3345
|
private resolveFieldLabelFromMetadata;
|
|
3342
3346
|
private humanizeFieldName;
|
|
3343
3347
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InlineNumberComponent, never>;
|
|
@@ -3382,6 +3386,7 @@ declare class InlineCurrencyComponent extends SimpleBaseInputComponent {
|
|
|
3382
3386
|
protected resolveInlineContextTooltipValue(): string;
|
|
3383
3387
|
isReadonlyEffective(): boolean;
|
|
3384
3388
|
showQuickClear(): boolean;
|
|
3389
|
+
hasInlineValue(): boolean;
|
|
3385
3390
|
showInlinePlaceholder(): boolean;
|
|
3386
3391
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
3387
3392
|
onQuickClear(event: MouseEvent): void;
|
|
@@ -3614,12 +3619,20 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
|
|
|
3614
3619
|
private quickPresetsCache;
|
|
3615
3620
|
private distributionCacheKey;
|
|
3616
3621
|
private distributionCache;
|
|
3622
|
+
private activeSliderThumb;
|
|
3623
|
+
private sliderPointerInteractionActive;
|
|
3624
|
+
private sliderOutsideCloseSuppressedUntil;
|
|
3625
|
+
private sliderPointerLastClientX;
|
|
3626
|
+
private sliderPointerDirection;
|
|
3617
3627
|
private lastTriggerElement;
|
|
3618
3628
|
setInputMetadata(metadata: MaterialRangeSliderMetadata): void;
|
|
3619
3629
|
protected setMetadata(metadata: MaterialRangeSliderMetadata): void;
|
|
3620
3630
|
onComponentInit(): void;
|
|
3621
3631
|
onViewportResize(): void;
|
|
3622
3632
|
onDocumentEscape(): void;
|
|
3633
|
+
onDocumentPointerUp(): void;
|
|
3634
|
+
onDocumentPointerCancel(): void;
|
|
3635
|
+
onDocumentPointerMove(event: PointerEvent): void;
|
|
3623
3636
|
protected getSpecificCssClasses(): string[];
|
|
3624
3637
|
minValue(): number;
|
|
3625
3638
|
maxValue(): number;
|
|
@@ -3641,6 +3654,8 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
|
|
|
3641
3654
|
inputMaxLabel(): string;
|
|
3642
3655
|
inputValueLabel(): string;
|
|
3643
3656
|
quickPresetsGroupLabel(): string;
|
|
3657
|
+
clearPanelActionLabel(): string;
|
|
3658
|
+
donePanelActionLabel(): string;
|
|
3644
3659
|
quickPresets(): InlineRangeQuickPreset[];
|
|
3645
3660
|
hasQuickPresets(): boolean;
|
|
3646
3661
|
presetAriaLabel(preset: InlineRangeQuickPreset): string;
|
|
@@ -3650,6 +3665,13 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
|
|
|
3650
3665
|
onRangeInputBlur(_edge: 'start' | 'end'): void;
|
|
3651
3666
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
3652
3667
|
onQuickClear(event: MouseEvent): void;
|
|
3668
|
+
onPanelClear(event: MouseEvent): void;
|
|
3669
|
+
onPanelDone(event: MouseEvent): void;
|
|
3670
|
+
onThumbDragStart(thumb: 'start' | 'end'): void;
|
|
3671
|
+
onThumbDragEnd(): void;
|
|
3672
|
+
onSliderPointerDown(event: PointerEvent): void;
|
|
3673
|
+
onOverlayOutsideClick(event: MouseEvent): void;
|
|
3674
|
+
private finishSliderPointerInteraction;
|
|
3653
3675
|
onTriggerClick(event: MouseEvent): void;
|
|
3654
3676
|
onTriggerKeydown(event: Event): void;
|
|
3655
3677
|
closePanel(): void;
|
|
@@ -3676,6 +3698,7 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
|
|
|
3676
3698
|
private parseDistributionBins;
|
|
3677
3699
|
private compactDistributionBins;
|
|
3678
3700
|
private normalizeRangeValue;
|
|
3701
|
+
private normalizeInteractiveRangeValue;
|
|
3679
3702
|
private inlineTexts;
|
|
3680
3703
|
private buildAutoQuickPresets;
|
|
3681
3704
|
private parseAutoPresetLabels;
|
|
@@ -3702,7 +3725,6 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
|
|
|
3702
3725
|
private numberFormatter;
|
|
3703
3726
|
private usesCurrencyFormatting;
|
|
3704
3727
|
private usesPercentFormatting;
|
|
3705
|
-
private resolveNonEmptyString;
|
|
3706
3728
|
private resetFormatterCache;
|
|
3707
3729
|
private resetQuickPresetsCache;
|
|
3708
3730
|
private resetDistributionCache;
|
|
@@ -3833,6 +3855,7 @@ declare class InlineDateComponent extends MaterialDatepickerComponent {
|
|
|
3833
3855
|
isReadonlyEffective(): boolean;
|
|
3834
3856
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
3835
3857
|
showQuickClear(): boolean;
|
|
3858
|
+
hasInlineValue(): boolean;
|
|
3836
3859
|
showInlinePlaceholder(): boolean;
|
|
3837
3860
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
3838
3861
|
onQuickClear(event: MouseEvent): void;
|
|
@@ -4033,6 +4056,7 @@ declare class InlineTimeComponent extends MaterialTimepickerComponent {
|
|
|
4033
4056
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
4034
4057
|
isInteractionBlocked(): boolean;
|
|
4035
4058
|
showQuickClear(): boolean;
|
|
4059
|
+
hasInlineValue(): boolean;
|
|
4036
4060
|
showInlinePlaceholder(): boolean;
|
|
4037
4061
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
4038
4062
|
onQuickClear(event: MouseEvent): void;
|