@rio-cloud/rio-uikit 0.16.1-beta.13 → 0.16.1-beta.14

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.
@@ -57,12 +57,12 @@ var Slider = function Slider(props) {
57
57
  onChange(newValue);
58
58
  };
59
59
 
60
- var onMouseButtonUp = function onMouseButtonUp() {
60
+ var onMouseUp = function onMouseUp() {
61
61
  setIsChanging(false);
62
62
  onDragEnd(currentValue);
63
63
  };
64
64
 
65
- var onMouseButtonDown = function onMouseButtonDown() {
65
+ var onMouseDown = function onMouseDown() {
66
66
  setIsChanging(true);
67
67
  };
68
68
 
@@ -87,8 +87,8 @@ var Slider = function Slider(props) {
87
87
  step: step,
88
88
  type: "range",
89
89
  onChange: handleChange,
90
- onMouseDown: onMouseButtonDown,
91
- onMouseUp: onMouseButtonUp
90
+ onMouseDown: onMouseDown,
91
+ onMouseUp: onMouseUp
92
92
  }));
93
93
  };
94
94
 
@@ -11,6 +11,6 @@ var _useKey = _interopRequireDefault(require("./useKey"));
11
11
 
12
12
  function useEsc(callback) {
13
13
  (0, _useKey.default)(function (event) {
14
- return event.keyCode === 27 && callback(event);
14
+ return event.key === 'Escape' && callback(event);
15
15
  });
16
16
  }
@@ -154,6 +154,12 @@
154
154
  .vw-konzernlogistik & {
155
155
  background-image: url('@{cdnBase}/svg/common/ico_vw_konzernlogistik.svg') !important;
156
156
  }
157
+
158
+ > a {
159
+ display: block;
160
+ height: 100%;
161
+ width: 100%;
162
+ }
157
163
  }
158
164
  }
159
165
 
package/lib/version.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "0.16.1-beta.13"
2
+ "version": "0.16.1-beta.14"
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rio-cloud/rio-uikit",
3
- "version": "0.16.1-beta.13",
3
+ "version": "0.16.1-beta.14",
4
4
  "description": "The RIO UIKIT component library",
5
5
  "repository": "https://collaboration.msi.audi.com/stash/projects/RIOFRONT/repos/uikit-web/browse",
6
6
  "scripts": {