@vaadin/message-list 23.0.0-alpha2 → 23.0.0-alpha3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/message-list",
3
- "version": "23.0.0-alpha2",
3
+ "version": "23.0.0-alpha3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,16 +35,16 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@polymer/polymer": "^3.0.0",
38
- "@vaadin/avatar": "23.0.0-alpha2",
39
- "@vaadin/component-base": "23.0.0-alpha2",
40
- "@vaadin/vaadin-lumo-styles": "23.0.0-alpha2",
41
- "@vaadin/vaadin-material-styles": "23.0.0-alpha2",
42
- "@vaadin/vaadin-themable-mixin": "23.0.0-alpha2"
38
+ "@vaadin/avatar": "23.0.0-alpha3",
39
+ "@vaadin/component-base": "23.0.0-alpha3",
40
+ "@vaadin/vaadin-lumo-styles": "23.0.0-alpha3",
41
+ "@vaadin/vaadin-material-styles": "23.0.0-alpha3",
42
+ "@vaadin/vaadin-themable-mixin": "23.0.0-alpha3"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@esm-bundle/chai": "^4.3.4",
46
46
  "@vaadin/testing-helpers": "^0.3.2",
47
47
  "sinon": "^9.2.4"
48
48
  },
49
- "gitHead": "070f586dead02ca41b66717820c647f48bf1665f"
49
+ "gitHead": "490037919a9e054cc002c1b3be0c94a1603e1a44"
50
50
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { Avatar } from '@vaadin/avatar/src/vaadin-avatar.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { Avatar } from '@vaadin/avatar/src/vaadin-avatar.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import '@polymer/polymer/lib/elements/dom-repeat.js';
@@ -154,10 +154,10 @@ class MessageList extends ElementMixin(ThemableMixin(PolymerElement)) {
154
154
 
155
155
  switch (event.key) {
156
156
  case 'ArrowUp':
157
- currentIndex--;
157
+ currentIndex -= 1;
158
158
  break;
159
159
  case 'ArrowDown':
160
- currentIndex++;
160
+ currentIndex += 1;
161
161
  break;
162
162
  case 'Home':
163
163
  currentIndex = 0;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import './vaadin-message-avatar.js';