Issue Description
The infoTooltip property on cps-input components only displays when a label property is present.
Reproduction Steps:
- Create cps-input without label:
<cps-input
[infoTooltip]="patternInfoTooltip"
formControlName="infoDateFormat">
</cps-input>
- Tooltip doesn't appear
- Add label property:
<cps-input
label="Info Date Format"
[infoTooltip]="patternInfoTooltip"
formControlName="infoDateFormat">
</cps-input>
- Tooltip appears
Expected Behavior
InfoTooltip should display regardless of label presence