@expo/html-elements
Advanced tools
Comparing version 0.10.2-canary-20241008-90b13ad to 0.10.2-canary-20241018-2a482e3
import { ClassAttributes, ComponentProps, ComponentType } from 'react'; | ||
import { StyleProp, View as NativeView, ViewStyle as NativeViewStyle } from 'react-native'; | ||
import { StyleProp, View as NativeView, ViewStyle as NativeViewStyle, BoxShadowValue, FilterFunction } from 'react-native'; | ||
type NativeViewProps = ComponentProps<typeof NativeView> & ClassAttributes<typeof NativeView>; | ||
@@ -43,3 +43,3 @@ /** | ||
/** @platform web */ | ||
boxShadow?: string; | ||
boxShadow?: string | readonly BoxShadowValue[]; | ||
/** @platform web */ | ||
@@ -52,3 +52,3 @@ boxSizing?: string; | ||
/** @platform web */ | ||
filter?: string; | ||
filter?: string | readonly FilterFunction[]; | ||
/** @platform web */ | ||
@@ -55,0 +55,0 @@ gridAutoColumns?: string; |
@@ -1,2 +0,2 @@ | ||
import { View as NativeView } from 'react-native'; | ||
import { View as NativeView, } from 'react-native'; | ||
import { createDevView } from './createDevView'; | ||
@@ -3,0 +3,0 @@ import { createSafeStyledView } from '../css/createSafeStyledView'; |
@@ -13,2 +13,6 @@ # Changelog | ||
### ⚠️ Notices | ||
- Added support for React Native 0.76.x. ([#31552](https://github.com/expo/expo/pull/31552) by [@gabrieldonadel](https://github.com/gabrieldonadel)) | ||
## 0.10.1 — 2024-04-23 | ||
@@ -15,0 +19,0 @@ |
{ | ||
"name": "@expo/html-elements", | ||
"version": "0.10.2-canary-20241008-90b13ad", | ||
"version": "0.10.2-canary-20241018-2a482e3", | ||
"description": "Universal semantic HTML React components for iOS, Android, web, and desktop", | ||
@@ -60,5 +60,5 @@ "main": "build/Elements.js", | ||
"devDependencies": { | ||
"expo-module-scripts": "3.6.0-canary-20241008-90b13ad" | ||
"expo-module-scripts": "3.6.0-canary-20241018-2a482e3" | ||
}, | ||
"gitHead": "90b13ad9d0dd3469556ac776d8b74643375b1d97" | ||
"gitHead": "2a482e33d2f94629f6022410c61c3ceeb8e7f26e" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
187703