@praxisui/dynamic-fields 8.0.0-beta.23 → 8.0.0-beta.24
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/index.d.ts
CHANGED
|
@@ -2466,6 +2466,7 @@ declare class InlineSearchableSelectComponent extends MaterialSearchableSelectCo
|
|
|
2466
2466
|
protected getSpecificCssClasses(): string[];
|
|
2467
2467
|
hasSelection(): boolean;
|
|
2468
2468
|
selectedCount(): number;
|
|
2469
|
+
additionalSelectedCount(): number;
|
|
2469
2470
|
displayText(): string;
|
|
2470
2471
|
showQuickClear(): boolean;
|
|
2471
2472
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
@@ -2623,6 +2624,7 @@ declare class InlineAsyncSelectComponent extends MaterialAsyncSelectComponent {
|
|
|
2623
2624
|
protected getSpecificCssClasses(): string[];
|
|
2624
2625
|
hasSelection(): boolean;
|
|
2625
2626
|
selectedCount(): number;
|
|
2627
|
+
additionalSelectedCount(): number;
|
|
2626
2628
|
displayText(): string;
|
|
2627
2629
|
showQuickClear(): boolean;
|
|
2628
2630
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
@@ -3063,6 +3065,7 @@ declare class InlineInputComponent extends SimpleBaseInputComponent {
|
|
|
3063
3065
|
inlineWidthPx: number;
|
|
3064
3066
|
inlineMaxWidthPx: number;
|
|
3065
3067
|
private resizeRafId;
|
|
3068
|
+
private maskSyncRafId;
|
|
3066
3069
|
private currentMetadata;
|
|
3067
3070
|
private metadataRecord;
|
|
3068
3071
|
private asRecord;
|
|
@@ -3074,19 +3077,24 @@ declare class InlineInputComponent extends SimpleBaseInputComponent {
|
|
|
3074
3077
|
protected getSpecificCssClasses(): string[];
|
|
3075
3078
|
isReadonlyEffective(): boolean;
|
|
3076
3079
|
showQuickClear(): boolean;
|
|
3080
|
+
hasInlineValue(): boolean;
|
|
3077
3081
|
showInlinePlaceholder(): boolean;
|
|
3078
3082
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
3079
3083
|
onQuickClear(event: MouseEvent): void;
|
|
3080
|
-
onInlineInput(): void;
|
|
3084
|
+
onInlineInput(event?: Event): void;
|
|
3081
3085
|
widthProbeText(): string;
|
|
3082
3086
|
placeholderText(): string;
|
|
3083
3087
|
ariaLabel(): string;
|
|
3084
3088
|
errorStateMatcher(): _angular_material_error_options_d_CGdTZUYk.E;
|
|
3085
3089
|
private scheduleInlineResize;
|
|
3090
|
+
private scheduleMaskedDisplaySync;
|
|
3086
3091
|
private recalculateInlineWidth;
|
|
3087
3092
|
private resolveWidthBounds;
|
|
3088
3093
|
private resolveChromeWidth;
|
|
3089
3094
|
private parsePx;
|
|
3095
|
+
private syncMaskedDisplayValue;
|
|
3096
|
+
private formatInlineDisplayValue;
|
|
3097
|
+
private resolveDisplayMask;
|
|
3090
3098
|
private resolveFieldLabelFromMetadata;
|
|
3091
3099
|
private humanizeFieldName;
|
|
3092
3100
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InlineInputComponent, never>;
|
|
@@ -3389,6 +3397,12 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
|
3389
3397
|
currentSelectionText(): string;
|
|
3390
3398
|
currentStartLabel(): string;
|
|
3391
3399
|
currentEndLabel(): string;
|
|
3400
|
+
sliderStartThumbValue(): number;
|
|
3401
|
+
sliderEndThumbValue(): number;
|
|
3402
|
+
currentStartPosition(): string;
|
|
3403
|
+
currentEndPosition(): string;
|
|
3404
|
+
currentStartPositionPercent(): number;
|
|
3405
|
+
currentEndPositionPercent(): number;
|
|
3392
3406
|
placeholderText(): string;
|
|
3393
3407
|
panelTitle(): string;
|
|
3394
3408
|
ariaLabel(): string;
|
|
@@ -3397,6 +3411,8 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
|
3397
3411
|
onQuickClear(event: MouseEvent): void;
|
|
3398
3412
|
onTriggerClick(event: MouseEvent): void;
|
|
3399
3413
|
onTriggerKeydown(event: Event): void;
|
|
3414
|
+
onSliderStartInput(event: Event): void;
|
|
3415
|
+
onSliderEndInput(event: Event): void;
|
|
3400
3416
|
closePanel(): void;
|
|
3401
3417
|
onOverlayDetach(): void;
|
|
3402
3418
|
panelId(): string;
|
|
@@ -3405,6 +3421,7 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
|
3405
3421
|
private rebuildValidators;
|
|
3406
3422
|
private buildRangeValidator;
|
|
3407
3423
|
private syncRangeGroupFromControl;
|
|
3424
|
+
private updateRangeFromSlider;
|
|
3408
3425
|
private currentRangeValue;
|
|
3409
3426
|
private distributionVisual;
|
|
3410
3427
|
private resolveDistributionVisual;
|
|
@@ -3413,6 +3430,7 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
|
3413
3430
|
private normalizeRangeValue;
|
|
3414
3431
|
private areRangeValuesEqual;
|
|
3415
3432
|
private toFiniteNumberOrNull;
|
|
3433
|
+
private valuePositionPercent;
|
|
3416
3434
|
private toNonEmptyText;
|
|
3417
3435
|
private parseJsonValue;
|
|
3418
3436
|
private normalizePositivePx;
|
|
@@ -3815,6 +3833,7 @@ declare class InlineDateRangeComponent extends MaterialDateRangeComponent {
|
|
|
3815
3833
|
onQuickClear(event: MouseEvent): void;
|
|
3816
3834
|
onInlineInput(): void;
|
|
3817
3835
|
onInputKeydown(event: Event, picker: MatDateRangePicker<Date>): void;
|
|
3836
|
+
onInputClick(event: Event): void;
|
|
3818
3837
|
onFieldContainerClick(picker: MatDateRangePicker<Date>, event: MouseEvent): void;
|
|
3819
3838
|
openPicker(picker: MatDateRangePicker<Date>, event: Event): void;
|
|
3820
3839
|
onOverlayOpened(): void;
|
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.24",
|
|
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": "^20.1.0",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"@angular/platform-browser": "^20.1.0",
|
|
12
12
|
"@angular/router": "^20.1.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.24",
|
|
15
|
+
"@praxisui/cron-builder": "^8.0.0-beta.24"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"libphonenumber-js": "^1.12.41",
|