@bytebrand/fe-ui-core 4.1.101 → 4.1.102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -82,9 +82,9 @@ class SearchTopBar extends React.Component<ISearchTopBarProps, {}> {
|
|
|
82
82
|
placeholder={t('sortingPlaceholder')}
|
|
83
83
|
items={translatedSortingOptions}
|
|
84
84
|
onChange={onSortChange}
|
|
85
|
-
name='mobileSearch'
|
|
85
|
+
name={isMobileOnly ? 'mobileSearch' : ''}
|
|
86
86
|
disableClearable={true}
|
|
87
|
-
/>;
|
|
87
|
+
label={''} />;
|
|
88
88
|
};
|
|
89
89
|
|
|
90
90
|
render(): JSX.Element {
|
|
@@ -11,7 +11,8 @@ export const Theme = createTheme({
|
|
|
11
11
|
top: 'calc(50% - 12px)'
|
|
12
12
|
},
|
|
13
13
|
popupIndicator: {
|
|
14
|
-
padding:
|
|
14
|
+
padding: '6px 3px 4px',
|
|
15
|
+
marginTop: '3px'
|
|
15
16
|
},
|
|
16
17
|
root: ({ ownerState }) => ({
|
|
17
18
|
['&.Mui-focused + [data-popper-placement*=`bottom`] .MuiOutlinedInput-root']: {
|
|
@@ -187,7 +188,9 @@ export const Theme = createTheme({
|
|
|
187
188
|
});
|
|
188
189
|
|
|
189
190
|
export const ArrowSelect = styled(IconSVG)({
|
|
190
|
-
fontSize: 14
|
|
191
|
+
fontSize: 14,
|
|
192
|
+
width: 14,
|
|
193
|
+
height: 10
|
|
191
194
|
});
|
|
192
195
|
|
|
193
196
|
export const FlexWrap = styled('div')({
|