@spectrum-web-components/checkbox 0.14.15-overlay.17 → 0.30.0
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/custom-elements.json +303 -0
- package/package.json +7 -7
- package/sp-checkbox.dev.js +2 -1
- package/sp-checkbox.dev.js.map +2 -2
- package/sp-checkbox.js +1 -1
- package/sp-checkbox.js.map +3 -3
- package/src/CheckboxBase.js.map +1 -1
|
@@ -0,0 +1,303 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": "1.0.0",
|
|
3
|
+
"readme": "",
|
|
4
|
+
"modules": [
|
|
5
|
+
{
|
|
6
|
+
"kind": "javascript-module",
|
|
7
|
+
"path": "sp-checkbox.js",
|
|
8
|
+
"declarations": [],
|
|
9
|
+
"exports": []
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"kind": "javascript-module",
|
|
13
|
+
"path": "src/Checkbox.js",
|
|
14
|
+
"declarations": [
|
|
15
|
+
{
|
|
16
|
+
"kind": "class",
|
|
17
|
+
"description": "",
|
|
18
|
+
"name": "Checkbox",
|
|
19
|
+
"slots": [
|
|
20
|
+
{
|
|
21
|
+
"description": "content to display as the label for the Checkbox",
|
|
22
|
+
"name": ""
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"members": [
|
|
26
|
+
{
|
|
27
|
+
"kind": "field",
|
|
28
|
+
"name": "indeterminate",
|
|
29
|
+
"type": {
|
|
30
|
+
"text": "boolean"
|
|
31
|
+
},
|
|
32
|
+
"privacy": "public",
|
|
33
|
+
"default": "false",
|
|
34
|
+
"attribute": "indeterminate",
|
|
35
|
+
"reflects": true
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"kind": "field",
|
|
39
|
+
"name": "invalid",
|
|
40
|
+
"type": {
|
|
41
|
+
"text": "boolean"
|
|
42
|
+
},
|
|
43
|
+
"privacy": "public",
|
|
44
|
+
"default": "false",
|
|
45
|
+
"attribute": "invalid",
|
|
46
|
+
"reflects": true
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"kind": "field",
|
|
50
|
+
"name": "emphasized",
|
|
51
|
+
"type": {
|
|
52
|
+
"text": "boolean"
|
|
53
|
+
},
|
|
54
|
+
"privacy": "public",
|
|
55
|
+
"default": "false",
|
|
56
|
+
"attribute": "emphasized",
|
|
57
|
+
"reflects": true
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"kind": "field",
|
|
61
|
+
"name": "checked",
|
|
62
|
+
"type": {
|
|
63
|
+
"text": "boolean"
|
|
64
|
+
},
|
|
65
|
+
"privacy": "public",
|
|
66
|
+
"default": "false",
|
|
67
|
+
"attribute": "checked",
|
|
68
|
+
"reflects": true,
|
|
69
|
+
"inheritedFrom": {
|
|
70
|
+
"name": "CheckboxBase",
|
|
71
|
+
"module": "src/CheckboxBase.js"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"kind": "field",
|
|
76
|
+
"name": "readonly",
|
|
77
|
+
"type": {
|
|
78
|
+
"text": "boolean"
|
|
79
|
+
},
|
|
80
|
+
"privacy": "public",
|
|
81
|
+
"default": "false",
|
|
82
|
+
"attribute": "readonly",
|
|
83
|
+
"reflects": true,
|
|
84
|
+
"inheritedFrom": {
|
|
85
|
+
"name": "CheckboxBase",
|
|
86
|
+
"module": "src/CheckboxBase.js"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"kind": "field",
|
|
91
|
+
"name": "inputElement",
|
|
92
|
+
"type": {
|
|
93
|
+
"text": "HTMLInputElement"
|
|
94
|
+
},
|
|
95
|
+
"privacy": "protected",
|
|
96
|
+
"inheritedFrom": {
|
|
97
|
+
"name": "CheckboxBase",
|
|
98
|
+
"module": "src/CheckboxBase.js"
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"kind": "field",
|
|
103
|
+
"name": "focusElement",
|
|
104
|
+
"type": {
|
|
105
|
+
"text": "HTMLElement"
|
|
106
|
+
},
|
|
107
|
+
"privacy": "public",
|
|
108
|
+
"inheritedFrom": {
|
|
109
|
+
"name": "CheckboxBase",
|
|
110
|
+
"module": "src/CheckboxBase.js"
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"kind": "method",
|
|
115
|
+
"name": "handleChange",
|
|
116
|
+
"privacy": "public",
|
|
117
|
+
"return": {
|
|
118
|
+
"type": {
|
|
119
|
+
"text": "void"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"inheritedFrom": {
|
|
123
|
+
"name": "CheckboxBase",
|
|
124
|
+
"module": "src/CheckboxBase.js"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"events": [
|
|
129
|
+
{
|
|
130
|
+
"description": "Announces a change in the `checked` property of a Checkbox",
|
|
131
|
+
"name": "change"
|
|
132
|
+
}
|
|
133
|
+
],
|
|
134
|
+
"attributes": [
|
|
135
|
+
{
|
|
136
|
+
"name": "indeterminate",
|
|
137
|
+
"type": {
|
|
138
|
+
"text": "boolean"
|
|
139
|
+
},
|
|
140
|
+
"default": "false",
|
|
141
|
+
"fieldName": "indeterminate"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "invalid",
|
|
145
|
+
"type": {
|
|
146
|
+
"text": "boolean"
|
|
147
|
+
},
|
|
148
|
+
"default": "false",
|
|
149
|
+
"fieldName": "invalid"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"name": "emphasized",
|
|
153
|
+
"type": {
|
|
154
|
+
"text": "boolean"
|
|
155
|
+
},
|
|
156
|
+
"default": "false",
|
|
157
|
+
"fieldName": "emphasized"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "checked",
|
|
161
|
+
"type": {
|
|
162
|
+
"text": "boolean"
|
|
163
|
+
},
|
|
164
|
+
"default": "false",
|
|
165
|
+
"fieldName": "checked",
|
|
166
|
+
"inheritedFrom": {
|
|
167
|
+
"name": "CheckboxBase",
|
|
168
|
+
"module": "src/CheckboxBase.ts"
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "readonly",
|
|
173
|
+
"type": {
|
|
174
|
+
"text": "boolean"
|
|
175
|
+
},
|
|
176
|
+
"default": "false",
|
|
177
|
+
"fieldName": "readonly",
|
|
178
|
+
"inheritedFrom": {
|
|
179
|
+
"name": "CheckboxBase",
|
|
180
|
+
"module": "src/CheckboxBase.ts"
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
],
|
|
184
|
+
"mixins": [
|
|
185
|
+
{
|
|
186
|
+
"name": "SizedMixin",
|
|
187
|
+
"package": "@spectrum-web-components/base"
|
|
188
|
+
}
|
|
189
|
+
],
|
|
190
|
+
"superclass": {
|
|
191
|
+
"name": "CheckboxBase",
|
|
192
|
+
"module": "/src/CheckboxBase.js"
|
|
193
|
+
},
|
|
194
|
+
"tagName": "sp-checkbox",
|
|
195
|
+
"customElement": true
|
|
196
|
+
}
|
|
197
|
+
],
|
|
198
|
+
"exports": [
|
|
199
|
+
{
|
|
200
|
+
"kind": "js",
|
|
201
|
+
"name": "Checkbox",
|
|
202
|
+
"declaration": {
|
|
203
|
+
"name": "Checkbox",
|
|
204
|
+
"module": "src/Checkbox.js"
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
]
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"kind": "javascript-module",
|
|
211
|
+
"path": "src/CheckboxBase.js",
|
|
212
|
+
"declarations": [
|
|
213
|
+
{
|
|
214
|
+
"kind": "class",
|
|
215
|
+
"description": "",
|
|
216
|
+
"name": "CheckboxBase",
|
|
217
|
+
"members": [
|
|
218
|
+
{
|
|
219
|
+
"kind": "field",
|
|
220
|
+
"name": "checked",
|
|
221
|
+
"type": {
|
|
222
|
+
"text": "boolean"
|
|
223
|
+
},
|
|
224
|
+
"privacy": "public",
|
|
225
|
+
"default": "false",
|
|
226
|
+
"attribute": "checked",
|
|
227
|
+
"reflects": true
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"kind": "field",
|
|
231
|
+
"name": "readonly",
|
|
232
|
+
"type": {
|
|
233
|
+
"text": "boolean"
|
|
234
|
+
},
|
|
235
|
+
"privacy": "public",
|
|
236
|
+
"default": "false",
|
|
237
|
+
"attribute": "readonly",
|
|
238
|
+
"reflects": true
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"kind": "field",
|
|
242
|
+
"name": "inputElement",
|
|
243
|
+
"type": {
|
|
244
|
+
"text": "HTMLInputElement"
|
|
245
|
+
},
|
|
246
|
+
"privacy": "protected"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"kind": "field",
|
|
250
|
+
"name": "focusElement",
|
|
251
|
+
"type": {
|
|
252
|
+
"text": "HTMLElement"
|
|
253
|
+
},
|
|
254
|
+
"privacy": "public"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"kind": "method",
|
|
258
|
+
"name": "handleChange",
|
|
259
|
+
"privacy": "public",
|
|
260
|
+
"return": {
|
|
261
|
+
"type": {
|
|
262
|
+
"text": "void"
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
],
|
|
267
|
+
"attributes": [
|
|
268
|
+
{
|
|
269
|
+
"name": "checked",
|
|
270
|
+
"type": {
|
|
271
|
+
"text": "boolean"
|
|
272
|
+
},
|
|
273
|
+
"default": "false",
|
|
274
|
+
"fieldName": "checked"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"name": "readonly",
|
|
278
|
+
"type": {
|
|
279
|
+
"text": "boolean"
|
|
280
|
+
},
|
|
281
|
+
"default": "false",
|
|
282
|
+
"fieldName": "readonly"
|
|
283
|
+
}
|
|
284
|
+
],
|
|
285
|
+
"superclass": {
|
|
286
|
+
"name": "Focusable",
|
|
287
|
+
"package": "@spectrum-web-components/shared/src/focusable.js"
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
],
|
|
291
|
+
"exports": [
|
|
292
|
+
{
|
|
293
|
+
"kind": "js",
|
|
294
|
+
"name": "CheckboxBase",
|
|
295
|
+
"declaration": {
|
|
296
|
+
"name": "CheckboxBase",
|
|
297
|
+
"module": "src/CheckboxBase.js"
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
]
|
|
301
|
+
}
|
|
302
|
+
]
|
|
303
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spectrum-web-components/checkbox",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.30.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -61,13 +61,13 @@
|
|
|
61
61
|
"lit-html"
|
|
62
62
|
],
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@spectrum-web-components/base": "^0.
|
|
65
|
-
"@spectrum-web-components/icon": "^0.
|
|
66
|
-
"@spectrum-web-components/icons-ui": "^0.
|
|
67
|
-
"@spectrum-web-components/shared": "^0.
|
|
64
|
+
"@spectrum-web-components/base": "^0.30.0",
|
|
65
|
+
"@spectrum-web-components/icon": "^0.30.0",
|
|
66
|
+
"@spectrum-web-components/icons-ui": "^0.30.0",
|
|
67
|
+
"@spectrum-web-components/shared": "^0.30.0"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@spectrum-css/checkbox": "^6.0.
|
|
70
|
+
"@spectrum-css/checkbox": "^6.0.23"
|
|
71
71
|
},
|
|
72
72
|
"types": "./src/index.d.ts",
|
|
73
73
|
"customElements": "custom-elements.json",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"./sp-*.js",
|
|
76
76
|
"./**/*.dev.js"
|
|
77
77
|
],
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "e34a26bf2bbea5f60a5e415e0f12c97654f0e20d"
|
|
79
79
|
}
|
package/sp-checkbox.dev.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
import { Checkbox } from "./src/Checkbox.dev.js";
|
|
3
|
-
|
|
3
|
+
import { defineElement } from "@spectrum-web-components/base/src/define-element.js";
|
|
4
|
+
defineElement("sp-checkbox", Checkbox);
|
|
4
5
|
//# sourceMappingURL=sp-checkbox.dev.js.map
|
package/sp-checkbox.dev.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["sp-checkbox.ts"],
|
|
4
|
-
"sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { Checkbox } from './src/Checkbox.dev.js'\n\
|
|
5
|
-
"mappings": ";AAWA,SAAS,gBAAgB;
|
|
4
|
+
"sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { Checkbox } from './src/Checkbox.dev.js'\nimport { defineElement } from '@spectrum-web-components/base/src/define-element.js';\n\ndefineElement('sp-checkbox', Checkbox);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-checkbox': Checkbox;\n }\n}\n"],
|
|
5
|
+
"mappings": ";AAWA,SAAS,gBAAgB;AACzB,SAAS,qBAAqB;AAE9B,cAAc,eAAe,QAAQ;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/sp-checkbox.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";import{Checkbox as e}from"./src/Checkbox.js";
|
|
1
|
+
"use strict";import{Checkbox as e}from"./src/Checkbox.js";import{defineElement as o}from"@spectrum-web-components/base/src/define-element.js";o("sp-checkbox",e);
|
|
2
2
|
//# sourceMappingURL=sp-checkbox.js.map
|
package/sp-checkbox.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["sp-checkbox.ts"],
|
|
4
|
-
"sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { Checkbox } from './src/Checkbox.js';\n\
|
|
5
|
-
"mappings": "aAWA,OAAS,YAAAA,MAAgB,
|
|
6
|
-
"names": ["Checkbox"]
|
|
4
|
+
"sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { Checkbox } from './src/Checkbox.js';\nimport { defineElement } from '@spectrum-web-components/base/src/define-element.js';\n\ndefineElement('sp-checkbox', Checkbox);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-checkbox': Checkbox;\n }\n}\n"],
|
|
5
|
+
"mappings": "aAWA,OAAS,YAAAA,MAAgB,oBACzB,OAAS,iBAAAC,MAAqB,sDAE9BA,EAAc,cAAeD,CAAQ",
|
|
6
|
+
"names": ["Checkbox", "defineElement"]
|
|
7
7
|
}
|
package/src/CheckboxBase.js.map
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["CheckboxBase.ts"],
|
|
4
4
|
"sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport {\n property,\n query,\n} from '@spectrum-web-components/base/src/decorators.js';\nimport { Focusable } from '@spectrum-web-components/shared/src/focusable.js';\n\nexport class CheckboxBase extends Focusable {\n @property({ type: Boolean, reflect: true })\n public checked = false;\n\n @property({ type: Boolean, reflect: true })\n public readonly = false;\n\n @query('#input')\n protected inputElement!: HTMLInputElement;\n\n public override get focusElement(): HTMLElement {\n return this.inputElement;\n }\n\n public handleChange(): void {\n if (this.readonly) {\n this.inputElement.checked = this.checked;\n return;\n }\n this.checked = this.inputElement.checked;\n\n const changeEvent = new CustomEvent('change', {\n bubbles: true,\n cancelable: true,\n composed: true,\n });\n const applyDefault = this.dispatchEvent(changeEvent);\n\n if (!applyDefault) {\n this.checked = !this.inputElement.checked;\n this.inputElement.checked = this.checked;\n }\n }\n\n protected override render(): TemplateResult {\n return html`\n <input\n id=\"input\"\n aria-labelledby=\"label\"\n type=\"checkbox\"\n .checked=${this.checked}\n @change=${this.handleChange}\n />\n `;\n }\n}\n"],
|
|
5
|
-
"mappings": "qNAYA,OAAS,QAAAA,MAA4B,gCACrC,OACI,YAAAC,EACA,SAAAC,MACG,kDACP,OAAS,aAAAC,MAAiB,mDAEnB,aAAM,qBAAqBA,CAAU,CAArC,kCAEH,KAAO,QAAU,GAGjB,KAAO,SAAW,GAKlB,IAAoB,cAA4B,CAC5C,OAAO,KAAK,YAChB,CAEO,cAAqB,CACxB,GAAI,KAAK,SAAU,CACf,KAAK,aAAa,QAAU,KAAK,QACjC,
|
|
5
|
+
"mappings": "qNAYA,OAAS,QAAAA,MAA4B,gCACrC,OACI,YAAAC,EACA,SAAAC,MACG,kDACP,OAAS,aAAAC,MAAiB,mDAEnB,aAAM,qBAAqBA,CAAU,CAArC,kCAEH,KAAO,QAAU,GAGjB,KAAO,SAAW,GAKlB,IAAoB,cAA4B,CAC5C,OAAO,KAAK,YAChB,CAEO,cAAqB,CACxB,GAAI,KAAK,SAAU,CACf,KAAK,aAAa,QAAU,KAAK,QACjC,OAEJ,KAAK,QAAU,KAAK,aAAa,QAEjC,MAAMC,EAAc,IAAI,YAAY,SAAU,CAC1C,QAAS,GACT,WAAY,GACZ,SAAU,EACd,CAAC,EACoB,KAAK,cAAcA,CAAW,IAG/C,KAAK,QAAU,CAAC,KAAK,aAAa,QAClC,KAAK,aAAa,QAAU,KAAK,QAEzC,CAEmB,QAAyB,CACxC,OAAOJ;AAAA;AAAA;AAAA;AAAA;AAAA,2BAKY,KAAK;AAAA,0BACN,KAAK;AAAA;AAAA,SAG3B,CACJ,CA3CWK,EAAA,CADNJ,EAAS,CAAE,KAAM,QAAS,QAAS,EAAK,CAAC,GADjC,aAEF,uBAGAI,EAAA,CADNJ,EAAS,CAAE,KAAM,QAAS,QAAS,EAAK,CAAC,GAJjC,aAKF,wBAGGI,EAAA,CADTH,EAAM,QAAQ,GAPN,aAQC",
|
|
6
6
|
"names": ["html", "property", "query", "Focusable", "changeEvent", "__decorateClass"]
|
|
7
7
|
}
|