feat(input): separate label info tooltips from description text across input components

This commit is contained in:
2026-04-12 18:50:54 +00:00
parent 961b811b7a
commit 13ba5670f0
35 changed files with 128 additions and 128 deletions

View File

@@ -292,17 +292,18 @@ export class DeesInputWysiwyg extends DeesInputBase<string> {
return html`
<dees-label
.label="${this.label}"
.description="${this.description}"
.infoText="${this.infoText}"
.required="${this.required}"
></dees-label>
<div class="wysiwyg-container">
<div
<div
class="editor-content ${this.draggedBlockId ? 'dragging' : ''}"
id="editor-content"
>
<!-- Blocks will be rendered programmatically -->
</div>
</div>
${this.renderDescription()}
`;
}