@Input() inputName: string
@Input() labelText: string
@Input() labelInnerHTML: string
- @Input() helpPlacement = 'top'
+ @Input() helpPlacement = 'top auto'
@Input() disabled = false
@ContentChildren(PeerTubeTemplateDirective) templates: QueryList<PeerTubeTemplateDirective<'label' | 'help'>>
export class HelpComponent implements OnInit, OnChanges, AfterContentInit {
@Input() helpType: 'custom' | 'markdownText' | 'markdownEnhanced' = 'custom'
- @Input() tooltipPlacement = 'right'
+ @Input() tooltipPlacement = 'right auto'
@ContentChildren(PeerTubeTemplateDirective) templates: QueryList<PeerTubeTemplateDirective<'preHtml' | 'customHtml' | 'postHtml'>>