mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* refactor(components): popper composables - Refactor popper composables * updates * updates for tooltip * Updates for popper. TODO: fix controlled tooltip animation * Fix controlled mode popper animation issue * Add new feature for customizing tooltip theme * Fix popover and popconfirm error * - Add Collection component for wrapping a collection of component - Add FocusTrap component for trap focus for popups - Add RovingFocus component for roving focus component type - Adjust dropdown component based on these newly added components - Add popper-trigger component for placing the trigger - TODO: Finish current dropdown component, and all component's tests plus documents * Refactor popper * Complete organizing popper * Almost finish dropdown * Update popper tests * update only-child test * Finish focus trap component test * Finish tooltip content test * Finish tooltip trigger tests * Finish tooltip tests * finish tests for Collection and RovingFocusGroup * Fix test cases for timeselect & select & popover * Fix popover, popconfirm, menu bug and test cases * Fix select-v2 test error caused by updating popper * Fix date-picker test issue for updating popper * fix test cases * Fix eslint * Rebase dev & fix tests * Remove unused code
57 lines
1.4 KiB
TypeScript
57 lines
1.4 KiB
TypeScript
import type { InjectionKey, Ref } from 'vue'
|
|
|
|
interface SelectGroupContext {
|
|
disabled: boolean
|
|
}
|
|
|
|
export interface QueryChangeCtx {
|
|
query: string
|
|
}
|
|
|
|
export interface SelectContext {
|
|
props: {
|
|
multiple?: boolean
|
|
multipleLimit?: number
|
|
valueKey?: string
|
|
modelValue?: string | number | unknown | unknown[]
|
|
popperClass?: string
|
|
remote?: boolean
|
|
fitInputWidth?: boolean
|
|
}
|
|
queryChange: Ref<QueryChangeCtx>
|
|
groupQueryChange: Ref<string>
|
|
selectWrapper: HTMLElement
|
|
cachedOptions: Map<any, any>
|
|
hoverIndex: number
|
|
optionsCount: number
|
|
filteredOptionsCount: number
|
|
options: Map<any, any>
|
|
optionsArray: any[]
|
|
selected: any | any[]
|
|
setSelected(): void
|
|
onOptionCreate(vm: SelectOptionProxy): void
|
|
onOptionDestroy(key: number | string | Record<string, any>): void
|
|
handleOptionSelect(vm: unknown, byClick: boolean): void
|
|
}
|
|
|
|
// For individual build sharing injection key, we had to make `Symbol` to string
|
|
export const selectGroupKey =
|
|
'ElSelectGroup' as unknown as InjectionKey<SelectGroupContext>
|
|
|
|
export const selectKey = 'ElSelect' as unknown as InjectionKey<SelectContext>
|
|
|
|
export interface SelectOptionProxy {
|
|
value: string | number | Record<string, string>
|
|
label: string | number
|
|
created: boolean
|
|
disabled: boolean
|
|
currentLabel: string
|
|
itemSelected: boolean
|
|
isDisabled: boolean
|
|
select: SelectContext
|
|
hoverItem: () => void
|
|
visible: boolean
|
|
hover: boolean
|
|
selectOptionClick: () => void
|
|
}
|