* feat(components): [select] add collapseTagsTooltipAppendTo & test
Add collapseTagsTooltipAppendTo prop to control where the collapse-tags tooltip is appended. Wire it
to the tag tooltip with fallback to appendTo. Add unit test to verify prop is passed correctly.
* docs(docs): add collapseTagsTooltipAppendTo doc
* refactor(components): [select]rename collapseTagsTooltipAppendTo prop
Rename collapseTagsTooltipAppendTo to tooltipAppendTo
Simplify the prop name by removing redundant context
Behavior remains unchanged
* docs(components): [select] add version tag for tooltipAppendTo prop
* Update packages/components/select/__tests__/select.test.ts
Co-authored-by: rzzf <cszhjh@gmail.com>
* feat(components): [select] add tagTooltip config object
Add TagTooltip to support appendTo, placement, fallbackPlacements, effect, popperClass, popperStyle,
teleported, popperOptions, showAfter, and offsetWire all tagTooltip properties to the collapse-tags
tooltip with fallback to existing select propsProvides more granular control over tooltip behavior
while maintaining backward compatibility
* docs(components): [select] add tag-tooltip config object doc
* docs(components): [select] add default value for fallback-placements
* docs(components): [select] update tag-tooltip default value to {}
* docs(components): [select]remove string type from TagTooltipProps effect
* docs(components): [select] add fallback mechanism tip for tag-tooltip
* feat(components): [select] extend TagTooltipProps
Add transition, hideAfter, and autoClose properties to TagTooltipProps
Update popperStyle type to accept both string and CSSProperties
* docs(components): [select] enhance tag-tooltip documentation
Add transition, hide-after, and auto-close properties to TagTooltip API table
Clarify fallback mechanism with priority order explanation
Add custom container positioning tip for append-to usage
* docs(components): [select] refine tag-tooltip priority description
Co-authored-by: keeplearning66 <1256734885@qq.com>
* docs(components): [select] refine effect prop type in tag-tooltip
Co-authored-by: keeplearning66 <1256734885@qq.com>
* chore: format
* docs: apply rabbit comment
* feat(components): [select-v2] add TagTooltipProps interface
Add TagTooltipProps interface with popper configuration options
* feat(components): [select-v2] implement tagTooltip prop
* test(components): [select-v2] add tag-tooltip prop test case
Add test case to verify tagTooltip prop functionality with appendTo option
* docs(components): [select-v2] add tag-tooltip API documentation
Add tag-tooltip configuration object to Select V2 API table
Add comprehensive tag-tooltip properties section with fallback mechanism explanation and custom
container positioning tip
* docs(components): [select-v2] add version tag to tag-tooltip prop
* fix(components): [select-v2] Optional chain tagTooltip access
* fix(components): [select] optional chain tagTooltip access
* feat(components): [select-v2] Fix tooltip teleport timing
* docs(components): [select-v] add version tag for tag-tooltip
Co-authored-by: Noblet Ouways <91417411+Dsaquel@users.noreply.github.com>
* docs(components): [select] add version tag for tag-tooltip
Co-authored-by: Noblet Ouways <91417411+Dsaquel@users.noreply.github.com>
---------
Co-authored-by: rzzf <cszhjh@gmail.com>
Co-authored-by: keeplearning66 <1256734885@qq.com>
Co-authored-by: Noblet Ouways <91417411+Dsaquel@users.noreply.github.com>
* feat(components): [select] add aria-label to select's input
Select's input causes accessibility issues without aria-label, this commit adds it
* refactor(components): [select] change aria-label to label; update docs
* refactor(components): [select] change back to ariaLabel prop name
* docs(components): kebab-case for docs
1. docs(components): [cascader] add version tag for togglePopperVisible expose
2. docs(components): [color-picker] add version tag for show & hide expose
3. docs(components): [date-picker] add version tag for handleOpen & handleClose method
4. docs(components): [dialog] add version tag for align-center atrr
5. docs(components): [dropdown] add version tag for teleported attr
6. docs(components): [form] add version tag for scroll-into-view-options attr
7. docs(components): [image] add version tag for zoom-rate attr
8. docs(components): [input-number] add version tag for readonly attr
9. docs(components): [menu] add version tag for popper-effect attr
10. docs(components): [message-box] add version tag for append-to attr & message function
11. docs(components): [rate] add version tag for clearable attr
12. docs(components): [select-v2] add max-collapse-tags attr
13. docs(components): [select] add version tag for collapse-tags-tooltip & placement
14. docs(components): [table] fix show-overflow-toolip attr version tag
15. docs(components): [time-picker] add version tag for handleOption & handleClose expose
16. docs(components): [tree-v2] add version tag for item-size attr
17. docs(components): [tree] add version tag for empty slot
* docs(components): [select] use new display tag
* docs(components): [select] description and comment begins in lower case
* docs(components): [select] update type of prop and event
* docs(components): [select] create example using 'value-key' attribute
Example using option type with same value of 'label' property
- Use 'id' property of option as value of 'value-key' attribute
* docs(docs): apply 'value-key' example to 'select.md'
Remove the existing 'tip' and add it to the description
---------
Co-authored-by: FE_강명구 <mg_@ex-em.com>