@solcre-org/core-ui 2.11.16 → 2.11.17
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
|
@@ -476,7 +476,10 @@ declare class SelectFieldComponent<T extends DataBaseModelInterface> extends Bas
|
|
|
476
476
|
newFormValue: any;
|
|
477
477
|
}>;
|
|
478
478
|
private isInitialized;
|
|
479
|
+
private hasValue;
|
|
479
480
|
computedValue: _angular_core.Signal<any>;
|
|
481
|
+
isPlaceholderVisible: _angular_core.Signal<boolean>;
|
|
482
|
+
isSearchable: _angular_core.Signal<boolean>;
|
|
480
483
|
constructor();
|
|
481
484
|
ngOnInit(): void;
|
|
482
485
|
compareWith: (item: any, selected: any) => boolean;
|
|
@@ -484,6 +487,8 @@ declare class SelectFieldComponent<T extends DataBaseModelInterface> extends Bas
|
|
|
484
487
|
private findSelectedItem;
|
|
485
488
|
isOptionSelected(optionValue: string): boolean;
|
|
486
489
|
onBlurInput(): void;
|
|
490
|
+
onSelectChange(value: any): void;
|
|
491
|
+
onSelectClear(): void;
|
|
487
492
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SelectFieldComponent<any>, never>;
|
|
488
493
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SelectFieldComponent<any>, "core-select-field", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; }, { "selectionChange": "selectionChange"; }, never, never, true, [{ directive: typeof CoreHostDirective; inputs: {}; outputs: {}; }]>;
|
|
489
494
|
}
|
|
@@ -547,6 +552,7 @@ declare class ServerSelectFieldComponent<T extends DataBaseModelInterface> exten
|
|
|
547
552
|
private initialized;
|
|
548
553
|
private isEvaluatingDynamicOptions;
|
|
549
554
|
private lastRowDataHash;
|
|
555
|
+
private hasValueSignal;
|
|
550
556
|
constructor();
|
|
551
557
|
private itemsSignal;
|
|
552
558
|
items: _angular_core.Signal<SelectItem[]>;
|
|
@@ -560,6 +566,7 @@ declare class ServerSelectFieldComponent<T extends DataBaseModelInterface> exten
|
|
|
560
566
|
private dynamicOptionsThrottle$;
|
|
561
567
|
computedValue: _angular_core.Signal<any>;
|
|
562
568
|
isSearchable: _angular_core.Signal<boolean>;
|
|
569
|
+
isPlaceholderVisible: _angular_core.Signal<boolean>;
|
|
563
570
|
compareWith: (item: SelectItem | null, selected: any) => boolean;
|
|
564
571
|
getDisplayLabel: (item: SelectItem) => string;
|
|
565
572
|
private throttledEvaluateDynamicOptions;
|
|
@@ -581,6 +588,8 @@ declare class ServerSelectFieldComponent<T extends DataBaseModelInterface> exten
|
|
|
581
588
|
isOptionSelected(optionValue: string): boolean;
|
|
582
589
|
onBlurInput(): void;
|
|
583
590
|
onClear(): void;
|
|
591
|
+
onSelectChange(value: any): void;
|
|
592
|
+
onSelectClear(): void;
|
|
584
593
|
onSearch(event: {
|
|
585
594
|
term: string;
|
|
586
595
|
items: any[];
|