@m3e/expansion-panel 1.1.1 → 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 +94 -0
- package/package.json +2 -2
|
@@ -226,6 +226,29 @@
|
|
|
226
226
|
}
|
|
227
227
|
}
|
|
228
228
|
},
|
|
229
|
+
{
|
|
230
|
+
"kind": "field",
|
|
231
|
+
"name": "#keyPressed",
|
|
232
|
+
"privacy": "private",
|
|
233
|
+
"type": {
|
|
234
|
+
"text": "boolean"
|
|
235
|
+
},
|
|
236
|
+
"default": "false",
|
|
237
|
+
"inheritedFrom": {
|
|
238
|
+
"name": "KeyboardClick",
|
|
239
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"kind": "field",
|
|
244
|
+
"name": "#keyDownHandler",
|
|
245
|
+
"privacy": "private",
|
|
246
|
+
"readonly": true,
|
|
247
|
+
"inheritedFrom": {
|
|
248
|
+
"name": "KeyboardClick",
|
|
249
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
229
252
|
{
|
|
230
253
|
"kind": "field",
|
|
231
254
|
"name": "#keyUpHandler",
|
|
@@ -236,6 +259,38 @@
|
|
|
236
259
|
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
237
260
|
}
|
|
238
261
|
},
|
|
262
|
+
{
|
|
263
|
+
"kind": "field",
|
|
264
|
+
"name": "#focusOutHandler",
|
|
265
|
+
"privacy": "private",
|
|
266
|
+
"readonly": true,
|
|
267
|
+
"inheritedFrom": {
|
|
268
|
+
"name": "KeyboardClick",
|
|
269
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"kind": "method",
|
|
274
|
+
"name": "#handleKeyDown",
|
|
275
|
+
"privacy": "private",
|
|
276
|
+
"return": {
|
|
277
|
+
"type": {
|
|
278
|
+
"text": "void"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"parameters": [
|
|
282
|
+
{
|
|
283
|
+
"name": "e",
|
|
284
|
+
"type": {
|
|
285
|
+
"text": "KeyboardEvent"
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
],
|
|
289
|
+
"inheritedFrom": {
|
|
290
|
+
"name": "KeyboardClick",
|
|
291
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
292
|
+
}
|
|
293
|
+
},
|
|
239
294
|
{
|
|
240
295
|
"kind": "method",
|
|
241
296
|
"name": "#handleKeyUp",
|
|
@@ -2575,12 +2630,51 @@
|
|
|
2575
2630
|
"description": "Mixin to augment an element with behavior emits a click event on keyboard events.",
|
|
2576
2631
|
"name": "KeyboardClick",
|
|
2577
2632
|
"members": [
|
|
2633
|
+
{
|
|
2634
|
+
"kind": "field",
|
|
2635
|
+
"name": "#keyPressed",
|
|
2636
|
+
"privacy": "private",
|
|
2637
|
+
"type": {
|
|
2638
|
+
"text": "boolean"
|
|
2639
|
+
},
|
|
2640
|
+
"default": "false"
|
|
2641
|
+
},
|
|
2642
|
+
{
|
|
2643
|
+
"kind": "field",
|
|
2644
|
+
"name": "#keyDownHandler",
|
|
2645
|
+
"privacy": "private",
|
|
2646
|
+
"readonly": true
|
|
2647
|
+
},
|
|
2578
2648
|
{
|
|
2579
2649
|
"kind": "field",
|
|
2580
2650
|
"name": "#keyUpHandler",
|
|
2581
2651
|
"privacy": "private",
|
|
2582
2652
|
"readonly": true
|
|
2583
2653
|
},
|
|
2654
|
+
{
|
|
2655
|
+
"kind": "field",
|
|
2656
|
+
"name": "#focusOutHandler",
|
|
2657
|
+
"privacy": "private",
|
|
2658
|
+
"readonly": true
|
|
2659
|
+
},
|
|
2660
|
+
{
|
|
2661
|
+
"kind": "method",
|
|
2662
|
+
"name": "#handleKeyDown",
|
|
2663
|
+
"privacy": "private",
|
|
2664
|
+
"return": {
|
|
2665
|
+
"type": {
|
|
2666
|
+
"text": "void"
|
|
2667
|
+
}
|
|
2668
|
+
},
|
|
2669
|
+
"parameters": [
|
|
2670
|
+
{
|
|
2671
|
+
"name": "e",
|
|
2672
|
+
"type": {
|
|
2673
|
+
"text": "KeyboardEvent"
|
|
2674
|
+
}
|
|
2675
|
+
}
|
|
2676
|
+
]
|
|
2677
|
+
},
|
|
2584
2678
|
{
|
|
2585
2679
|
"kind": "method",
|
|
2586
2680
|
"name": "#handleKeyUp",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/expansion-panel",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Expansion Panel 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"
|