mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
Refactor #5681
This commit is contained in:
parent
3cc675e50f
commit
e1367fd494
89 changed files with 376 additions and 339 deletions
4
components/lib/select/Select.d.ts
vendored
4
components/lib/select/Select.d.ts
vendored
|
@ -115,9 +115,9 @@ export interface SelectPassThroughOptions<T = any> {
|
|||
*/
|
||||
filterContainer?: SelectPassThroughOptionType<T>;
|
||||
/**
|
||||
* Used to pass attributes to the filter's DOM element.
|
||||
* Used to pass attributes to the InputText component.
|
||||
*/
|
||||
filter?: SelectPassThroughOptionType<T>;
|
||||
pcFilter?: SelectPassThroughOptionType<T>;
|
||||
/**
|
||||
* Used to pass attributes to the filter icon's DOM element.
|
||||
*/
|
||||
|
|
|
@ -83,7 +83,7 @@
|
|||
:value="filterValue"
|
||||
@vue:mounted="onFilterUpdated"
|
||||
@vue:updated="onFilterUpdated"
|
||||
:class="cx('filter')"
|
||||
:class="cx('pcFilter')"
|
||||
:placeholder="filterPlaceholder"
|
||||
:invalid="invalid"
|
||||
:variant="variant"
|
||||
|
@ -95,7 +95,7 @@
|
|||
@keydown="onFilterKeyDown"
|
||||
@blur="onFilterBlur"
|
||||
@input="onFilterChange"
|
||||
:pt="ptm('filter')"
|
||||
:pt="ptm('pcFilter')"
|
||||
/>
|
||||
<slot name="filtericon" :class="cx('filterIcon')">
|
||||
<component :is="filterIcon ? 'span' : 'SearchIcon'" :class="[cx('filterIcon'), filterIcon]" v-bind="ptm('filterIcon')" />
|
||||
|
|
|
@ -246,7 +246,7 @@ const classes = {
|
|||
],
|
||||
header: 'p-select-header',
|
||||
filterContainer: 'p-select-filter-container',
|
||||
filter: 'p-select-filter',
|
||||
pcFilter: 'p-select-filter',
|
||||
filterIcon: 'p-select-filter-icon',
|
||||
listContainer: 'p-select-list-container',
|
||||
list: 'p-select-list',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue