File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
packages/ui/src/components Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @ultraviolet/ui " : patch
3+ ---
4+
5+ ` SelectInput ` :
6+ - click outside should work in every context
7+ - fix placeholder alignment when small
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export type PositionsType = {
6262 * This event handle allow us to not bubble the event to document.body like this react-select works fine
6363 */
6464const stopClickPropagation : MouseEventHandler = event => {
65- event . nativeEvent . stopImmediatePropagation ( )
65+ event . stopPropagation ( )
6666}
6767
6868type PopupRole = 'dialog' | 'tooltip' | 'popup' | string
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ export const selectBar = recipe({
7474 size : {
7575 small : {
7676 height : theme . sizing [ INPUT_SIZE_HEIGHT . small ] ,
77+ padding : 0 ,
7778 paddingLeft : theme . space [ 1 ] ,
7879 } ,
7980 medium : {
You can’t perform that action at this time.
0 commit comments