Aresn
a43f9d7ceb
Merge pull request #2847 from Xotic750/radio_tabindex
...
Radio: Tabindex WIP
2018-01-19 10:24:09 +08:00
Graham Fairweather
18efb1b412
Key space to select
2018-01-18 13:48:22 +01:00
Graham Fairweather
e0f097e652
Initial WIP
2018-01-18 13:42:02 +01:00
梁灏
5a3fe3ec62
update Button focus transition
2018-01-18 11:28:10 +08:00
梁灏
91d9c16a3f
update
2018-01-18 10:58:26 +08:00
梁灏
9e5c72833e
Revert "Revert "update Button & style""
...
This reverts commit 518c639ada
.
2018-01-18 10:51:12 +08:00
梁灏
518c639ada
Revert "update Button & style"
...
This reverts commit 4434b3abfb
.
2018-01-18 10:27:14 +08:00
梁灏
4434b3abfb
update Button & style
...
@xotic750 I update Button code, because just use :focus style can do it, so i removed some event.
2018-01-18 10:13:13 +08:00
Aresn
5568b2e877
Merge pull request #2838 from SergioCrisostomo/fix-travis
...
Fix travis regression
2018-01-18 09:29:16 +08:00
梁灏
b6af2c2a00
update Button styles
2018-01-17 18:32:52 +08:00
Aresn
9acc9d63a1
Merge pull request #2840 from Xotic750/remove_core_js
...
Remove core-js as no longer required
2018-01-17 18:16:26 +08:00
Graham Fairweather
cd99387eb3
Remove core-js as no longer required
...
Re: https://github.com/iview/iview/pull/2839#issuecomment-358236307
2018-01-17 11:14:48 +01:00
Aresn
acf995d671
Merge pull request #2839 from Xotic750/babel_browserlist_transpilation_polyfills
...
Enhancement: Implement browserlist, specifically babel orientated.
2018-01-17 18:01:41 +08:00
Aresn
4ba1df8187
Merge pull request #2833 from Xotic750/button_tabindex
...
Feature: Button tab navigation
2018-01-17 17:58:59 +08:00
Graham Fairweather
e64ab2e174
Merge
2018-01-17 09:12:44 +01:00
Aresn
f1e3240a6b
Merge pull request #2837 from Xotic750/babel_cli
...
Upgrade: babel to babel-cli
2018-01-17 15:49:45 +08:00
Sergio Crisostomo
9f3ac65b2c
Fix travis regression
2018-01-17 08:15:16 +01:00
Graham Fairweather
074ad8aa40
Resolve conflict
2018-01-17 07:58:30 +01:00
Aresn
168565e45f
Merge pull request #2835 from Xotic750/babel_preset_env
...
Upgrade: babel-preset-es2015 to babel-preset-env
2018-01-17 14:48:40 +08:00
Xotic750
10a9f53bab
Upgrade: babel-preset-es2015 to babel-preset-env
...
Stay up to date, by using the env preset.
https://babeljs.io/docs/plugins/preset-es2015/
https://babeljs.io/docs/plugins/preset-env/
2018-01-16 19:12:55 +01:00
Graham Fairweather
d19aee2754
Revert
2018-01-16 16:25:37 +01:00
Graham Fairweather
8cc60d2249
Use an added style and shadow for the focused element.
2018-01-16 16:04:16 +01:00
Graham Fairweather
291acd27f3
Feature: Button tab navigation
...
https://github.com/iview/iview/issues/1647
2018-01-16 10:50:53 +01:00
Aresn
9c1b5c1c32
Merge pull request #2783 from SergioCrisostomo/add-clickoutside-event
...
New feature: add "clickoutside" event emitter to dropdown
2018-01-15 18:24:29 +08:00
Aresn
24e156e6a5
Merge pull request #2775 from hxsf/patch-1
...
fix last column resize bug when no data
2018-01-15 18:17:52 +08:00
梁灏
b31dd8facd
Merge branch '2.0' of https://github.com/iview/iview into 2.0
2018-01-15 18:12:13 +08:00
梁灏
3288b53099
update
2018-01-15 18:11:41 +08:00
Aresn
9044be7865
Merge pull request #2802 from chenfengjw163/2.0
...
dropdown component in fast switch display hidden times error
2018-01-15 18:11:20 +08:00
Aresn
2a3262456d
Merge pull request #2797 from Leonard1980/patch-1
...
Romanian language
2018-01-15 17:49:49 +08:00
陈峰
e845e84d3b
Update dropdown.vue
2018-01-12 09:51:33 +08:00
Leonard1980
0d7506ce5f
Update ro-RO
2018-01-11 12:34:01 +02:00
Leonard1980
0e3052e071
Update ro-RO
2018-01-11 12:32:09 +02:00
Leonard1980
3bc532735e
Romanian language
2018-01-11 12:23:25 +02:00
Sergio Crisostomo
526a142cac
add click outside event emitter to dropdown
2018-01-10 09:43:24 +01:00
Aresn
3537176f98
Merge pull request #2393 from SergioCrisostomo/refactor-slider
...
Refactor slider
2018-01-09 18:02:18 +08:00
Sergio Crisostomo
3e9a7f9786
Correct barStyle computed property
2018-01-09 06:07:23 +01:00
呼啸随风
e7f2801b5e
fix last column resize bug when no data
...
If a table has heigth and last column is auto width
let width = ''
// is_last_column, true && top_always_true && height_set_by_user, true
if ( this.columns.length === index + 1 && top && this.$parent.bodyHeight !== 0) {
// width will be 0 + this.$parent.scrollBarWidth === this.$parent.scrollBarWidth
// so last column will be 10~20px(the width of scrollBar)
}
there is an example with iview@2.8.0
[gist](https://gist.github.com/anonymous/e04e86c9e99d4d1e97bf327769acd345 )
[demo on jsbin](http://jsbin.com/soqogagiqu )
2018-01-09 10:22:17 +08:00
梁灏
4110207762
update package-lock.json
2018-01-08 15:58:25 +08:00
梁灏
7f72253b67
update date demo
2018-01-08 15:45:33 +08:00
Aresn
1af3dd1f7a
Merge pull request #2722 from GLChan/patch-1
...
Update cascader.vue
2018-01-08 14:51:50 +08:00
Aresn
4ffec80723
Merge pull request #2724 from AlexanderMisel/patch-1
...
Add saturation property
2018-01-08 14:49:59 +08:00
Aresn
5edc93d685
Merge pull request #2757 from adam-zou/pr/2644
...
fix issue: #2352
2018-01-08 14:47:34 +08:00
Eric
a1bdd0d74f
fix issue: #2352
2018-01-05 18:11:49 +08:00
Aresn
7afb791923
Merge pull request #2752 from lison16/2.0
...
fixed bug of notice when has render and title bug no desc
2018-01-05 15:38:58 +08:00
zhigang.li
efc65a34ff
fixed bug of notice when has render and title bug no desc
2018-01-05 15:23:46 +08:00
Alexander Misel
2b2dc78add
Add saturation property
...
add a property to decide whether saturation panel should show
2017-12-30 15:42:19 +08:00
GLChen
f7caa832a7
Update cascader.vue
2017-12-29 22:44:53 +08:00
Aresn
6b2cd6742a
Merge pull request #2693 from roshangara/patch-1
...
Create fa-IR.js
2017-12-28 09:43:19 +08:00
Aresn
080bca7a0c
Merge pull request #2707 from rajnikant307/2.0
...
Please merge Hindi language support for iview
2017-12-28 09:42:00 +08:00
Rajnikant Dixit
177c19e8ad
Update hi-IN.js
2017-12-27 14:46:51 +05:30