@solcre-org/core-ui 2.20.2 → 2.20.4
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
|
@@ -753,27 +753,33 @@ declare enum WeekDay {
|
|
|
753
753
|
SUNDAY = 6
|
|
754
754
|
}
|
|
755
755
|
|
|
756
|
-
declare class DocumentFieldComponent<T extends DataBaseModelInterface> extends BaseFieldComponent<T> {
|
|
756
|
+
declare class DocumentFieldComponent<T extends DataBaseModelInterface> extends BaseFieldComponent<T> implements OnInit {
|
|
757
757
|
protected documentTypeControl: FormControl<string | null>;
|
|
758
758
|
protected documentNumberControl: FormControl<string | null>;
|
|
759
759
|
private isUserEditing;
|
|
760
|
+
private isInitialized;
|
|
760
761
|
defaultDocumentOptions: DocumentOption[];
|
|
761
762
|
fieldConfig: _angular_core.Signal<DocumentFieldConfig<T>>;
|
|
762
763
|
documentTypeOptions: _angular_core.Signal<DocumentOption[]>;
|
|
763
764
|
isDisabled: _angular_core.Signal<boolean>;
|
|
764
765
|
documentTypeChars: _angular_core.Signal<string>;
|
|
765
766
|
documentNumberChars: _angular_core.Signal<string | null>;
|
|
767
|
+
currentDocumentType: _angular_core.Signal<any>;
|
|
766
768
|
documentFieldConfig: _angular_core.Signal<{
|
|
767
769
|
key: string;
|
|
770
|
+
placeholder: string | undefined;
|
|
768
771
|
type: FieldType;
|
|
769
772
|
label: string;
|
|
770
773
|
readonly: boolean;
|
|
771
774
|
clearable: boolean;
|
|
772
775
|
options: DocumentOption[];
|
|
776
|
+
defaultValue: any;
|
|
773
777
|
}>;
|
|
778
|
+
ngOnInit(): void;
|
|
774
779
|
constructor();
|
|
775
780
|
private emitValue;
|
|
776
781
|
onDocumentTypeChange(event: Event): void;
|
|
782
|
+
onDocumentTypeChangeFromSelect(value: any): void;
|
|
777
783
|
onDocumentNumberChange(event: Event): void;
|
|
778
784
|
onDocumentTypeFocus(): void;
|
|
779
785
|
onDocumentNumberFocus(): void;
|