mis-crystal-design-system 18.1.6-test-1 → 18.1.6-test-3

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.
@@ -46,18 +46,11 @@ export declare class DynamicFormComponent implements OnInit, OnDestroy {
46
46
  private readonly dynamicFormSignal;
47
47
  private readonly dynamicFormAPISignal;
48
48
  private readonly valueChangesSubscriptionSignal;
49
- private previousFormFields;
50
- private isInternalUpdate;
51
49
  dynamicForm: import("@angular/core").Signal<UntypedFormGroup>;
52
50
  dynamicFormAPI: import("@angular/core").Signal<NsDynamicForm.IDynamicFormAPI>;
53
51
  valueChangesSubscription$: import("@angular/core").Signal<Subscription>;
54
52
  get formFieldsArray(): NsDynamicForm.IDynamicField[];
55
53
  constructor();
56
- /**
57
- * Patches form values without regenerating the form structure
58
- * This prevents focus loss when only values change
59
- */
60
- private patchFormValues;
61
54
  ngOnInit(): void;
62
55
  ngOnDestroy(): void;
63
56
  onFormValueChanges(): void;
@@ -68,14 +61,6 @@ export declare class DynamicFormComponent implements OnInit, OnDestroy {
68
61
  [key: string]: any;
69
62
  }): UntypedFormGroup;
70
63
  getDynamicFieldsControls(): UntypedFormArray;
71
- /**
72
- * Handles subfield updates when parent field values change
73
- * This is called from the form valueChanges subscription
74
- * Uses a debounce mechanism to prevent excessive updates
75
- */
76
- private subFieldUpdateTimeout;
77
- private previousFieldValues;
78
- private handleSubFieldUpdates;
79
64
  updateSubDynamicFields(field: NsDynamicForm.IDynamicField, formGroup: UntypedFormGroup, value: any): void;
80
65
  updateSelectedValueForSingleSelect(field: NsDynamicForm.IDynamicField, control: UntypedFormControl, formGroup: UntypedFormGroup, value: any): void;
81
66
  updateSelectedValueForMultiSelect(field: NsDynamicForm.IDynamicField, control: UntypedFormControl, formGroup: UntypedFormGroup, values: Array<any>): void;