From 879fb299560725c2f161e37ae54fefc1d9dfd6fe Mon Sep 17 00:00:00 2001 From: Christoph Knittel Date: Tue, 7 Mar 2023 12:56:51 +0100 Subject: [PATCH] Add gap, columnGap, rowGap to style --- src/apis/Style.res | 3 +++ src/apis/Style.resi | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/apis/Style.res b/src/apis/Style.res index fe48b443..2993e7b0 100644 --- a/src/apis/Style.res +++ b/src/apis/Style.res @@ -253,6 +253,7 @@ type style = { // borderTopWidth?: float, // borderWidth?: float, bottom?: size, + columnGap?: float, direction?: direction, display?: display, end?: size, @@ -262,6 +263,7 @@ type style = { flexGrow?: float, flexShrink?: float, flexWrap?: flexWrap, + gap?: float, height?: size, justifyContent?: justifyContent, left?: size, @@ -290,6 +292,7 @@ type style = { paddingVertical?: size, position?: position, right?: size, + rowGap?: float, start?: size, top?: size, width?: size, diff --git a/src/apis/Style.resi b/src/apis/Style.resi index a4e862df..bbef553d 100644 --- a/src/apis/Style.resi +++ b/src/apis/Style.resi @@ -248,6 +248,7 @@ type style = { // borderTopWidth?: float, // borderWidth?: float, bottom?: size, + columnGap?: float, direction?: direction, display?: display, end?: size, @@ -257,6 +258,7 @@ type style = { flexGrow?: float, flexShrink?: float, flexWrap?: flexWrap, + gap?: float, height?: size, justifyContent?: justifyContent, left?: size, @@ -285,6 +287,7 @@ type style = { paddingVertical?: size, position?: position, right?: size, + rowGap?: float, start?: size, top?: size, width?: size,