@m3e/autocomplete 1.1.2 → 1.1.3
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/dist/custom-elements.json +39 -0
- package/package.json +3 -3
|
@@ -2292,12 +2292,51 @@
|
|
|
2292
2292
|
"description": "Mixin to augment an element with behavior emits a click event on keyboard events.",
|
|
2293
2293
|
"name": "KeyboardClick",
|
|
2294
2294
|
"members": [
|
|
2295
|
+
{
|
|
2296
|
+
"kind": "field",
|
|
2297
|
+
"name": "#keyPressed",
|
|
2298
|
+
"privacy": "private",
|
|
2299
|
+
"type": {
|
|
2300
|
+
"text": "boolean"
|
|
2301
|
+
},
|
|
2302
|
+
"default": "false"
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
"kind": "field",
|
|
2306
|
+
"name": "#keyDownHandler",
|
|
2307
|
+
"privacy": "private",
|
|
2308
|
+
"readonly": true
|
|
2309
|
+
},
|
|
2295
2310
|
{
|
|
2296
2311
|
"kind": "field",
|
|
2297
2312
|
"name": "#keyUpHandler",
|
|
2298
2313
|
"privacy": "private",
|
|
2299
2314
|
"readonly": true
|
|
2300
2315
|
},
|
|
2316
|
+
{
|
|
2317
|
+
"kind": "field",
|
|
2318
|
+
"name": "#focusOutHandler",
|
|
2319
|
+
"privacy": "private",
|
|
2320
|
+
"readonly": true
|
|
2321
|
+
},
|
|
2322
|
+
{
|
|
2323
|
+
"kind": "method",
|
|
2324
|
+
"name": "#handleKeyDown",
|
|
2325
|
+
"privacy": "private",
|
|
2326
|
+
"return": {
|
|
2327
|
+
"type": {
|
|
2328
|
+
"text": "void"
|
|
2329
|
+
}
|
|
2330
|
+
},
|
|
2331
|
+
"parameters": [
|
|
2332
|
+
{
|
|
2333
|
+
"name": "e",
|
|
2334
|
+
"type": {
|
|
2335
|
+
"text": "KeyboardEvent"
|
|
2336
|
+
}
|
|
2337
|
+
}
|
|
2338
|
+
]
|
|
2339
|
+
},
|
|
2301
2340
|
{
|
|
2302
2341
|
"kind": "method",
|
|
2303
2342
|
"name": "#handleKeyUp",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/autocomplete",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Autocomplete for M3E",
|
|
5
5
|
"author": "matraic <matraic@yahoo.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"clean": "rimraf dist"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@m3e/core": "1.1.
|
|
31
|
-
"@m3e/option": "1.1.
|
|
30
|
+
"@m3e/core": "^1.1.3",
|
|
31
|
+
"@m3e/option": "^1.1.3",
|
|
32
32
|
"lit": "^3.3.0"
|
|
33
33
|
},
|
|
34
34
|
"customElements": "dist/custom-elements.json"
|