@tamagui/core 1.111.10 → 1.111.11

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": "@tamagui/core",
3
- "version": "1.111.10",
3
+ "version": "1.111.11",
4
4
  "source": "src/index.tsx",
5
5
  "main": "dist/cjs",
6
6
  "module": "dist/esm",
@@ -19,8 +19,8 @@
19
19
  "scripts": {
20
20
  "build": "tamagui-build",
21
21
  "watch": "tamagui-build --watch",
22
- "lint": "npx biome check src",
23
- "lint:fix": "npx biome check --apply-unsafe src",
22
+ "lint": "biome check src",
23
+ "lint:fix": "biome check --write src",
24
24
  "clean": "tamagui-build clean",
25
25
  "clean:build": "tamagui-build clean:build"
26
26
  },
@@ -35,13 +35,13 @@
35
35
  "native-test.d.ts"
36
36
  ],
37
37
  "dependencies": {
38
- "@tamagui/react-native-use-pressable": "1.111.10",
39
- "@tamagui/react-native-use-responder-events": "1.111.10",
40
- "@tamagui/use-event": "1.111.10",
41
- "@tamagui/web": "1.111.10"
38
+ "@tamagui/react-native-use-pressable": "1.111.11",
39
+ "@tamagui/react-native-use-responder-events": "1.111.11",
40
+ "@tamagui/use-event": "1.111.11",
41
+ "@tamagui/web": "1.111.11"
42
42
  },
43
43
  "devDependencies": {
44
- "@tamagui/build": "1.111.10",
44
+ "@tamagui/build": "1.111.11",
45
45
  "@testing-library/react": "^16.0.0",
46
46
  "csstype": "^3.0.10",
47
47
  "typescript": "^5.5.2",
@@ -96,7 +96,7 @@ export function createOptimizedView(
96
96
 
97
97
  const extras = {
98
98
  accessibilityLiveRegion:
99
- ariaLive === 'off' ? 'none' : ariaLive ?? accessibilityLiveRegion,
99
+ ariaLive === 'off' ? 'none' : (ariaLive ?? accessibilityLiveRegion),
100
100
  accessibilityLabel: ariaLabel ?? accessibilityLabel,
101
101
  focusable: tabIndex !== undefined ? !tabIndex : focusable,
102
102
  accessibilityState: _accessibilityState,