tamagui 1.82.8 → 1.82.9
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/dist/native.js +1 -1
- package/dist/native.js.map +1 -1
- package/dist/test.native.js +1 -1
- package/dist/test.native.js.map +1 -1
- package/package.json +52 -52
package/dist/native.js
CHANGED
|
@@ -12245,7 +12245,7 @@ var require_Button_native = __commonJS({
|
|
|
12245
12245
|
tag: tag ?? (isNested ? "span" : (
|
|
12246
12246
|
// defaults to <a /> when accessibilityRole = link
|
|
12247
12247
|
// see https://github.com/tamagui/tamagui/issues/505
|
|
12248
|
-
propsActive.accessibilityRole === "link" ? "a" : "button"
|
|
12248
|
+
propsActive.accessibilityRole === "link" || propsActive.role === "link" ? "a" : "button"
|
|
12249
12249
|
)),
|
|
12250
12250
|
...restProps,
|
|
12251
12251
|
children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_stacks3.ButtonNestingContext.Provider, { value: !0, children: inner }),
|