@solcre-org/core-ui 2.12.37 → 2.12.39
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/fesm2022/solcre-org-core-ui.mjs +131 -41
- package/fesm2022/solcre-org-core-ui.mjs.map +1 -1
- package/index.d.ts +7 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -530,6 +530,8 @@ declare class SelectFieldComponent<T extends DataBaseModelInterface> extends Bas
|
|
|
530
530
|
}>;
|
|
531
531
|
private isInitialized;
|
|
532
532
|
private hasValue;
|
|
533
|
+
private userHasInteracted;
|
|
534
|
+
private lastDynamicValue;
|
|
533
535
|
computedValue: _angular_core.Signal<any>;
|
|
534
536
|
isPlaceholderVisible: _angular_core.Signal<boolean>;
|
|
535
537
|
isSearchable: _angular_core.Signal<boolean>;
|
|
@@ -540,6 +542,11 @@ declare class SelectFieldComponent<T extends DataBaseModelInterface> extends Bas
|
|
|
540
542
|
private findSelectedItem;
|
|
541
543
|
isOptionSelected(optionValue: string): boolean;
|
|
542
544
|
onBlurInput(): void;
|
|
545
|
+
private scheduleDynamicValue;
|
|
546
|
+
private shouldApplyDynamicValue;
|
|
547
|
+
private hasMeaningfulValue;
|
|
548
|
+
private areValuesEqual;
|
|
549
|
+
private cloneValue;
|
|
543
550
|
onSelectChange(value: any): void;
|
|
544
551
|
onSelectClear(): void;
|
|
545
552
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SelectFieldComponent<any>, never>;
|