@m3e/radio-group 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 +94 -0
- package/package.json +2 -2
|
@@ -352,6 +352,29 @@
|
|
|
352
352
|
"module": "../core/src/shared/mixins/Checked.ts"
|
|
353
353
|
}
|
|
354
354
|
},
|
|
355
|
+
{
|
|
356
|
+
"kind": "field",
|
|
357
|
+
"name": "#keyPressed",
|
|
358
|
+
"privacy": "private",
|
|
359
|
+
"type": {
|
|
360
|
+
"text": "boolean"
|
|
361
|
+
},
|
|
362
|
+
"default": "false",
|
|
363
|
+
"inheritedFrom": {
|
|
364
|
+
"name": "KeyboardClick",
|
|
365
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"kind": "field",
|
|
370
|
+
"name": "#keyDownHandler",
|
|
371
|
+
"privacy": "private",
|
|
372
|
+
"readonly": true,
|
|
373
|
+
"inheritedFrom": {
|
|
374
|
+
"name": "KeyboardClick",
|
|
375
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
376
|
+
}
|
|
377
|
+
},
|
|
355
378
|
{
|
|
356
379
|
"kind": "field",
|
|
357
380
|
"name": "#keyUpHandler",
|
|
@@ -362,6 +385,38 @@
|
|
|
362
385
|
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
363
386
|
}
|
|
364
387
|
},
|
|
388
|
+
{
|
|
389
|
+
"kind": "field",
|
|
390
|
+
"name": "#focusOutHandler",
|
|
391
|
+
"privacy": "private",
|
|
392
|
+
"readonly": true,
|
|
393
|
+
"inheritedFrom": {
|
|
394
|
+
"name": "KeyboardClick",
|
|
395
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"kind": "method",
|
|
400
|
+
"name": "#handleKeyDown",
|
|
401
|
+
"privacy": "private",
|
|
402
|
+
"return": {
|
|
403
|
+
"type": {
|
|
404
|
+
"text": "void"
|
|
405
|
+
}
|
|
406
|
+
},
|
|
407
|
+
"parameters": [
|
|
408
|
+
{
|
|
409
|
+
"name": "e",
|
|
410
|
+
"type": {
|
|
411
|
+
"text": "KeyboardEvent"
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
],
|
|
415
|
+
"inheritedFrom": {
|
|
416
|
+
"name": "KeyboardClick",
|
|
417
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
418
|
+
}
|
|
419
|
+
},
|
|
365
420
|
{
|
|
366
421
|
"kind": "method",
|
|
367
422
|
"name": "#handleKeyUp",
|
|
@@ -2934,12 +2989,51 @@
|
|
|
2934
2989
|
"description": "Mixin to augment an element with behavior emits a click event on keyboard events.",
|
|
2935
2990
|
"name": "KeyboardClick",
|
|
2936
2991
|
"members": [
|
|
2992
|
+
{
|
|
2993
|
+
"kind": "field",
|
|
2994
|
+
"name": "#keyPressed",
|
|
2995
|
+
"privacy": "private",
|
|
2996
|
+
"type": {
|
|
2997
|
+
"text": "boolean"
|
|
2998
|
+
},
|
|
2999
|
+
"default": "false"
|
|
3000
|
+
},
|
|
3001
|
+
{
|
|
3002
|
+
"kind": "field",
|
|
3003
|
+
"name": "#keyDownHandler",
|
|
3004
|
+
"privacy": "private",
|
|
3005
|
+
"readonly": true
|
|
3006
|
+
},
|
|
2937
3007
|
{
|
|
2938
3008
|
"kind": "field",
|
|
2939
3009
|
"name": "#keyUpHandler",
|
|
2940
3010
|
"privacy": "private",
|
|
2941
3011
|
"readonly": true
|
|
2942
3012
|
},
|
|
3013
|
+
{
|
|
3014
|
+
"kind": "field",
|
|
3015
|
+
"name": "#focusOutHandler",
|
|
3016
|
+
"privacy": "private",
|
|
3017
|
+
"readonly": true
|
|
3018
|
+
},
|
|
3019
|
+
{
|
|
3020
|
+
"kind": "method",
|
|
3021
|
+
"name": "#handleKeyDown",
|
|
3022
|
+
"privacy": "private",
|
|
3023
|
+
"return": {
|
|
3024
|
+
"type": {
|
|
3025
|
+
"text": "void"
|
|
3026
|
+
}
|
|
3027
|
+
},
|
|
3028
|
+
"parameters": [
|
|
3029
|
+
{
|
|
3030
|
+
"name": "e",
|
|
3031
|
+
"type": {
|
|
3032
|
+
"text": "KeyboardEvent"
|
|
3033
|
+
}
|
|
3034
|
+
}
|
|
3035
|
+
]
|
|
3036
|
+
},
|
|
2943
3037
|
{
|
|
2944
3038
|
"kind": "method",
|
|
2945
3039
|
"name": "#handleKeyUp",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/radio-group",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Radio Group 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"
|