Refactor #3965 - Refactor on Dropdown

pull/4077/head
Tuğçe Küçükoğlu 2023-06-22 16:06:28 +03:00
parent 22e6c7a53e
commit ff403897d2
2 changed files with 2 additions and 6 deletions

View File

@ -6,6 +6,7 @@ const styles = `
.p-dropdown {
display: inline-flex;
cursor: pointer;
position: relative;
user-select: none;
}
@ -96,10 +97,6 @@ input.p-dropdown-label {
}
`;
const inlineStyles = {
root: ({ props }) => ({ position: props.appendTo === 'self' ? 'relative' : undefined })
};
const classes = {
root: ({ props, state }) => [
'p-dropdown p-component p-inputwrapper',
@ -309,7 +306,6 @@ export default {
}
},
css: {
inlineStyles,
classes,
loadStyle
},

View File

@ -1,5 +1,5 @@
<template>
<div ref="container" :id="id" :class="cx('root')" :style="sx('root')" @click="onContainerClick" v-bind="ptm('root')" data-pc-name="dropdown">
<div ref="container" :id="id" :class="cx('root')" @click="onContainerClick" v-bind="ptm('root')" data-pc-name="dropdown">
<input
v-if="editable"
ref="focusInput"