@vaadin/radio-group 24.3.0-alpha9 → 24.3.0-beta2

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": "24.3.0-alpha9",
3
+ "version": "24.3.0-beta2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -43,12 +43,12 @@
43
43
  "dependencies": {
44
44
  "@open-wc/dedupe-mixin": "^1.3.0",
45
45
  "@polymer/polymer": "^3.0.0",
46
- "@vaadin/a11y-base": "24.3.0-alpha9",
47
- "@vaadin/component-base": "24.3.0-alpha9",
48
- "@vaadin/field-base": "24.3.0-alpha9",
49
- "@vaadin/vaadin-lumo-styles": "24.3.0-alpha9",
50
- "@vaadin/vaadin-material-styles": "24.3.0-alpha9",
51
- "@vaadin/vaadin-themable-mixin": "24.3.0-alpha9"
46
+ "@vaadin/a11y-base": "24.3.0-beta2",
47
+ "@vaadin/component-base": "24.3.0-beta2",
48
+ "@vaadin/field-base": "24.3.0-beta2",
49
+ "@vaadin/vaadin-lumo-styles": "24.3.0-beta2",
50
+ "@vaadin/vaadin-material-styles": "24.3.0-beta2",
51
+ "@vaadin/vaadin-themable-mixin": "24.3.0-beta2"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@esm-bundle/chai": "^4.3.4",
@@ -59,5 +59,5 @@
59
59
  "web-types.json",
60
60
  "web-types.lit.json"
61
61
  ],
62
- "gitHead": "ea39f40613cb73b237d08d4c48b890ee7d1844cb"
62
+ "gitHead": "0bbfb24cb8dcd6e1dca8ecf2269635efac53e4d0"
63
63
  }
@@ -32,6 +32,18 @@ export const RadioButtonMixin = (superclass) =>
32
32
  type: String,
33
33
  value: '',
34
34
  },
35
+
36
+ /**
37
+ * Indicates whether the element can be focused and where it participates in sequential keyboard navigation.
38
+ *
39
+ * @override
40
+ * @protected
41
+ */
42
+ tabindex: {
43
+ type: Number,
44
+ value: 0,
45
+ reflectToAttribute: true,
46
+ },
35
47
  };
36
48
  }
37
49
 
@@ -30,6 +30,11 @@ const radioGroup = css`
30
30
  flex-direction: column;
31
31
  }
32
32
 
33
+ :host([disabled]) [part='label'] {
34
+ color: var(--lumo-disabled-text-color);
35
+ -webkit-text-fill-color: var(--lumo-disabled-text-color);
36
+ }
37
+
33
38
  :host([focused]:not([readonly])) [part='label'] {
34
39
  color: var(--lumo-primary-text-color);
35
40
  }
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/radio-group",
4
- "version": "24.3.0-alpha9",
4
+ "version": "24.3.0-beta2",
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/radio-group",
4
- "version": "24.3.0-alpha9",
4
+ "version": "24.3.0-beta2",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {