@energycap/components 0.39.15 → 0.39.16-ECAP-23123-Help-Popover-On-Controls.20240513-1123
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/controls/checkbox/checkbox.component.mjs +5 -4
- package/esm2020/lib/controls/combobox/combobox.component.mjs +4 -3
- package/esm2020/lib/controls/form-control-base.mjs +4 -2
- package/esm2020/lib/controls/numericbox/numericbox.component.mjs +5 -4
- package/esm2020/lib/controls/radio-button/radio-button.component.mjs +5 -4
- package/esm2020/lib/controls/select/select.component.mjs +5 -4
- package/esm2020/lib/controls/textbox/textbox.component.mjs +4 -3
- package/fesm2015/energycap-components.mjs +440 -438
- package/fesm2015/energycap-components.mjs.map +1 -1
- package/fesm2020/energycap-components.mjs +439 -437
- package/fesm2020/energycap-components.mjs.map +1 -1
- package/lib/controls/form-control-base.d.ts +5 -1
- package/package.json +1 -1
@@ -54,6 +54,10 @@ export declare abstract class FormControlBase implements OnInit, OnDestroy, OnCh
|
|
54
54
|
* Conditionally show a tooltip on the form control's input.
|
55
55
|
*/
|
56
56
|
tooltip?: string;
|
57
|
+
/**
|
58
|
+
* Conditionally show a help popover next to the controls label.
|
59
|
+
*/
|
60
|
+
helpPopover?: string;
|
57
61
|
/**
|
58
62
|
* All current validation errors
|
59
63
|
*/
|
@@ -97,5 +101,5 @@ export declare abstract class FormControlBase implements OnInit, OnDestroy, OnCh
|
|
97
101
|
*/
|
98
102
|
protected translateValidationMessages(data?: any): Promise<void>;
|
99
103
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormControlBase, never>;
|
100
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FormControlBase, never, never, { "autofocus": "autofocus"; "formModel": "formModel"; "label": "label"; "labelPosition": "labelPosition"; "id": "id"; "pending": "pending"; "required": "required"; "tabindex": "tabindex"; "readonly": "readonly"; "tooltip": "tooltip"; }, {}, never, never, false, never>;
|
104
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FormControlBase, never, never, { "autofocus": "autofocus"; "formModel": "formModel"; "label": "label"; "labelPosition": "labelPosition"; "id": "id"; "pending": "pending"; "required": "required"; "tabindex": "tabindex"; "readonly": "readonly"; "tooltip": "tooltip"; "helpPopover": "helpPopover"; }, {}, never, never, false, never>;
|
101
105
|
}
|