tuain-ng-forms-lib 15.2.5 → 15.2.7
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/esm2020/lib/classes/forms/field.mjs +6 -4
- package/fesm2015/tuain-ng-forms-lib.mjs +5 -3
- package/fesm2015/tuain-ng-forms-lib.mjs.map +1 -1
- package/fesm2020/tuain-ng-forms-lib.mjs +5 -3
- package/fesm2020/tuain-ng-forms-lib.mjs.map +1 -1
- package/lib/classes/forms/field.d.ts +3 -1
- package/package.json +1 -1
|
@@ -38,15 +38,17 @@ export declare class FieldDescriptor extends FormElement {
|
|
|
38
38
|
private _hasChanged;
|
|
39
39
|
private _outputOnly;
|
|
40
40
|
private _tooltipText;
|
|
41
|
+
private _placeholder;
|
|
41
42
|
fieldCode: string;
|
|
42
43
|
fieldOptions: FieldOption[] | null;
|
|
43
|
-
placeholder: string;
|
|
44
44
|
constructor(inputFieldReceived: any, formConfig: any);
|
|
45
45
|
get alignment(): string;
|
|
46
46
|
set alignment(alignment: string);
|
|
47
47
|
get backend(): boolean;
|
|
48
48
|
get captureType(): string;
|
|
49
49
|
set captureType(captureType: string);
|
|
50
|
+
get placeholder(): string;
|
|
51
|
+
set placeholder(placeholder: string);
|
|
50
52
|
get code(): string;
|
|
51
53
|
get defaultValue(): string;
|
|
52
54
|
set defaultValue(defaultValue: string);
|