@glint/template 1.6.2-unstable.c5b41e4 → 1.6.2-unstable.c9b0b6c
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.
|
@@ -388,6 +388,7 @@ interface HTMLInputElementAttributes extends GenericAttributes {
|
|
|
388
388
|
['usemap']: AttrValue;
|
|
389
389
|
['value']: AttrValue;
|
|
390
390
|
['width']: AttrValue;
|
|
391
|
+
['indeterminate']: boolean;
|
|
391
392
|
}
|
|
392
393
|
interface HTMLLabelElementAttributes extends GenericAttributes {
|
|
393
394
|
['for']: AttrValue;
|
|
@@ -516,6 +517,8 @@ interface HTMLSelectElementAttributes extends GenericAttributes {
|
|
|
516
517
|
['name']: AttrValue;
|
|
517
518
|
['required']: AttrValue;
|
|
518
519
|
['size']: AttrValue;
|
|
520
|
+
['length']: number;
|
|
521
|
+
['value']: AttrValue;
|
|
519
522
|
}
|
|
520
523
|
interface HTMLSlotElementAttributes extends GenericAttributes {
|
|
521
524
|
['name']: AttrValue;
|
|
@@ -585,11 +588,8 @@ interface HTMLTextAreaElementAttributes extends GenericAttributes {
|
|
|
585
588
|
['readonly']: AttrValue;
|
|
586
589
|
['required']: AttrValue;
|
|
587
590
|
['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;
|
|
592
591
|
['wrap']: AttrValue;
|
|
592
|
+
['value']: AttrValue;
|
|
593
593
|
}
|
|
594
594
|
interface HTMLTimeElementAttributes extends GenericAttributes {
|
|
595
595
|
['datetime']: AttrValue;
|
|
@@ -689,7 +689,7 @@ interface HtmlElements {
|
|
|
689
689
|
}
|
|
690
690
|
|
|
691
691
|
export declare namespace SvgElementAttributes {
|
|
692
|
-
type GenericAttributes = HtmlElementAttributes.GenericAttributes;
|
|
692
|
+
type GenericAttributes = HtmlElementAttributes.GenericAttributes;
|
|
693
693
|
interface SVGAElementAttributes extends GenericAttributes {
|
|
694
694
|
['alignment-baseline']: AttrValue;
|
|
695
695
|
['baseline-shift']: AttrValue;
|
|
@@ -3711,9 +3711,9 @@ interface SVGSVGElementAttributes extends GenericAttributes {
|
|
|
3711
3711
|
['word-spacing']: AttrValue;
|
|
3712
3712
|
['writing-mode']: AttrValue;
|
|
3713
3713
|
['x']: AttrValue;
|
|
3714
|
-
['xmlns']: AttrValue;
|
|
3715
3714
|
['y']: AttrValue;
|
|
3716
3715
|
['zoomAndPan']: AttrValue;
|
|
3716
|
+
['xmlns']: AttrValue;
|
|
3717
3717
|
}
|
|
3718
3718
|
interface SVGSwitchElementAttributes extends GenericAttributes {
|
|
3719
3719
|
['alignment-baseline']: AttrValue;
|
package/package.json
CHANGED