@solcre-org/core-ui 2.20.3 → 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,18 +753,21 @@ 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;
@@ -772,9 +775,11 @@ declare class DocumentFieldComponent<T extends DataBaseModelInterface> extends B
772
775
  options: DocumentOption[];
773
776
  defaultValue: any;
774
777
  }>;
778
+ ngOnInit(): void;
775
779
  constructor();
776
780
  private emitValue;
777
781
  onDocumentTypeChange(event: Event): void;
782
+ onDocumentTypeChangeFromSelect(value: any): void;
778
783
  onDocumentNumberChange(event: Event): void;
779
784
  onDocumentTypeFocus(): void;
780
785
  onDocumentNumberFocus(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solcre-org/core-ui",
3
- "version": "2.20.3",
3
+ "version": "2.20.4",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"