Skip to content

Commit 25da6bc

Browse files
committed
Merge branch 'webapp' into webapp-fix
2 parents 9747b41 + 0400caf commit 25da6bc

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

src/components/avatar-group/AvatarGroup.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ export const AvatarGroup: React.FC<Partial<AvatarGroupProps>> = props => {
7777
showRing
7878
? { borderColor: ringColor, backgroundColor: ringColor }
7979
: {},
80+
{ zIndex: childrenWithinMax.length - index },
8081
]}
8182
key={index}
8283
>

src/components/input/Input.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { forwardRef, ReactNode, useMemo, useRef, useState } from "react";
22
import { Platform, TextInputProps } from "react-native";
33

44
import { Box, BoxProps, RNTextInput, TouchableProps } from "../../primitives";
5-
import { useTailwind, useTheme } from "../../theme";
5+
import { getTextFontFamily, useTailwind, useTheme } from "../../theme";
66
import {
77
cx,
88
generateBoxShadow,
@@ -286,6 +286,7 @@ const RNInput: React.FC<Partial<InputProps>> = forwardRef<
286286
_suffix ? `pr-[${suffixWidth}px]` : "",
287287
),
288288
),
289+
getTextFontFamily(inputTheme.size[size]?.base?.default),
289290
isFocussedWeb.value
290291
? Platform.select({
291292
web: {

src/components/text-area/TextArea.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { forwardRef, useMemo, useRef, useState } from "react";
22
import { Platform, TextInputProps } from "react-native";
33

44
import { Box, BoxProps, RNTextInput, TouchableProps } from "../../primitives";
5-
import { useTailwind, useTheme } from "../../theme";
5+
import { getTextFontFamily, useTailwind, useTheme } from "../../theme";
66
import {
77
cx,
88
generateBoxShadow,
@@ -235,6 +235,7 @@ const RNTextArea: React.FC<Partial<TextAreaProps>> = forwardRef<
235235
_suffix ? `pr-[${suffixWidth}px]` : "",
236236
),
237237
),
238+
getTextFontFamily(textAreaTheme.size[size]?.base?.default),
238239
isFocussedWeb.value
239240
? Platform.select({
240241
web: {

src/theme/defaultTheme/avatar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export const avatar = {
117117
},
118118
},
119119
group: {
120-
base: "flex-row items-center",
120+
base: "relative flex-row items-center",
121121
avatarWrapper: {
122122
ringStyle: "border-2",
123123
circular: "rounded-full",

src/theme/defaultTheme/divider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const divider = {
22
horizontal: {
33
orientaion: "w-full items-center justify-center",
4-
lines: "border border-gray-400 w-full",
4+
lines: "border-[1px] border-gray-400 w-full",
55
label: {
66
start: "z-1 absolute left-4",
77
center: "z-1 absolute",
@@ -10,7 +10,7 @@ export const divider = {
1010
},
1111
vertical: {
1212
orientaion: "h-full items-center justify-center",
13-
lines: "border border-gray-400 h-full",
13+
lines: "border-[1px] border-gray-400 h-full",
1414
label: {
1515
start: "z-1 absolute top-4",
1616
center: "z-1 absolute",

src/theme/defaultTheme/radio.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export const radio = {
9494
},
9595
},
9696
checked: {
97-
default: "bg-gray-900 border-gray-900",
97+
default: "bg-gray-900 border-gray-900 border-0",
9898
hover: "bg-gray-800 border-gray-800 shadow shadow-color-opacity-10",
9999
press: "bg-gray-700 border-gray-700",
100100
disabled: "bg-gray-200 border-gray-200",
@@ -146,7 +146,7 @@ export const radio = {
146146
},
147147
},
148148
checked: {
149-
default: "bg-blue-600 border-blue-600",
149+
default: "bg-blue-600 border-blue-600 border-0",
150150
hover: "bg-blue-700 border-blue-700 shadow shadow-color-opacity-10",
151151
press: "bg-blue-800 border-blue-800",
152152
disabled: "bg-blue-100 border-blue-100",
@@ -198,7 +198,7 @@ export const radio = {
198198
},
199199
},
200200
checked: {
201-
default: "bg-red-600 border-red-600",
201+
default: "bg-red-600 border-red-600 border-0",
202202
hover: "bg-red-700 border-red-700 shadow shadow-color-opacity-10",
203203
press: "bg-red-800 border-red-800",
204204
disabled: "bg-red-100 border-red-100",

0 commit comments

Comments
 (0)