@ldquocc/dynamic-form 0.0.11 → 0.0.12
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/ldquocc-dynamic-form.mjs +21 -15
- package/fesm2022/ldquocc-dynamic-form.mjs.map +1 -1
- package/lib/shared/base/base-value-accessor.d.ts +1 -0
- package/lib/shared/components/component.d.ts +1 -1
- package/lib/shared/components/fields/select/single-select/single-select.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -28,6 +28,7 @@ export declare abstract class BaseValueAccessor<T> implements ControlValueAccess
|
|
|
28
28
|
protected onTouched: () => void;
|
|
29
29
|
protected isDisabled: boolean;
|
|
30
30
|
protected readonly disabledSignal: import("@angular/core").WritableSignal<boolean>;
|
|
31
|
+
protected readonly rootDataSignal: import("@angular/core").WritableSignal<any>;
|
|
31
32
|
protected dFormService: DynamicFormService;
|
|
32
33
|
protected formDataService: FormDataService;
|
|
33
34
|
protected fieldService: FieldService;
|
|
@@ -11,4 +11,4 @@ import { AvatarUploadComponent } from "./fields/upload/avatar-upload/avatar-uplo
|
|
|
11
11
|
import { MultiFileUploadComponent } from "./fields/upload/multi-file-upload/multi-file-upload.component";
|
|
12
12
|
import { MultiImageUploadComponent } from "./fields/upload/multi-image-upload/multi-image-upload.component";
|
|
13
13
|
import { SingleFileUploadComponent } from "./fields/upload/single-file-upload/single-file-upload.component";
|
|
14
|
-
export declare const FIELD_COMPONENTS: (typeof
|
|
14
|
+
export declare const FIELD_COMPONENTS: (typeof DatePickerComponent | typeof DateRangeComponent | typeof InputFormattedComponent | typeof InputPasswordComponent | typeof InputTextComponent | typeof MultiSelectComponent | typeof SingleSelectComponent | typeof TreeSelectComponent | typeof TextareaComponent | typeof AvatarUploadComponent | typeof MultiFileUploadComponent | typeof MultiImageUploadComponent | typeof SingleFileUploadComponent)[];
|
|
@@ -4,6 +4,7 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class SingleSelectComponent extends BaseSelectComponent<string | Record<string, unknown>> {
|
|
5
5
|
isCustomInputText: boolean;
|
|
6
6
|
readonly field: import("@angular/core").Signal<SingleSelectField>;
|
|
7
|
+
log: import("@angular/core").Signal<string | Record<string, unknown> | null>;
|
|
7
8
|
readonly viewDisplayValue: import("@angular/core").Signal<string>;
|
|
8
9
|
constructor();
|
|
9
10
|
protected onApiOptionsLoaded(): void;
|