@glint/template 1.6.3-unstable.cb1a168 → 1.7.1-unstable.6fed750
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 +35 -33
- package/package.json +1 -1
|
@@ -4,38 +4,7 @@
|
|
|
4
4
|
import { AttrValue } from '../index';
|
|
5
5
|
|
|
6
6
|
declare global {
|
|
7
|
-
interface
|
|
8
|
-
['accesskey']: AttrValue;
|
|
9
|
-
['autocapitalize']: AttrValue;
|
|
10
|
-
['autocorrect']: AttrValue;
|
|
11
|
-
['autofocus']: AttrValue;
|
|
12
|
-
['class']: AttrValue;
|
|
13
|
-
['contenteditable']: AttrValue;
|
|
14
|
-
['dir']: AttrValue;
|
|
15
|
-
['draggable']: AttrValue;
|
|
16
|
-
['enterkeyhint']: AttrValue;
|
|
17
|
-
['exportparts']: AttrValue;
|
|
18
|
-
['hidden']: AttrValue;
|
|
19
|
-
['id']: AttrValue;
|
|
20
|
-
['inert']: AttrValue;
|
|
21
|
-
['inputmode']: AttrValue;
|
|
22
|
-
['is']: AttrValue;
|
|
23
|
-
['itemid']: AttrValue;
|
|
24
|
-
['itemprop']: AttrValue;
|
|
25
|
-
['itemref']: AttrValue;
|
|
26
|
-
['itemscope']: AttrValue;
|
|
27
|
-
['itemtype']: AttrValue;
|
|
28
|
-
['lang']: AttrValue;
|
|
29
|
-
['nonce']: AttrValue;
|
|
30
|
-
['part']: AttrValue;
|
|
31
|
-
['popover']: AttrValue;
|
|
32
|
-
['slot']: AttrValue;
|
|
33
|
-
['spellcheck']: AttrValue;
|
|
34
|
-
['style']: AttrValue;
|
|
35
|
-
['tabindex']: AttrValue;
|
|
36
|
-
['title']: AttrValue;
|
|
37
|
-
['translate']: AttrValue;
|
|
38
|
-
['writingsuggestions']: AttrValue;
|
|
7
|
+
interface GlobalAriaAttributes {
|
|
39
8
|
['aria-activedescendant']: AttrValue;
|
|
40
9
|
['aria-atomic']: AttrValue;
|
|
41
10
|
['aria-autocomplete']: AttrValue;
|
|
@@ -85,6 +54,39 @@ interface GlobalHTMLAttributes {
|
|
|
85
54
|
['aria-valuenow']: AttrValue;
|
|
86
55
|
['aria-valuetext']: AttrValue;
|
|
87
56
|
['role']: AttrValue;
|
|
57
|
+
}
|
|
58
|
+
interface GlobalHTMLAttributes extends GlobalAriaAttributes {
|
|
59
|
+
['accesskey']: AttrValue;
|
|
60
|
+
['autocapitalize']: AttrValue;
|
|
61
|
+
['autocorrect']: AttrValue;
|
|
62
|
+
['autofocus']: AttrValue;
|
|
63
|
+
['class']: AttrValue;
|
|
64
|
+
['contenteditable']: AttrValue;
|
|
65
|
+
['dir']: AttrValue;
|
|
66
|
+
['draggable']: AttrValue;
|
|
67
|
+
['enterkeyhint']: AttrValue;
|
|
68
|
+
['exportparts']: AttrValue;
|
|
69
|
+
['hidden']: AttrValue;
|
|
70
|
+
['id']: AttrValue;
|
|
71
|
+
['inert']: AttrValue;
|
|
72
|
+
['inputmode']: AttrValue;
|
|
73
|
+
['is']: AttrValue;
|
|
74
|
+
['itemid']: AttrValue;
|
|
75
|
+
['itemprop']: AttrValue;
|
|
76
|
+
['itemref']: AttrValue;
|
|
77
|
+
['itemscope']: AttrValue;
|
|
78
|
+
['itemtype']: AttrValue;
|
|
79
|
+
['lang']: AttrValue;
|
|
80
|
+
['nonce']: AttrValue;
|
|
81
|
+
['part']: AttrValue;
|
|
82
|
+
['popover']: AttrValue;
|
|
83
|
+
['slot']: AttrValue;
|
|
84
|
+
['spellcheck']: AttrValue;
|
|
85
|
+
['style']: AttrValue;
|
|
86
|
+
['tabindex']: AttrValue;
|
|
87
|
+
['title']: AttrValue;
|
|
88
|
+
['translate']: AttrValue;
|
|
89
|
+
['writingsuggestions']: AttrValue;
|
|
88
90
|
['onabort']: AttrValue;
|
|
89
91
|
['onafterprint']: AttrValue;
|
|
90
92
|
['onauxclick']: AttrValue;
|
|
@@ -704,7 +706,7 @@ interface GlintHtmlElementAttributesMap {
|
|
|
704
706
|
}
|
|
705
707
|
|
|
706
708
|
declare global {
|
|
707
|
-
interface GlobalSVGAttributes
|
|
709
|
+
interface GlobalSVGAttributes extends GlobalAriaAttributes {
|
|
708
710
|
['about']: AttrValue;
|
|
709
711
|
['class']: AttrValue;
|
|
710
712
|
['content']: AttrValue;
|
package/package.json
CHANGED