@startupjs-ui/radio 0.1.19 → 0.2.0-alpha.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.2.0-alpha.0](https://github.com/startupjs/startupjs-ui/compare/v0.1.22...v0.2.0-alpha.0) (2026-03-27)
7
+
8
+
9
+ ### Features
10
+
11
+ * fix and improve accessibility of various components. Add storybook with tests. ([#21](https://github.com/startupjs/startupjs-ui/issues/21)) ([83b6576](https://github.com/startupjs/startupjs-ui/commit/83b65767ed61b24209f71b143ba1c2986170ab58))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.1.22](https://github.com/startupjs/startupjs-ui/compare/v0.1.21...v0.1.22) (2026-03-25)
18
+
19
+ **Note:** Version bump only for package @startupjs-ui/radio
20
+
21
+
22
+
23
+
24
+
25
+ ## [0.1.21](https://github.com/startupjs/startupjs-ui/compare/v0.1.20...v0.1.21) (2026-03-25)
26
+
27
+ **Note:** Version bump only for package @startupjs-ui/radio
28
+
29
+
30
+
31
+
32
+
6
33
  ## [0.1.19](https://github.com/startupjs/startupjs-ui/compare/v0.1.18...v0.1.19) (2026-03-17)
7
34
 
8
35
  **Note:** Version bump only for package @startupjs-ui/radio
package/input.tsx CHANGED
@@ -80,7 +80,9 @@ const RadioInput = function ({
80
80
  vAlign='center'
81
81
  disabled=disabled || readonly
82
82
  onPress=() => onChange && onChange(parseValue(value))
83
- accessibilityRole='radio'
83
+ role='radio'
84
+ aria-checked=!!checked
85
+ aria-disabled=disabled || readonly
84
86
  row
85
87
  )
86
88
  Div.radio(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startupjs-ui/radio",
3
- "version": "0.1.19",
3
+ "version": "0.2.0-alpha.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -8,14 +8,14 @@
8
8
  "types": "index.d.ts",
9
9
  "type": "module",
10
10
  "dependencies": {
11
- "@startupjs-ui/core": "^0.1.19",
12
- "@startupjs-ui/div": "^0.1.19",
13
- "@startupjs-ui/span": "^0.1.19"
11
+ "@startupjs-ui/core": "^0.2.0-alpha.0",
12
+ "@startupjs-ui/div": "^0.2.0-alpha.0",
13
+ "@startupjs-ui/span": "^0.2.0-alpha.0"
14
14
  },
15
15
  "peerDependencies": {
16
16
  "react": "*",
17
17
  "react-native": "*",
18
18
  "startupjs": "*"
19
19
  },
20
- "gitHead": "bfcca786dc363f42a09b6eef4feb7ca8139302fc"
20
+ "gitHead": "a428246a18d0e7f77809043c8240253240d11d66"
21
21
  }