@m3e/toc 1.1.2 → 1.1.4
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 +2 -2
|
@@ -2364,12 +2364,51 @@
|
|
|
2364
2364
|
"description": "Mixin to augment an element with behavior emits a click event on keyboard events.",
|
|
2365
2365
|
"name": "KeyboardClick",
|
|
2366
2366
|
"members": [
|
|
2367
|
+
{
|
|
2368
|
+
"kind": "field",
|
|
2369
|
+
"name": "#keyPressed",
|
|
2370
|
+
"privacy": "private",
|
|
2371
|
+
"type": {
|
|
2372
|
+
"text": "boolean"
|
|
2373
|
+
},
|
|
2374
|
+
"default": "false"
|
|
2375
|
+
},
|
|
2376
|
+
{
|
|
2377
|
+
"kind": "field",
|
|
2378
|
+
"name": "#keyDownHandler",
|
|
2379
|
+
"privacy": "private",
|
|
2380
|
+
"readonly": true
|
|
2381
|
+
},
|
|
2367
2382
|
{
|
|
2368
2383
|
"kind": "field",
|
|
2369
2384
|
"name": "#keyUpHandler",
|
|
2370
2385
|
"privacy": "private",
|
|
2371
2386
|
"readonly": true
|
|
2372
2387
|
},
|
|
2388
|
+
{
|
|
2389
|
+
"kind": "field",
|
|
2390
|
+
"name": "#focusOutHandler",
|
|
2391
|
+
"privacy": "private",
|
|
2392
|
+
"readonly": true
|
|
2393
|
+
},
|
|
2394
|
+
{
|
|
2395
|
+
"kind": "method",
|
|
2396
|
+
"name": "#handleKeyDown",
|
|
2397
|
+
"privacy": "private",
|
|
2398
|
+
"return": {
|
|
2399
|
+
"type": {
|
|
2400
|
+
"text": "void"
|
|
2401
|
+
}
|
|
2402
|
+
},
|
|
2403
|
+
"parameters": [
|
|
2404
|
+
{
|
|
2405
|
+
"name": "e",
|
|
2406
|
+
"type": {
|
|
2407
|
+
"text": "KeyboardEvent"
|
|
2408
|
+
}
|
|
2409
|
+
}
|
|
2410
|
+
]
|
|
2411
|
+
},
|
|
2373
2412
|
{
|
|
2374
2413
|
"kind": "method",
|
|
2375
2414
|
"name": "#handleKeyUp",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/toc",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Table of Contents for M3E",
|
|
5
5
|
"author": "matraic <matraic@yahoo.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"clean": "rimraf dist"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@m3e/core": "1.1.
|
|
31
|
+
"@m3e/core": "^1.1.3",
|
|
32
32
|
"lit": "^3.3.0"
|
|
33
33
|
},
|
|
34
34
|
"customElements": "dist/custom-elements.json"
|