@m3e/divider 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
|
@@ -1794,12 +1794,51 @@
|
|
|
1794
1794
|
"description": "Mixin to augment an element with behavior emits a click event on keyboard events.",
|
|
1795
1795
|
"name": "KeyboardClick",
|
|
1796
1796
|
"members": [
|
|
1797
|
+
{
|
|
1798
|
+
"kind": "field",
|
|
1799
|
+
"name": "#keyPressed",
|
|
1800
|
+
"privacy": "private",
|
|
1801
|
+
"type": {
|
|
1802
|
+
"text": "boolean"
|
|
1803
|
+
},
|
|
1804
|
+
"default": "false"
|
|
1805
|
+
},
|
|
1806
|
+
{
|
|
1807
|
+
"kind": "field",
|
|
1808
|
+
"name": "#keyDownHandler",
|
|
1809
|
+
"privacy": "private",
|
|
1810
|
+
"readonly": true
|
|
1811
|
+
},
|
|
1797
1812
|
{
|
|
1798
1813
|
"kind": "field",
|
|
1799
1814
|
"name": "#keyUpHandler",
|
|
1800
1815
|
"privacy": "private",
|
|
1801
1816
|
"readonly": true
|
|
1802
1817
|
},
|
|
1818
|
+
{
|
|
1819
|
+
"kind": "field",
|
|
1820
|
+
"name": "#focusOutHandler",
|
|
1821
|
+
"privacy": "private",
|
|
1822
|
+
"readonly": true
|
|
1823
|
+
},
|
|
1824
|
+
{
|
|
1825
|
+
"kind": "method",
|
|
1826
|
+
"name": "#handleKeyDown",
|
|
1827
|
+
"privacy": "private",
|
|
1828
|
+
"return": {
|
|
1829
|
+
"type": {
|
|
1830
|
+
"text": "void"
|
|
1831
|
+
}
|
|
1832
|
+
},
|
|
1833
|
+
"parameters": [
|
|
1834
|
+
{
|
|
1835
|
+
"name": "e",
|
|
1836
|
+
"type": {
|
|
1837
|
+
"text": "KeyboardEvent"
|
|
1838
|
+
}
|
|
1839
|
+
}
|
|
1840
|
+
]
|
|
1841
|
+
},
|
|
1803
1842
|
{
|
|
1804
1843
|
"kind": "method",
|
|
1805
1844
|
"name": "#handleKeyUp",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/divider",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Divider 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"
|