@m3e/snackbar 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 +4 -4
|
@@ -2133,12 +2133,51 @@
|
|
|
2133
2133
|
"description": "Mixin to augment an element with behavior emits a click event on keyboard events.",
|
|
2134
2134
|
"name": "KeyboardClick",
|
|
2135
2135
|
"members": [
|
|
2136
|
+
{
|
|
2137
|
+
"kind": "field",
|
|
2138
|
+
"name": "#keyPressed",
|
|
2139
|
+
"privacy": "private",
|
|
2140
|
+
"type": {
|
|
2141
|
+
"text": "boolean"
|
|
2142
|
+
},
|
|
2143
|
+
"default": "false"
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
"kind": "field",
|
|
2147
|
+
"name": "#keyDownHandler",
|
|
2148
|
+
"privacy": "private",
|
|
2149
|
+
"readonly": true
|
|
2150
|
+
},
|
|
2136
2151
|
{
|
|
2137
2152
|
"kind": "field",
|
|
2138
2153
|
"name": "#keyUpHandler",
|
|
2139
2154
|
"privacy": "private",
|
|
2140
2155
|
"readonly": true
|
|
2141
2156
|
},
|
|
2157
|
+
{
|
|
2158
|
+
"kind": "field",
|
|
2159
|
+
"name": "#focusOutHandler",
|
|
2160
|
+
"privacy": "private",
|
|
2161
|
+
"readonly": true
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
"kind": "method",
|
|
2165
|
+
"name": "#handleKeyDown",
|
|
2166
|
+
"privacy": "private",
|
|
2167
|
+
"return": {
|
|
2168
|
+
"type": {
|
|
2169
|
+
"text": "void"
|
|
2170
|
+
}
|
|
2171
|
+
},
|
|
2172
|
+
"parameters": [
|
|
2173
|
+
{
|
|
2174
|
+
"name": "e",
|
|
2175
|
+
"type": {
|
|
2176
|
+
"text": "KeyboardEvent"
|
|
2177
|
+
}
|
|
2178
|
+
}
|
|
2179
|
+
]
|
|
2180
|
+
},
|
|
2142
2181
|
{
|
|
2143
2182
|
"kind": "method",
|
|
2144
2183
|
"name": "#handleKeyUp",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/snackbar",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Snackbar for M3E",
|
|
5
5
|
"author": "matraic <matraic@yahoo.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"clean": "rimraf dist"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@m3e/core": "1.1.
|
|
31
|
-
"@m3e/button": "1.1.
|
|
32
|
-
"@m3e/icon-button": "1.1.
|
|
30
|
+
"@m3e/core": "^1.1.3",
|
|
31
|
+
"@m3e/button": "^1.1.3",
|
|
32
|
+
"@m3e/icon-button": "^1.1.3",
|
|
33
33
|
"lit": "^3.3.0"
|
|
34
34
|
},
|
|
35
35
|
"customElements": "dist/custom-elements.json"
|