@m3e/switch 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
|
@@ -827,6 +827,29 @@
|
|
|
827
827
|
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
828
828
|
}
|
|
829
829
|
},
|
|
830
|
+
{
|
|
831
|
+
"kind": "field",
|
|
832
|
+
"name": "#keyPressed",
|
|
833
|
+
"privacy": "private",
|
|
834
|
+
"type": {
|
|
835
|
+
"text": "boolean"
|
|
836
|
+
},
|
|
837
|
+
"default": "false",
|
|
838
|
+
"inheritedFrom": {
|
|
839
|
+
"name": "KeyboardClick",
|
|
840
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
841
|
+
}
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"kind": "field",
|
|
845
|
+
"name": "#keyDownHandler",
|
|
846
|
+
"privacy": "private",
|
|
847
|
+
"readonly": true,
|
|
848
|
+
"inheritedFrom": {
|
|
849
|
+
"name": "KeyboardClick",
|
|
850
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
851
|
+
}
|
|
852
|
+
},
|
|
830
853
|
{
|
|
831
854
|
"kind": "field",
|
|
832
855
|
"name": "#keyUpHandler",
|
|
@@ -837,6 +860,38 @@
|
|
|
837
860
|
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
838
861
|
}
|
|
839
862
|
},
|
|
863
|
+
{
|
|
864
|
+
"kind": "field",
|
|
865
|
+
"name": "#focusOutHandler",
|
|
866
|
+
"privacy": "private",
|
|
867
|
+
"readonly": true,
|
|
868
|
+
"inheritedFrom": {
|
|
869
|
+
"name": "KeyboardClick",
|
|
870
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
871
|
+
}
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
"kind": "method",
|
|
875
|
+
"name": "#handleKeyDown",
|
|
876
|
+
"privacy": "private",
|
|
877
|
+
"return": {
|
|
878
|
+
"type": {
|
|
879
|
+
"text": "void"
|
|
880
|
+
}
|
|
881
|
+
},
|
|
882
|
+
"parameters": [
|
|
883
|
+
{
|
|
884
|
+
"name": "e",
|
|
885
|
+
"type": {
|
|
886
|
+
"text": "KeyboardEvent"
|
|
887
|
+
}
|
|
888
|
+
}
|
|
889
|
+
],
|
|
890
|
+
"inheritedFrom": {
|
|
891
|
+
"name": "KeyboardClick",
|
|
892
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
893
|
+
}
|
|
894
|
+
},
|
|
840
895
|
{
|
|
841
896
|
"kind": "method",
|
|
842
897
|
"name": "#handleKeyUp",
|
|
@@ -2759,12 +2814,51 @@
|
|
|
2759
2814
|
"description": "Mixin to augment an element with behavior emits a click event on keyboard events.",
|
|
2760
2815
|
"name": "KeyboardClick",
|
|
2761
2816
|
"members": [
|
|
2817
|
+
{
|
|
2818
|
+
"kind": "field",
|
|
2819
|
+
"name": "#keyPressed",
|
|
2820
|
+
"privacy": "private",
|
|
2821
|
+
"type": {
|
|
2822
|
+
"text": "boolean"
|
|
2823
|
+
},
|
|
2824
|
+
"default": "false"
|
|
2825
|
+
},
|
|
2826
|
+
{
|
|
2827
|
+
"kind": "field",
|
|
2828
|
+
"name": "#keyDownHandler",
|
|
2829
|
+
"privacy": "private",
|
|
2830
|
+
"readonly": true
|
|
2831
|
+
},
|
|
2762
2832
|
{
|
|
2763
2833
|
"kind": "field",
|
|
2764
2834
|
"name": "#keyUpHandler",
|
|
2765
2835
|
"privacy": "private",
|
|
2766
2836
|
"readonly": true
|
|
2767
2837
|
},
|
|
2838
|
+
{
|
|
2839
|
+
"kind": "field",
|
|
2840
|
+
"name": "#focusOutHandler",
|
|
2841
|
+
"privacy": "private",
|
|
2842
|
+
"readonly": true
|
|
2843
|
+
},
|
|
2844
|
+
{
|
|
2845
|
+
"kind": "method",
|
|
2846
|
+
"name": "#handleKeyDown",
|
|
2847
|
+
"privacy": "private",
|
|
2848
|
+
"return": {
|
|
2849
|
+
"type": {
|
|
2850
|
+
"text": "void"
|
|
2851
|
+
}
|
|
2852
|
+
},
|
|
2853
|
+
"parameters": [
|
|
2854
|
+
{
|
|
2855
|
+
"name": "e",
|
|
2856
|
+
"type": {
|
|
2857
|
+
"text": "KeyboardEvent"
|
|
2858
|
+
}
|
|
2859
|
+
}
|
|
2860
|
+
]
|
|
2861
|
+
},
|
|
2768
2862
|
{
|
|
2769
2863
|
"kind": "method",
|
|
2770
2864
|
"name": "#handleKeyUp",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/switch",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Switch for M3E",
|
|
5
5
|
"author": "matraic <matraic@yahoo.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"clean": "rimraf dist"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@m3e/core": "1.1.
|
|
30
|
+
"@m3e/core": "^1.1.3",
|
|
31
31
|
"lit": "^3.3.0"
|
|
32
32
|
},
|
|
33
33
|
"customElements": "dist/custom-elements.json"
|