@vaadin/radio-group 23.0.4 → 23.1.0-alpha1

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/radio-group",
3
- "version": "23.0.4",
3
+ "version": "23.1.0-alpha1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -36,16 +36,16 @@
36
36
  ],
37
37
  "dependencies": {
38
38
  "@polymer/polymer": "^3.0.0",
39
- "@vaadin/component-base": "^23.0.4",
40
- "@vaadin/field-base": "^23.0.4",
41
- "@vaadin/vaadin-lumo-styles": "^23.0.4",
42
- "@vaadin/vaadin-material-styles": "^23.0.4",
43
- "@vaadin/vaadin-themable-mixin": "^23.0.4"
39
+ "@vaadin/component-base": "23.1.0-alpha1",
40
+ "@vaadin/field-base": "23.1.0-alpha1",
41
+ "@vaadin/vaadin-lumo-styles": "23.1.0-alpha1",
42
+ "@vaadin/vaadin-material-styles": "23.1.0-alpha1",
43
+ "@vaadin/vaadin-themable-mixin": "23.1.0-alpha1"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@esm-bundle/chai": "^4.3.4",
47
47
  "@vaadin/testing-helpers": "^0.3.2",
48
48
  "sinon": "^9.2.1"
49
49
  },
50
- "gitHead": "d8db2046661c42fb5aac09ed683b500bf4613b26"
50
+ "gitHead": "5d0cdee069f866037c507265fafb4d0476795333"
51
51
  }
@@ -220,7 +220,7 @@ class RadioGroup extends FieldMixin(
220
220
  * @private
221
221
  */
222
222
  get isHorizontalRTL() {
223
- return this.getAttribute('dir') === 'rtl' && this.theme !== 'vertical';
223
+ return this.getAttribute('dir') === 'rtl' && this._theme !== 'vertical';
224
224
  }
225
225
 
226
226
  /**