dojo / themes

Dojo Framework Themes
11 stars 19 forks source link

Dojo - Text-input: Helper text #39

Closed tomdye closed 5 years ago

tomdye commented 5 years ago

Enhancement

A recent PR in @dojo/widgets added a HelperText widget to text-input / text-area. The Dojo theme should be updated to style this widget.

Dom structure is

v('div', {
            key: 'root',
            classes: this.theme([
                css.root,
                valid === true ? css.valid : null,
                valid === false ? css.invalid : null
            ])
        }, [
            text && v('p', {
                key: 'text',
                classes: this.theme(css.text),
                'aria-hidden': 'true',
                title: text
            }, [text])
        ])

PR: https://github.com/dojo/widgets/pull/682

tomdye commented 5 years ago

Closed by https://github.com/dojo/themes/pull/48