Skip to content

Commit a5dd0fd

Browse files
authored
Merge pull request #4963 from GeekyAnts/release/3.4.3
Release/3.4.3
2 parents b4afa19 + 5c35665 commit a5dd0fd

File tree

4 files changed

+19
-13
lines changed

4 files changed

+19
-13
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"prettier --write"
3737
]
3838
},
39-
"version": "3.4.2",
39+
"version": "3.4.3",
4040
"license": "MIT",
4141
"private": false,
4242
"main": "lib/commonjs/index",

src/theme/components/input.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,6 @@ function filledStyle(props: Record<string, any>) {
173173
function unstyledStyle() {
174174
return {
175175
borderWidth: '0',
176-
_light: {
177-
_focus: { placeholderTextColor: 'text.900' },
178-
},
179-
_dark: {
180-
_focus: { placeholderTextColor: 'text.50' },
181-
},
182176
_focus: {
183177
bg: 'transparent',
184178
},

src/theme/components/menu.ts

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,26 @@ export const MenuItem = {
7070
color: 'text.400',
7171
},
7272
},
73-
_focus: {
73+
_hover: {
7474
bg: 'muted.200',
7575
},
76-
_pressed: {
76+
_focus: {
7777
bg: 'muted.300',
7878
},
79+
_pressed: {
80+
bg: 'muted.400',
81+
},
7982

8083
_icon: {
8184
color: 'muted.500',
8285
},
86+
_focusVisible: {
87+
_web: {
88+
outlineWidth: '0',
89+
style: { boxShadow: `none` },
90+
bg: 'muted.300',
91+
},
92+
},
8393
},
8494
_dark: {
8595
_text: {
@@ -90,12 +100,15 @@ export const MenuItem = {
90100
color: 'text.600',
91101
},
92102
},
93-
_focus: {
103+
_hover: {
94104
bg: 'muted.700',
95105
},
96-
_pressed: {
106+
_focus: {
97107
bg: 'muted.600',
98108
},
109+
_pressed: {
110+
bg: 'muted.500',
111+
},
99112

100113
_icon: {
101114
color: 'muted.400',
@@ -105,7 +118,7 @@ export const MenuItem = {
105118
_web: {
106119
outlineWidth: '0',
107120
style: { boxShadow: `none` },
108-
bg: 'muted.300',
121+
bg: 'muted.600',
109122
},
110123
},
111124
_checked: {

src/theme/components/popover.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ export const PopoverContent = {
8282

8383
export const PopoverHeader = {
8484
baseStyle: () => ({
85-
shadow: '6',
8685
_web: {
8786
accessibilityRole: 'header',
8887
},

0 commit comments

Comments
 (0)