Add Style `borderBlockColor` `borderBlockEndColor` `borderBlockStar… · rescript-react-native/rescript-react-native@a12bade
@@ -205,6 +205,9 @@ type style = {
205205// View styles https://reactnative.dev/docs/view-style-props
206206backfaceVisibility?: backfaceVisibility,
207207backgroundColor?: Color.t,
208+borderBlockColor?: Color.t,
209+borderBlockEndColor?: Color.t,
210+borderBlockStartColor?: Color.t,
208211borderBottomColor?: Color.t,
209212borderBottomEndRadius?: float,
210213borderBottomLeftRadius?: float,
@@ -340,6 +343,9 @@ external style: (
340343// View styles https://reactnative.dev/docs/view-style-props
341344 ~backfaceVisibility: backfaceVisibility=?,
342345 ~backgroundColor: Color.t=?,
346+ ~borderBlockColor: Color.t=?,
347+ ~borderBlockEndColor: Color.t=?,
348+ ~borderBlockStartColor: Color.t=?,
343349 ~borderBottomColor: Color.t=?,
344350 ~borderBottomEndRadius: float=?,
345351 ~borderBottomLeftRadius: float=?,
@@ -441,6 +447,9 @@ external viewStyle: (
441447// View styles https://reactnative.dev/docs/view-style-props
442448 ~backfaceVisibility: backfaceVisibility=?,
443449 ~backgroundColor: Color.t=?,
450+ ~borderBlockColor: Color.t=?,
451+ ~borderBlockEndColor: Color.t=?,
452+ ~borderBlockStartColor: Color.t=?,
444453 ~borderBottomColor: Color.t=?,
445454 ~borderBottomEndRadius: float=?,
446455 ~borderBottomLeftRadius: float=?,
@@ -563,6 +572,9 @@ external textStyle: (
563572// View styles https://reactnative.dev/docs/view-style-props
564573 ~backfaceVisibility: backfaceVisibility=?,
565574 ~backgroundColor: Color.t=?,
575+ ~borderBlockColor: Color.t=?,
576+ ~borderBlockEndColor: Color.t=?,
577+ ~borderBlockStartColor: Color.t=?,
566578 ~borderBottomColor: Color.t=?,
567579 ~borderBottomEndRadius: float=?,
568580 ~borderBottomLeftRadius: float=?,
@@ -669,6 +681,9 @@ external imageStyle: (
669681// View styles https://reactnative.dev/docs/view-style-props
670682 ~backfaceVisibility: backfaceVisibility=?,
671683 ~backgroundColor: Color.t=?,
684+ ~borderBlockColor: Color.t=?,
685+ ~borderBlockEndColor: Color.t=?,
686+ ~borderBlockStartColor: Color.t=?,
672687 ~borderBottomColor: Color.t=?,
673688 ~borderBottomEndRadius: float=?,
674689 ~borderBottomLeftRadius: float=?,