@startupjs-ui/mdx 0.2.0-alpha.1 → 0.2.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,25 @@
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](https://github.com/startupjs/startupjs-ui/compare/v0.1.23...v0.2.0) (2026-05-04)
7
+
8
+
9
+ ### Features
10
+
11
+ * [v0.2] add accessibility features to most components, which also dramatically improves E2E testability ([#22](https://github.com/startupjs/startupjs-ui/issues/22)) ([b563e2f](https://github.com/startupjs/startupjs-ui/commit/b563e2fa498a8a83bd5abc7836d120f6d2381e3f))
12
+
13
+
14
+
15
+
16
+
17
+ # [0.2.0-alpha.2](https://github.com/startupjs/startupjs-ui/compare/v0.2.0-alpha.1...v0.2.0-alpha.2) (2026-04-20)
18
+
19
+ **Note:** Version bump only for package @startupjs-ui/mdx
20
+
21
+
22
+
23
+
24
+
6
25
  # [0.2.0-alpha.1](https://github.com/startupjs/startupjs-ui/compare/v0.2.0-alpha.0...v0.2.0-alpha.1) (2026-04-10)
7
26
 
8
27
  **Note:** Version bump only for package @startupjs-ui/mdx
@@ -301,7 +301,7 @@ export default {
301
301
  Div.code-actions(align='right' row)
302
302
  Div.code-action(
303
303
  tooltip=open ? 'Hide code' : 'Show code'
304
- onPress=()=> setOpen(!open)
304
+ onPress=() => setOpen(!open)
305
305
  )
306
306
  Icon.code-action-collapse(icon=faCode color='error')
307
307
  Div.code-action(
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@startupjs-ui/mdx",
3
3
  "description": "MDX provider with a set of custom components for react-native support and syntax highlighting",
4
- "version": "0.2.0-alpha.1",
4
+ "version": "0.2.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -12,16 +12,16 @@
12
12
  "dependencies": {
13
13
  "@fortawesome/free-solid-svg-icons": "^7.1.0",
14
14
  "@mdx-js/react": "^3.0.0",
15
- "@startupjs-ui/alert": "^0.2.0-alpha.1",
16
- "@startupjs-ui/br": "^0.2.0-alpha.1",
17
- "@startupjs-ui/collapse": "^0.2.0-alpha.1",
18
- "@startupjs-ui/div": "^0.2.0-alpha.1",
19
- "@startupjs-ui/divider": "^0.2.0-alpha.1",
20
- "@startupjs-ui/icon": "^0.2.0-alpha.1",
21
- "@startupjs-ui/link": "^0.2.0-alpha.1",
22
- "@startupjs-ui/scroll-view": "^0.2.0-alpha.1",
23
- "@startupjs-ui/span": "^0.2.0-alpha.1",
24
- "@startupjs-ui/table": "^0.2.0-alpha.1",
15
+ "@startupjs-ui/alert": "^0.2.0",
16
+ "@startupjs-ui/br": "^0.2.0",
17
+ "@startupjs-ui/collapse": "^0.2.0",
18
+ "@startupjs-ui/div": "^0.2.0",
19
+ "@startupjs-ui/divider": "^0.2.0",
20
+ "@startupjs-ui/icon": "^0.2.0",
21
+ "@startupjs-ui/link": "^0.2.0",
22
+ "@startupjs-ui/scroll-view": "^0.2.0",
23
+ "@startupjs-ui/span": "^0.2.0",
24
+ "@startupjs-ui/table": "^0.2.0",
25
25
  "refractor": "^3.0.0"
26
26
  },
27
27
  "peerDependencies": {
@@ -30,5 +30,5 @@
30
30
  "react-native": "*",
31
31
  "startupjs": "*"
32
32
  },
33
- "gitHead": "b48004779559b16c96a2a1995dab13b998eafce9"
33
+ "gitHead": "0c586b841cba1c9d820542f6eca07470f5ea2659"
34
34
  }