@gravitee/ui-particles-angular 16.4.1 → 16.4.2
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
|
@@ -930,12 +930,16 @@ declare class GioFormJsonSchemaComponent implements ControlValueAccessor, OnChan
|
|
|
930
930
|
private touched;
|
|
931
931
|
private isValid$;
|
|
932
932
|
private stateChanges$;
|
|
933
|
+
private isWritingValue;
|
|
934
|
+
private isStable;
|
|
935
|
+
private isUpdatingParent;
|
|
933
936
|
constructor(gioFormlyJsonSchema: GioFormlyJsonSchemaService, elRef: ElementRef, fm: FocusMonitor, changeDetectorRef: ChangeDetectorRef, ngControl?: NgControl | undefined);
|
|
934
937
|
ngOnChanges(changes: SimpleChanges): void;
|
|
935
938
|
ngOnInit(): void;
|
|
936
939
|
ngAfterViewInit(): void;
|
|
937
940
|
ngOnDestroy(): void;
|
|
938
941
|
writeValue(value: unknown): void;
|
|
942
|
+
private syncValueToParent;
|
|
939
943
|
registerOnChange(fn: (value: unknown | null) => void): void;
|
|
940
944
|
registerOnTouched(fn: () => void): void;
|
|
941
945
|
setDisabledState?(isDisabled: boolean): void;
|