@glint/template 1.6.0-alpha.2 → 1.6.0-alpha.3
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.
|
@@ -585,6 +585,10 @@ interface HTMLTextAreaElementAttributes extends GenericAttributes {
|
|
|
585
585
|
['readonly']: AttrValue;
|
|
586
586
|
['required']: AttrValue;
|
|
587
587
|
['rows']: AttrValue;
|
|
588
|
+
// This is not actually an HTMLTextAreaElement attribute, but Ember/Glimmer
|
|
589
|
+
// support `value` attribute syntax to support binding values into
|
|
590
|
+
// `<textarea>`s, so we include it here.
|
|
591
|
+
['value']: AttrValue;
|
|
588
592
|
['wrap']: AttrValue;
|
|
589
593
|
}
|
|
590
594
|
interface HTMLTimeElementAttributes extends GenericAttributes {
|