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