* fix(components): [popper] fix arrow overflow issue
Add popperArrowProp to popperContentProps to ensure usePopper
correctly applies arrow options, preventing the arrow from
overflowing the popper container edges.
* fix(components): [popper] change arrowOffset to ref for reactivity
* feat(components): [tooltip] add arrow-offset property
- Allow users to control the padding of the tooltip arrow
- Prevents the arrow from touching the popper's edge
Reference: https://popper.js.org/docs/v2/modifiers/arrow/#padding
* fix(components): [popper] add reactive watch for arrowOffset prop
* feat(components): [popper] remove unused arrowOffset prop
Removes unused arrowOffset prop and related logic
- Removes arrowOffset from PopperContentInjectionContext
- Removes arrowOffset prop watching and state management
- Cleans up related test cases
* docs(components): [tooltip] update version requirement
update version requirement for arrow-offset prop
* docs(components): [tooltip] update `arrow-offset` version
* Update docs/en-US/component/tooltip.md
Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>
---------
Co-authored-by: sea <45450994+warmthsea@users.noreply.github.com>
Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>
* fix(components): [table] shrinked table expanded when modify data
* fix(components): [table] type check error
* fix(components): [table] update test case
fix(components): [collapse] Avoid direct activeNames changes
* refactor(components): [collapse] Removal of modelValue Modification in watch
* test(components): [collapse] Add new test cases for modelValue
* docs(components): [collapse] Adjust the default value of modelValue/v-model in the documentation
closed#20436
* Update tree-store.ts
fix: the bug #20259
Ensure the sequence for the traverse step.
* fix(components): [tree] filter update scheduling error
fix(components): [tree] fix bug #20259
Ensure the sequence for the traverse step. If call the traverse without await, the code below will run before the children had been processed, making the parent node invisible.
* fix(components): [table-v2] 修复如果高度存在小数可能导致计算精度丢失导致无法触发触底事件EndReached问题
* fix(components): [table-v2] 修复如果高度存在小数可能导致计算精度丢失无法触发触底事件EndReached问题
* Update packages/components/table-v2/src/use-table.ts
Co-authored-by: btea <2356281422@qq.com>
* fix(components): [table-v2] format code for better readability in use-table.ts
* fix(components): [table-v2] format code for better readability in use-table.ts
* fix(components): [table-v2] loss of precision causes endReached to fail to trigger
* fix(components): [table-v2] loss of precision causes endReached to fail to trigger
---------
Co-authored-by: ZhangYang <yang.zhang@linkkids.cn>
Co-authored-by: btea <2356281422@qq.com>
Co-authored-by: Noblet Ouways <91417411+Dsaquel@users.noreply.github.com>
* test(components): [message] add one test case for #20333
* fix: error caused by other test cases
After running the test case "it should render vnode function", there is a message in the body
* fix(components): [table] child selection loss during data modification
* refactor: replace logical AND (&&) with explicit if statement
* test: use unique id
* feat(components): [select-v2] add suffixIcon prop with default ArrowDown
- Introduced a new `suffixIcon` prop to allow customization of the icon in the select component.
- Updated the icon rendering logic to utilize the `suffixIcon` prop instead of a hardcoded value.
* feat(docs): [select-v2] add suffix-icon prop for custom icon support
- Added a new `suffix-icon` prop to the select component, allowing users to customize the suffix icon.
- Updated documentation to reflect the new prop and its default value.
* chore: add version
---------
Co-authored-by: warmthsea <2586244885@qq.com>