@vaadin/multi-select-combo-box 24.0.0-alpha3 → 24.0.0-alpha5

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/multi-select-combo-box",
3
- "version": "24.0.0-alpha3",
3
+ "version": "24.0.0-alpha5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -37,14 +37,14 @@
37
37
  ],
38
38
  "dependencies": {
39
39
  "@polymer/polymer": "^3.0.0",
40
- "@vaadin/combo-box": "24.0.0-alpha3",
41
- "@vaadin/component-base": "24.0.0-alpha3",
42
- "@vaadin/field-base": "24.0.0-alpha3",
43
- "@vaadin/input-container": "24.0.0-alpha3",
44
- "@vaadin/lit-renderer": "24.0.0-alpha3",
45
- "@vaadin/vaadin-lumo-styles": "24.0.0-alpha3",
46
- "@vaadin/vaadin-material-styles": "24.0.0-alpha3",
47
- "@vaadin/vaadin-themable-mixin": "24.0.0-alpha3"
40
+ "@vaadin/combo-box": "24.0.0-alpha5",
41
+ "@vaadin/component-base": "24.0.0-alpha5",
42
+ "@vaadin/field-base": "24.0.0-alpha5",
43
+ "@vaadin/input-container": "24.0.0-alpha5",
44
+ "@vaadin/lit-renderer": "24.0.0-alpha5",
45
+ "@vaadin/vaadin-lumo-styles": "24.0.0-alpha5",
46
+ "@vaadin/vaadin-material-styles": "24.0.0-alpha5",
47
+ "@vaadin/vaadin-themable-mixin": "24.0.0-alpha5"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@esm-bundle/chai": "^4.3.4",
@@ -56,5 +56,5 @@
56
56
  "web-types.json",
57
57
  "web-types.lit.json"
58
58
  ],
59
- "gitHead": "7a013a3c5a56abd61dd4f7773c6ec77c3541bdf2"
59
+ "gitHead": "fc0b1721eda9e39cb289b239e440fc9e29573a31"
60
60
  }
@@ -979,7 +979,7 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
979
979
  }
980
980
  let newIdx;
981
981
 
982
- if (this.getAttribute('dir') !== 'rtl') {
982
+ if (!this.__isRTL) {
983
983
  if (idx === -1) {
984
984
  // Focus last chip
985
985
  newIdx = chips.length - 1;
@@ -1012,7 +1012,7 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
1012
1012
  }
1013
1013
  let newIdx;
1014
1014
 
1015
- if (this.getAttribute('dir') === 'rtl') {
1015
+ if (this.__isRTL) {
1016
1016
  if (idx === -1) {
1017
1017
  // Focus last chip
1018
1018
  newIdx = chips.length - 1;
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/multi-select-combo-box",
4
- "version": "24.0.0-alpha3",
4
+ "version": "24.0.0-alpha5",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/multi-select-combo-box",
4
- "version": "24.0.0-alpha3",
4
+ "version": "24.0.0-alpha5",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {