@glint/template 1.6.1-unstable.ff42098 → 1.6.2-unstable.2c25e84
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.
- package/-private/dsl/elements.d.ts +5 -0
- package/-private/dsl.d.ts +2 -2
- package/package.json +1 -10
|
@@ -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 {
|
|
@@ -3707,6 +3711,7 @@ interface SVGSVGElementAttributes extends GenericAttributes {
|
|
|
3707
3711
|
['word-spacing']: AttrValue;
|
|
3708
3712
|
['writing-mode']: AttrValue;
|
|
3709
3713
|
['x']: AttrValue;
|
|
3714
|
+
['xmlns']: AttrValue;
|
|
3710
3715
|
['y']: AttrValue;
|
|
3711
3716
|
['zoomAndPan']: AttrValue;
|
|
3712
3717
|
}
|
package/-private/dsl.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// This module exports functions and types directly referenced by
|
|
2
|
-
// the output of
|
|
2
|
+
// the output of `ember-tsc`'s transform layer. It comprises the
|
|
3
3
|
// basis from which environments construct their exports.
|
|
4
4
|
|
|
5
|
-
export * from './dsl/resolve';
|
|
6
5
|
export * from './dsl/emit';
|
|
6
|
+
export * from './dsl/resolve';
|
|
7
7
|
export * from './dsl/types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glint/template",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2-unstable.2c25e84",
|
|
4
4
|
"repository": "typed-ember/glint",
|
|
5
5
|
"description": "Type definitions to back typechecking for Glimmer templates",
|
|
6
6
|
"license": "MIT",
|
|
@@ -36,15 +36,6 @@
|
|
|
36
36
|
"svg-element-attributes": "^2.1.0",
|
|
37
37
|
"svg-event-attributes": "^2.0.2"
|
|
38
38
|
},
|
|
39
|
-
"release-plan": {
|
|
40
|
-
"semverIncrementAs": {
|
|
41
|
-
"major": "preminor",
|
|
42
|
-
"minor": "prerelease",
|
|
43
|
-
"patch": "prerelease"
|
|
44
|
-
},
|
|
45
|
-
"semverIncrementTag": "alpha",
|
|
46
|
-
"publishTag": "alpha"
|
|
47
|
-
},
|
|
48
39
|
"publishConfig": {
|
|
49
40
|
"access": "public"
|
|
50
41
|
}
|