@m3e/slide-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 +39 -0
- package/package.json +3 -3
|
@@ -1887,12 +1887,51 @@
|
|
|
1887
1887
|
"description": "Mixin to augment an element with behavior emits a click event on keyboard events.",
|
|
1888
1888
|
"name": "KeyboardClick",
|
|
1889
1889
|
"members": [
|
|
1890
|
+
{
|
|
1891
|
+
"kind": "field",
|
|
1892
|
+
"name": "#keyPressed",
|
|
1893
|
+
"privacy": "private",
|
|
1894
|
+
"type": {
|
|
1895
|
+
"text": "boolean"
|
|
1896
|
+
},
|
|
1897
|
+
"default": "false"
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
"kind": "field",
|
|
1901
|
+
"name": "#keyDownHandler",
|
|
1902
|
+
"privacy": "private",
|
|
1903
|
+
"readonly": true
|
|
1904
|
+
},
|
|
1890
1905
|
{
|
|
1891
1906
|
"kind": "field",
|
|
1892
1907
|
"name": "#keyUpHandler",
|
|
1893
1908
|
"privacy": "private",
|
|
1894
1909
|
"readonly": true
|
|
1895
1910
|
},
|
|
1911
|
+
{
|
|
1912
|
+
"kind": "field",
|
|
1913
|
+
"name": "#focusOutHandler",
|
|
1914
|
+
"privacy": "private",
|
|
1915
|
+
"readonly": true
|
|
1916
|
+
},
|
|
1917
|
+
{
|
|
1918
|
+
"kind": "method",
|
|
1919
|
+
"name": "#handleKeyDown",
|
|
1920
|
+
"privacy": "private",
|
|
1921
|
+
"return": {
|
|
1922
|
+
"type": {
|
|
1923
|
+
"text": "void"
|
|
1924
|
+
}
|
|
1925
|
+
},
|
|
1926
|
+
"parameters": [
|
|
1927
|
+
{
|
|
1928
|
+
"name": "e",
|
|
1929
|
+
"type": {
|
|
1930
|
+
"text": "KeyboardEvent"
|
|
1931
|
+
}
|
|
1932
|
+
}
|
|
1933
|
+
]
|
|
1934
|
+
},
|
|
1896
1935
|
{
|
|
1897
1936
|
"kind": "method",
|
|
1898
1937
|
"name": "#handleKeyUp",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/slide-group",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Slide Group 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/icon-button": "1.1.
|
|
30
|
+
"@m3e/core": "^1.1.3",
|
|
31
|
+
"@m3e/icon-button": "^1.1.3",
|
|
32
32
|
"lit": "^3.3.0"
|
|
33
33
|
},
|
|
34
34
|
"customElements": "dist/custom-elements.json"
|