1928 Commits

Author SHA1 Message Date
锌小子
605499699e fix(components): [date-picker] support dynamic setting of format (#17161)
* fix(components): [date-picker]

change format will not update component

closed #17149

* test(components): [date-picker]

Add a test case for supproting dynamic format

* test(components): [date-picker]

correct test case

---------

Co-authored-by: 张东 <A80784@internet.com>
Co-authored-by: zhangdong <a80369@gree.com.cn>
2024-06-21 15:25:08 +08:00
btea
58b60e52dc fix(components): [progress] setting both color and striped is invalid (#17235)
* fix(components): [progress] setting both color and striped is invalid

* chore: fix test
2024-06-21 12:44:55 +08:00
yang
a8a2298a6d feat(pagination) : add size prop (#16858)
* fix(components): [table]

closed #11023

* fix(components): add component prop 'size' and related style supplement

BREAKING CHANGE :
size

closed #16830

* Update component documentation

* Update documentation and tests

* Optimized using useFormSize

* Keep the 'small' api for now

* Eliminate unwanted code

* Eliminate the impact of errors

* Remove 'ref'

* Update docs/examples/pagination/more-elements.vue

Co-authored-by: qiang <qw13131wang@gmail.com>

* Modify documents and declarations

* Eliminate uselessness

* Update packages/components/pagination/src/pagination.ts

Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>

* Update docs/en-US/component/pagination.md

Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>

* Update packages/components/pagination/src/pagination.ts

Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>

* Adjust public access

* pass Lint

* Modify attribute acquisition

* change the source of 'size'

* remove `pagination-font-size-large`

* Lift response

* Update packages/theme-chalk/src/common/var.scss

Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>

* Update pagination.ts

* Update docs/examples/pagination/more-elements.vue

---------

Co-authored-by: yang <29636098325@qq.com>
Co-authored-by: qiang <qw13131wang@gmail.com>
Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>
Co-authored-by: btea <2356281422@qq.com>
2024-06-21 11:29:51 +08:00
Raphael Bernhart
03e8be2657 fix(components): fix iOS select click event listening (#16393)
iOS Safari does not handle click events when a mouseenter event is registered and a DOM-change
happens in a child. We use a Vue custom event binding to only register the event on non-iOS devices.
The inputHovering state gets updated now on iOS-devices on click. This is needed as the mouseenter
event normally does this.

closed #5210
2024-06-21 07:34:43 +08:00
guetHe
db0fec864a fix(components): [select-v2] with teleported="false" dropdown closes abnormally (#16714)
fix(components): with teleported="false" dropdown closes bug

Move toggleMenu click event to the right place wrapperRef
Only wrapperRef can control tooltip content visble or not

closed #16653
2024-06-20 08:01:05 +08:00
sea
32ed206b1f feat(components): [table] export columns (#17252)
* feat(components): [el-table] export columns

* feat: add test and fix
2024-06-19 21:12:09 +08:00
XiaoDong
ff936c76b5 fix(components): date-picker minDate change unexpectedly (#16748) 2024-06-18 13:56:24 +08:00
btea
39ac0b5a0d fix(components): [input] class bind error corresponding to dynamic slot (#17194) 2024-06-15 12:40:06 +08:00
Whbbit1999
7648011303 fix(components): [table-v2] the selector is invalid when row-key is a number (#16989)
* fix: rowKey use number or start of number onRowHovered Throw Error#16988

* fix: use String() replace to `as string` #16989
2024-06-11 21:44:19 +08:00
btea
8bd642f567 fix(components): [table] dragging cell should not trigger header-click (#17093) 2024-06-08 19:51:20 +08:00
btea
9f04072720 fix(components): [select] invalid name setting (#17127) 2024-06-08 19:24:03 +08:00
sea
d9c4634885 fix(components): [color-picker] replenish enableAlpha contral (#17015) 2024-06-07 20:44:02 +08:00
sea
14fa38a778 refactor(components): [watermark] change textBaseline default value to hanging (#17036)
refactor: [watermark] change textBaseline default to hanging
2024-06-03 21:29:12 +08:00
btea
73968424d7 feat(components): [input] add is-focus class name when textarea focus (#17049) 2024-06-03 11:44:18 +08:00
sleepyShen1989
203f76b0eb test(components): [select] fix option type warning (#17020) 2024-05-30 18:47:18 +08:00
Xc
db9590e1f0 fix(components): [date-picker] modelValue typo (#15080)
* fix(components): [date-picker] modelValue typo

* fix(components): [date-picker] docs

---------

Co-authored-by: xiaochenchen <xiaochen.chen@igg.com>
Co-authored-by: btea <2356281422@qq.com>
2024-05-30 09:50:18 +00:00
kooriookami
f57b10c2ba style(components): [select & select-v2] remove split dash (#17009)
* style(components): [select & select-v2] remove split dash

* feat(components): update
2024-05-28 16:35:46 +08:00
kooriookami
1148ccd2d6 feat(components): [select & select-v2] add label slot (#16960) 2024-05-28 14:50:22 +08:00
Liao-js
a8d2a5f0b3 fix(components): [color-picker] attrs class (#16887)
* fix(components): [color-picker] attrs class

* fix(components): [color-picker] v-bind attrs
2024-05-25 12:55:02 +08:00
btea
67d9d7c09b fix(components): [tree-select] empty slot display error (#16943)
* fix(components): [tree-select] empty slot display error

* fix: style
2024-05-25 12:29:43 +08:00
久染 | JiuRan
4c3c81e3d6 test(component): select remove-tag event triggered by keydown.delelte (#16840)
* fix: select deletePrevTag emit remove tag event

* fix: test case

* fix: select-v2 handleDel

* test: select-v2 test case

* fix: test case index

* chore: remove emit event

---------

Co-authored-by: btea <2356281422@qq.com>
2024-05-21 16:58:32 +08:00
Liao-js
1f4ca71c7e fix(components): [select & select-v2] remove-tag when use backspace (#16832) 2024-05-21 16:51:00 +08:00
sea / 神秘海
b905cc00aa refactor(components): [virtual-list] remove use-wheel ts-nocheck comments (#16929)
chore: remove ts-nocheck comments in virtual-list
2024-05-21 16:37:11 +08:00
btea
ad0cd51796 fix(components): [table] cell tooltip display error (#16868)
* fix(components): [table] cell tooltip diaplay error

* fix: update

* fix: update
2024-05-20 09:26:41 +08:00
sea / 神秘海
48e75f53dd test: fix ci image/avatar test error (#16863)
* test: fix ci image test error

* test: add test

* test: add test

* test: add ci

* test: add ci

* test: fix avatar emitted undefined

* test: fix ci image test error

* test: fix ci image/avatar test error

* test: fix ci image/avatar test error

* test: again test

* test: again test2

* test: delete test ci
2024-05-16 12:49:50 +08:00
sea / 神秘海
e35f403515 fix(types): non-null assertion component name (#16804) 2024-05-15 09:24:42 +08:00
sea / 神秘海
75b935a977 fix(components): [popper] remove unnecessary conditional judgment (#16834)
fix: delete invalid code
2024-05-13 20:14:54 +08:00
dopamine
441e07edbb test(components): [select] modify the grouping of several test cases (#16824)
chore: modify the grouping of several test cases
2024-05-12 11:43:17 +08:00
Liao-js
43c8f35412 fix(components): [table] selection reference when toggleAllSelection (#16800)
* fix(components): [table] selection is not updated when length is 0

* fix(components): [table] selection reference when toggleAllSelection

* feat: add test
2024-05-10 20:24:11 +08:00
sea / 神秘海
1fdbfd07fa feat(components): [form] export fields (#16755)
* feat(components): [form] export fields

* docs: format

* feat: add test

* Update packages/components/form/src/form.vue

Co-authored-by: btea <2356281422@qq.com>

* Update docs/en-US/component/form.md

Co-authored-by: btea <2356281422@qq.com>

* Update form.md

---------

Co-authored-by: btea <2356281422@qq.com>
2024-05-07 22:42:51 +08:00
伊墨
982640d1fe fix(components): [InfiniteScroll] error caused by value of el[SCOPE] (#16686) 2024-04-30 11:57:44 +08:00
sea / 神秘海
5cc5673ccb feat(components): [time-picker] @touchstart add passive (#16665)
feat(components): [time-picker] touchstart add passive
2024-04-30 10:41:06 +08:00
reiwang01
e75cee1ce4 fix(compoents): [message-box] adapt Parameters extraction rules (#16592)
fix type error when use Parameters<ElMessageBoxShortcutMethod>
2024-04-29 16:31:47 +08:00
kooriookami
29ae802fae chore(components): fix test warning (#16688) 2024-04-28 14:56:16 +08:00
Liao-js
42aa1724ea fix(components): [pagination] jumper input label warning (#16682) 2024-04-28 09:17:01 +08:00
Liao-js
ac2662dd56 fix(components): [select-v2] custom options init error in multiple (#16664)
* fix(components): [select-v2] custom options init error in multiple

* test(components): [select-v2] custom options init in multiple
2024-04-26 15:07:13 +08:00
btea
efe6166966 fix(components): [progress] bar background support gradient (#16666)
* fix(components): [progress] bar background support gradient

* fix: test
2024-04-26 15:03:53 +08:00
dopamine
2cba92fc82 fix(components): [select] isDisabled is not fresh (#16419)
* fix(components): [select] `isDisabled` is not fresh

* add a test case
2024-04-26 14:39:45 +08:00
一只前端汪
00231a5ddd test(components): [form] add validate callback call order test (#16669) 2024-04-26 14:33:59 +08:00
LIUCHAO
f3215b6bff fix(components): [table-v2] fix scrolling fail (#16470)
fix(components): [table-v2] Fix scrolling fail

closed 16266
2024-04-26 11:33:30 +08:00
sea / 神秘海
901d6eb65b feat(components): [form] add validate callback promise type (#16652) 2024-04-26 09:54:29 +08:00
otto
434c8d26df fix(components): Add missing export (#16323)
* fix(components): Add missing export

* fix(components): Add missing export

* fix(components): Add missing blank line.
2024-04-25 21:18:05 +08:00
一只前端汪
f45f0b4368 fix(components): [table] return type of function summary-method supports VNode (#16648)
* fix(components): [table] return type of function summary-method

* fix: type
2024-04-25 17:58:14 +08:00
Liao-js
261062859c fix(components): [select] group error when custom option component (#16621)
* fix(components): [select] group error when custom option component

* Update packages/components/select/src/option-group.vue

Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>

* perf(components): [select] group flattedChildren

* perf(components): [select] group flattedChildren

* test(components): [select] group when custom option component case

---------

Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>
2024-04-25 15:34:43 +08:00
Akash Bagchi
f5e49591a9 improvement(other): Minor change to English phrasing (#16654)
Update affix.vue

Minor fix to phrasing
2024-04-25 15:30:37 +08:00
知晓同丶
53b6e16080 feat(components): [color-picker] add teleported prop (#16634)
* feat(components): [color-picker] add `teleported` prop

closed #15357

* refactor: use tooltip hooks
2024-04-24 12:07:20 +08:00
dopamine
d83033020a chore: remove redundant code (#16597)
* chore: remove redundant code

* remove the unused variable
2024-04-23 17:42:16 +08:00
kooriookami
bd1613d599 feat(hooks): add use-aria hooks (#16598)
* feat(hooks): add use-aria hooks

* feat(components): update

* feat(hooks): update

* feat(hooks): update
2024-04-23 13:56:44 +08:00
Liao-js
87dd7ba464 fix(components): [table] table body rerendered when use row-key (#16544)
fix(components): [table] fixed table body rerendered when use row-key
2024-04-20 15:16:10 +08:00
Liao-js
c962eea712 fix(components): [select-v2] fix has existing option when allow create (#16590) 2024-04-20 15:06:57 +08:00