@glint/template 1.6.2-unstable.cca1f7b → 1.6.2
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 +6 -6
- package/LICENSE +21 -0
- package/package.json +7 -7
|
@@ -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/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 The Ember TypeScript team and contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glint/template",
|
|
3
|
-
"version": "1.6.2
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"repository": "typed-ember/glint",
|
|
5
5
|
"description": "Type definitions to back typechecking for Glimmer templates",
|
|
6
6
|
"license": "MIT",
|
|
@@ -14,11 +14,6 @@
|
|
|
14
14
|
"types": "./*.d.ts"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"test": "echo 'no standalone tests within this project'",
|
|
19
|
-
"test:typecheck": "tsc --project __tests__",
|
|
20
|
-
"test:tsc": "echo 'no standalone typecheck within this project'"
|
|
21
|
-
},
|
|
22
17
|
"files": [
|
|
23
18
|
"README.md",
|
|
24
19
|
"-private",
|
|
@@ -38,5 +33,10 @@
|
|
|
38
33
|
},
|
|
39
34
|
"publishConfig": {
|
|
40
35
|
"access": "public"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"test": "echo 'no standalone tests within this project'",
|
|
39
|
+
"test:typecheck": "tsc --project __tests__",
|
|
40
|
+
"test:tsc": "echo 'no standalone typecheck within this project'"
|
|
41
41
|
}
|
|
42
|
-
}
|
|
42
|
+
}
|