rsuite 5.21.0 → 5.22.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -973
- package/DatePicker/styles/index.less +11 -0
- package/Table/styles/index.less +12 -7
- package/cjs/Calendar/Calendar.js +1 -1
- package/cjs/Calendar/CalendarContainer.d.ts +2 -2
- package/cjs/Calendar/CalendarContainer.js +11 -11
- package/cjs/Calendar/MonthDropdownItem.js +1 -1
- package/cjs/Calendar/TimeDropdown.js +1 -1
- package/cjs/Calendar/types.d.ts +2 -2
- package/cjs/DatePicker/DatePicker.js +29 -7
- package/cjs/DatePicker/types.d.ts +1 -0
- package/cjs/DateRangePicker/Calendar.d.ts +2 -2
- package/cjs/DateRangePicker/Calendar.js +18 -13
- package/cjs/DateRangePicker/DateRangePicker.js +100 -55
- package/cjs/DateRangePicker/utils.d.ts +1 -1
- package/cjs/DateRangePicker/utils.js +11 -6
- package/cjs/utils/dateUtils.d.ts +16 -0
- package/cjs/utils/dateUtils.js +62 -8
- package/dist/rsuite-rtl.css +20 -6
- package/dist/rsuite-rtl.min.css +1 -1
- package/dist/rsuite-rtl.min.css.map +1 -1
- package/dist/rsuite.css +20 -6
- package/dist/rsuite.js +35 -24
- package/dist/rsuite.js.map +1 -1
- package/dist/rsuite.min.css +1 -1
- package/dist/rsuite.min.css.map +1 -1
- package/dist/rsuite.min.js +1 -1
- package/dist/rsuite.min.js.map +1 -1
- package/esm/Calendar/Calendar.js +1 -1
- package/esm/Calendar/CalendarContainer.d.ts +2 -2
- package/esm/Calendar/CalendarContainer.js +11 -11
- package/esm/Calendar/MonthDropdownItem.js +1 -1
- package/esm/Calendar/TimeDropdown.js +1 -1
- package/esm/Calendar/types.d.ts +2 -2
- package/esm/DatePicker/DatePicker.js +26 -7
- package/esm/DatePicker/types.d.ts +1 -0
- package/esm/DateRangePicker/Calendar.d.ts +2 -2
- package/esm/DateRangePicker/Calendar.js +18 -13
- package/esm/DateRangePicker/DateRangePicker.js +102 -55
- package/esm/DateRangePicker/utils.d.ts +1 -1
- package/esm/DateRangePicker/utils.js +11 -6
- package/esm/utils/dateUtils.d.ts +16 -0
- package/esm/utils/dateUtils.js +47 -1
- package/package.json +3 -3
- package/styles/variables.less +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## [5.22.1](https://github.com/rsuite/rsuite/compare/v5.22.0...v5.22.1) (2022-11-11)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **DateRangePicker:** fix time on calendar changing with date change ([#2884](https://github.com/rsuite/rsuite/issues/2884)) ([77529af](https://github.com/rsuite/rsuite/commit/77529af661eac3abec994f146c3c7262a85f2009))
|
|
6
|
+
|
|
7
|
+
# [5.22.0](https://github.com/rsuite/rsuite/compare/v5.21.0...v5.22.0) (2022-11-03)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **DateRangePicker:** fix end time not using time on second calendar ([#2852](https://github.com/rsuite/rsuite/issues/2852)) ([b243567](https://github.com/rsuite/rsuite/commit/b243567520404b65bdb4d07d9a150f09730fd66e))
|
|
12
|
+
- **Table:** remove transition on hover of table row ([#2858](https://github.com/rsuite/rsuite/issues/2858)) ([9d26226](https://github.com/rsuite/rsuite/commit/9d26226004b618e8acb7b4d0802b1c3757b0a8e6))
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- **DatePicker:** allow ranges on left of calendar ([#2851](https://github.com/rsuite/rsuite/issues/2851)) ([ba2f7ee](https://github.com/rsuite/rsuite/commit/ba2f7ee1355ec70089557f4eab1614f53bfd6857)), closes [#2845](https://github.com/rsuite/rsuite/issues/2845)
|
|
17
|
+
- **Table:** support for show full text when hovering over a cell ([#2862](https://github.com/rsuite/rsuite/issues/2862)) ([f8b7eeb](https://github.com/rsuite/rsuite/commit/f8b7eebd9b456c4d154695dcfc6c59ce0b82aeac))
|
|
18
|
+
- **Table:** support for show full text when hovering over a cell ([#2862](https://github.com/rsuite/rsuite/issues/2862)) ([5528225](https://github.com/rsuite/rsuite/commit/5528225c432b6e909ce3ee0d82240070886e3811))
|
|
19
|
+
- **Table:** support for show full text when hovering over a cell ([#2862](https://github.com/rsuite/rsuite/issues/2862)) ([fe2d769](https://github.com/rsuite/rsuite/commit/fe2d769a53549ec77f510b1d5075bb8c66511647))
|
|
20
|
+
- **Table:** support for show full text when hovering over a cell ([#2862](https://github.com/rsuite/rsuite/issues/2862)) ([6c4cf18](https://github.com/rsuite/rsuite/commit/6c4cf18bb9001940cbdbc9c9464faf5783691dc6))
|
|
21
|
+
|
|
1
22
|
# [5.21.0](https://github.com/rsuite/rsuite/compare/v5.20.0...v5.21.0) (2022-10-27)
|
|
2
23
|
|
|
3
24
|
### Bug Fixes
|
|
@@ -994,976 +1015,3 @@
|
|
|
994
1015
|
- improve accessibility with ARIA ([#1323](https://github.com/rsuite/rsuite/issues/1323)) ([24b4379](https://github.com/rsuite/rsuite/commit/24b4379))
|
|
995
1016
|
- remove deprecated code ([1ef99b1](https://github.com/rsuite/rsuite/commit/1ef99b1))
|
|
996
1017
|
- **selectpicker:** adjust the dependency of Picker ([1fc5f24](https://github.com/rsuite/rsuite/commit/1fc5f24))
|
|
997
|
-
|
|
998
|
-
# 4.8.0
|
|
999
|
-
|
|
1000
|
-
> July 9, 2020
|
|
1001
|
-
|
|
1002
|
-
- **Feature**: Added support for `none` in `trigger` props on `<Whisper>`. [#1155]
|
|
1003
|
-
- **Feature**: Support `scrollable` on `<InputNumber>`. ([#1133])
|
|
1004
|
-
- **Improve**: Impove `<DateRangePicker>` panel range layout styles. ([#1164])
|
|
1005
|
-
- **Improve**: Improve all Pickers renderValue methods. ([#1151],[#1139])
|
|
1006
|
-
- **Bugfix**: Fix Uploader repeatedly triggering onChange event in IE11. ([#1156])
|
|
1007
|
-
- **Bugfix**: Fix `<Whisper>` delay not working. ([#1153])
|
|
1008
|
-
- **Bugfix**: Fix the issue of height reduction when reopening `<Modal>`. ([#1152])
|
|
1009
|
-
- **Bugfix**: Fix the style problem of various combinations of `<InputGroup>`. ([#1149],[#1150],[#1158],[#1163])
|
|
1010
|
-
- **Bugfix**: Fix `<Carousel>` autoplay direction error on RTL. ([#1136])
|
|
1011
|
-
|
|
1012
|
-
---
|
|
1013
|
-
|
|
1014
|
-
- **Feature**: `<InputNumber>` 新增支持 `scrollable` 属性,默认值为 `true`, 设置为 `false` 则禁用滚动更新值。 ([#1133])
|
|
1015
|
-
- **Feature**: `<Whisper>` 的 `trigger` 属性值新增 `none` 。 [#1155]
|
|
1016
|
-
- **Improve**: 改进 `<DateRangePicker>` 的面板样式,可以容纳更多自定义选项。 ([#1164])
|
|
1017
|
-
- **Improve**: 改进所有 Picker 的 `renderValue` 方法,解决值与数据不匹配时也能自定义显示。 ([#1151],[#1139])
|
|
1018
|
-
- **Bugfix**: 修复 `Uploader` 在 IE11 浏览器会触发两次 `onChange` 的问题. ([#1156])
|
|
1019
|
-
- **Bugfix**: 修复 `<Whisper>` 的 `delay` 值属性无效的问题。 ([#1153])
|
|
1020
|
-
- **Bugfix**: 修复 `<Modal>` 在再一次打开后高度计算不一致的问题。 ([#1152])
|
|
1021
|
-
- **Bugfix**: 修复 `<InputGroup>` 在多种组合场景下存在的样式问题。 ([#1149],[#1150],[#1158],[#1163])
|
|
1022
|
-
- **Bugfix**: 修复 `<Carousel>` RTL 视图下自动播放方向错误的问题。 ([#1136])
|
|
1023
|
-
|
|
1024
|
-
[#1164]: https://github.com/rsuite/rsuite/pull/1164
|
|
1025
|
-
[#1156]: https://github.com/rsuite/rsuite/pull/1156
|
|
1026
|
-
[#1155]: https://github.com/rsuite/rsuite/pull/1153
|
|
1027
|
-
[#1153]: https://github.com/rsuite/rsuite/pull/1153
|
|
1028
|
-
[#1152]: https://github.com/rsuite/rsuite/pull/1152
|
|
1029
|
-
[#1163]: https://github.com/rsuite/rsuite/pull/1163
|
|
1030
|
-
[#1158]: https://github.com/rsuite/rsuite/pull/1158
|
|
1031
|
-
[#1150]: https://github.com/rsuite/rsuite/pull/1150
|
|
1032
|
-
[#1149]: https://github.com/rsuite/rsuite/pull/1149
|
|
1033
|
-
[#1148]: https://github.com/rsuite/rsuite/pull/1148
|
|
1034
|
-
[#1139]: https://github.com/rsuite/rsuite/pull/1139
|
|
1035
|
-
[#1151]: https://github.com/rsuite/rsuite/pull/1151
|
|
1036
|
-
[#1136]: https://github.com/rsuite/rsuite/pull/1136
|
|
1037
|
-
[#1133]: https://github.com/rsuite/rsuite/pull/1133
|
|
1038
|
-
|
|
1039
|
-
# 4.7.5
|
|
1040
|
-
|
|
1041
|
-
> June 18, 2020
|
|
1042
|
-
|
|
1043
|
-
- **Bugfix**: fix(dropdown): fixed an issue where the menu and tooltip overlapped. ([#1132])
|
|
1044
|
-
- **Bugfix**: fix(treepicker): called onDragStart only when the node is draggable. ([#1124])
|
|
1045
|
-
|
|
1046
|
-
[#1132]: https://github.com/rsuite/rsuite/pull/1132
|
|
1047
|
-
[#1124]: https://github.com/rsuite/rsuite/pull/1124
|
|
1048
|
-
|
|
1049
|
-
# 4.7.4
|
|
1050
|
-
|
|
1051
|
-
> June 11, 2020
|
|
1052
|
-
|
|
1053
|
-
- **Bugfix**: Fix autoplay can't be interrupted in `Carousel`. ([#1120])
|
|
1054
|
-
- **Bugfix**: Fixed `ShowOneCalendar` disabled Months after date. ([#1118])
|
|
1055
|
-
- **Bugfix**: Fixed type errors defined by Typescript. ([#1098],[#1106])
|
|
1056
|
-
|
|
1057
|
-
[#1120]: https://github.com/rsuite/rsuite/pull/1120
|
|
1058
|
-
[#1118]: https://github.com/rsuite/rsuite/pull/1118
|
|
1059
|
-
[#1106]: https://github.com/rsuite/rsuite/pull/1106
|
|
1060
|
-
[#1098]: https://github.com/rsuite/rsuite/pull/1098
|
|
1061
|
-
|
|
1062
|
-
# 4.7.3
|
|
1063
|
-
|
|
1064
|
-
> June 8, 2020
|
|
1065
|
-
|
|
1066
|
-
- **Bugfix**: fix TypeError Cannot redefine property: prefix. ([#1115])
|
|
1067
|
-
|
|
1068
|
-
[#1115]: https://github.com/rsuite/rsuite/pull/1115
|
|
1069
|
-
|
|
1070
|
-
# 4.7.2
|
|
1071
|
-
|
|
1072
|
-
> June 4, 2020
|
|
1073
|
-
|
|
1074
|
-
- **Bugfix** fix(steps): fixed the description of Steps will break layout. ([#1100])
|
|
1075
|
-
- **Bugfix** fix(inputpicker): fix InputNumber will not trigger onChange when input. ([#1096])
|
|
1076
|
-
- **Bugfix** fix(ts): fix errors in Typescript. ([#1095],[#1103])
|
|
1077
|
-
- **Bugfix** fix(dropdown): fix incorrect Dropdown caret position. ([#1094])
|
|
1078
|
-
- **Bugfix** fix(picker): remove redundant ripple elements in PickerToggle ([#1092])
|
|
1079
|
-
- **Bugfix** fix(sidenav): fixed display issue when sidenav was collapsed. ([#1090])
|
|
1080
|
-
- **Bugfix**: fix(buttongroup): fixed Button componentClass not work with ButtonGroup. ([#1087])
|
|
1081
|
-
- **Example**: docs(example): add example of Reason app. ([#1101])
|
|
1082
|
-
|
|
1083
|
-
---
|
|
1084
|
-
|
|
1085
|
-
- **Bugfix** 修复 Steps 组件描述过长后导致布局异常。 ([#1100])
|
|
1086
|
-
- **Bugfix** 修复 InputNumber 键盘输入未触发 onChange 事件。 ([#1096])
|
|
1087
|
-
- **Bugfix** 修复 Typescript 中存在的类型定义错误。 ([#1095],[#1103])
|
|
1088
|
-
- **Bugfix** 修复 Dropdown 内 caret 图标的位置。 ([#1094])
|
|
1089
|
-
- **Bugfix** 修复 PickerToggle 内冗余的涟漪元素。 ([#1092])
|
|
1090
|
-
- **Bugfix** 修复 Sidenav 折叠以后存在的显示问题。 ([#1090])
|
|
1091
|
-
- **Bugfix**: 修复 ButtonGroup 内 Button 的 componentClass 属性无效的问题。 ([#1087])
|
|
1092
|
-
- **Example**: 新增 ReasonML 的示例项目 ([#1101])
|
|
1093
|
-
|
|
1094
|
-
[#1103]: https://github.com/rsuite/rsuite/pull/1103
|
|
1095
|
-
[#1101]: https://github.com/rsuite/rsuite/pull/1101
|
|
1096
|
-
[#1100]: https://github.com/rsuite/rsuite/pull/1100
|
|
1097
|
-
[#1096]: https://github.com/rsuite/rsuite/pull/1096
|
|
1098
|
-
[#1095]: https://github.com/rsuite/rsuite/pull/1095
|
|
1099
|
-
[#1094]: https://github.com/rsuite/rsuite/pull/1094
|
|
1100
|
-
[#1092]: https://github.com/rsuite/rsuite/pull/1092
|
|
1101
|
-
[#1090]: https://github.com/rsuite/rsuite/pull/1090
|
|
1102
|
-
[#1087]: https://github.com/rsuite/rsuite/pull/1087
|
|
1103
|
-
|
|
1104
|
-
# 4.7.1
|
|
1105
|
-
|
|
1106
|
-
> May 28, 2020
|
|
1107
|
-
|
|
1108
|
-
- **Improve**: Improved `<TreePicker>` and `<CheckTreePicker>` to expand nodes when searching. ([#1075])
|
|
1109
|
-
- **Improve**: Export component props from `rsuite`. ([#1068])
|
|
1110
|
-
- **Bugfix**: Fixed the content of the last marker of `<Slider>` not being dot-aligned. ([#1079])
|
|
1111
|
-
- **Bugfix**: Fixed `<Slider>` drag handle error ([#1082])
|
|
1112
|
-
- **Bugfix**: Fixed errors in the docs. ([#1080])
|
|
1113
|
-
- **Bugfix**: Fixed type errors defined by Typescript. ([#1081])
|
|
1114
|
-
- **Chore**: Added `commintlint` to check git meesage. ([#1078])
|
|
1115
|
-
|
|
1116
|
-
---
|
|
1117
|
-
|
|
1118
|
-
- **Improve**: 改进 `<TreePicker>` 和 `<CheckTreePicker>` 在搜索时展开节点。 ([#1075])
|
|
1119
|
-
- **Improve**: 导出 `rsuite` 所有组件的 `props`。 ([#1068])
|
|
1120
|
-
- **Bugfix**: 修复了 `<Slider>` 的最后一个标记的内容未点对齐的问题。([#1079])
|
|
1121
|
-
- **Bugfix**: 修复了 `<Slider>` 拖拽手柄报错的问题。 ([#1082])
|
|
1122
|
-
- **Bugfix**: 修复了一些文档中的错误。 ([#1080])
|
|
1123
|
-
- **Bugfix**: 修复了一些 Typescript 类型定义错误。 ([#1081])
|
|
1124
|
-
- **Chore**: 添加 `commintlint`,用于对 git meesage 的格式进行检查。 ([#1078])
|
|
1125
|
-
|
|
1126
|
-
[#1082]: https://github.com/rsuite/rsuite/pull/1082
|
|
1127
|
-
[#1081]: https://github.com/rsuite/rsuite/pull/1081
|
|
1128
|
-
[#1080]: https://github.com/rsuite/rsuite/pull/1080
|
|
1129
|
-
[#1079]: https://github.com/rsuite/rsuite/pull/1079
|
|
1130
|
-
[#1078]: https://github.com/rsuite/rsuite/pull/1078
|
|
1131
|
-
[#1075]: https://github.com/rsuite/rsuite/pull/1075
|
|
1132
|
-
[#1068]: https://github.com/rsuite/rsuite/pull/1068
|
|
1133
|
-
|
|
1134
|
-
# 4.7.0
|
|
1135
|
-
|
|
1136
|
-
> May 21, 2020
|
|
1137
|
-
|
|
1138
|
-
- **Feature**: Support `onRowContextMenu` on `<Table>`. ([rsuite-table#150])
|
|
1139
|
-
- **Feature**: Add `<Table.ColumnGroup>`. ([rsuite-table#146])
|
|
1140
|
-
- **Feature**: Support `filterBy` on `<AutoComplete>`. ([#1063])
|
|
1141
|
-
- **Feature**: Added support for Spanish ([#1054])
|
|
1142
|
-
- **Bugfix**: Fixed `<Loader>` spinner not centered when given size. ([#1059])
|
|
1143
|
-
- **Example**: Add example for draggable table. ([#1065])
|
|
1144
|
-
|
|
1145
|
-
---
|
|
1146
|
-
|
|
1147
|
-
- **Feature**: `<Table>`新增 `onRowContextMenu` 属性,行点击右键的回调。 ([rsuite-table#150])
|
|
1148
|
-
- **Feature**: 新增 `<Table.ColumnGroup>` 组件,用于表头分组。 ([rsuite-table#146])
|
|
1149
|
-
- **Feature**: `<AutoComplete>` 新增 `filterBy`属性,用于自定义过滤显示的选项。 ([#1063])
|
|
1150
|
-
- **Feature**: 新增对西班牙语的支持。 ([#1054])
|
|
1151
|
-
- **Bugfix**: 修复 `<Loader>` 当设置 `size` 时候,未居中的问题。 ([#1059])
|
|
1152
|
-
- **Example**: 添加了表格可拖拽行与列的示例。 ([#1065])
|
|
1153
|
-
|
|
1154
|
-
[#1065]: https://github.com/rsuite/rsuite/pull/1065
|
|
1155
|
-
[#1063]: https://github.com/rsuite/rsuite/pull/1063
|
|
1156
|
-
[#1059]: https://github.com/rsuite/rsuite/pull/1059
|
|
1157
|
-
[#1054]: https://github.com/rsuite/rsuite/pull/1054
|
|
1158
|
-
[rsuite-table#150]: https://github.com/rsuite/rsuite-table/pull/150
|
|
1159
|
-
[rsuite-table#146]: https://github.com/rsuite/rsuite-table/pull/146
|
|
1160
|
-
|
|
1161
|
-
# 4.6.0
|
|
1162
|
-
|
|
1163
|
-
> May 14, 2020
|
|
1164
|
-
|
|
1165
|
-
- **Feature**: Support `formatDate` on `<IntlProvider>`. ([#1036])
|
|
1166
|
-
|
|
1167
|
-
- **Feature**: Support animation related callbacks on Picker ([#1042])
|
|
1168
|
-
- **Improve**: The basic styles of HTML elements support import on demand. ([#1039])
|
|
1169
|
-
- **Bugfix**: Fixed an issue that caused data inconsistency when uncheckableItemValues changed in `<CheckTreePicker>`. ([#1053])
|
|
1170
|
-
- **Bugfix**: Fixed `<Sidenav>` style issues. ([#1052])
|
|
1171
|
-
- **Bugfix**: Fixed `Notification` closeAll sync problem. ([#1047])
|
|
1172
|
-
- **Bugfix**: Fixed performance issues caused by arrays in `Col`. ([#1037])
|
|
1173
|
-
- **Bugfix**: Fixed `Affix` typings definition wrong. ([#1051])
|
|
1174
|
-
- **Bugfix**: Fixed Table `scrollTop` method not working, when setting`virtualized`. ([rsuite-table#152])
|
|
1175
|
-
- **Example**: Add with-electron example. ([#1045])
|
|
1176
|
-
|
|
1177
|
-
---
|
|
1178
|
-
|
|
1179
|
-
- **Feature**: `<IntlProvider>` 新增支持 `formatDate` 属性,用于对日期格式。 ([#1036])
|
|
1180
|
-
- **Feature**: 所有 Picker 组件支持动画相关的回调。 ([#1042])
|
|
1181
|
-
- **Improve**: HTML 元素的基础样式支持按需导入。 ([#1039])
|
|
1182
|
-
- **Bugfix**: 修复了 `<CheckTreePicker>` 的 `uncheckableItemValues` 更新后导致的数据不一致问题。 ([#1053])
|
|
1183
|
-
- **Bugfix**: 修复了 `<Sidenav>` 中存在的样式问题。 ([#1052])
|
|
1184
|
-
- **Bugfix**: 修复了 `Notification` 的 `closeAll` 方法同步执行的问题。 ([#1047])
|
|
1185
|
-
- **Bugfix**: 修复了 `<Col>` 中数组导致的性能问题。 ([#1037])
|
|
1186
|
-
- **Bugfix**: 修复了 `<Affix>` 中 typescript 类型定义错误的问题。 ([#1051])
|
|
1187
|
-
- **Bugfix**: 修复了 `Table`在设置 `virtualized` 属性后,`scrollTop` 方法导致白屏的问题。 ([rsuite-table#152])
|
|
1188
|
-
- **Example**: 新增示例 `with-electron`。 ([#1045])
|
|
1189
|
-
|
|
1190
|
-
[#1053]: https://github.com/rsuite/rsuite/pull/1053
|
|
1191
|
-
[#1052]: https://github.com/rsuite/rsuite/pull/1052
|
|
1192
|
-
[#1051]: https://github.com/rsuite/rsuite/pull/1051
|
|
1193
|
-
[#1047]: https://github.com/rsuite/rsuite/pull/1047
|
|
1194
|
-
[#1045]: https://github.com/rsuite/rsuite/pull/1045
|
|
1195
|
-
[#1042]: https://github.com/rsuite/rsuite/pull/1042
|
|
1196
|
-
[#1039]: https://github.com/rsuite/rsuite/pull/1039
|
|
1197
|
-
[#1037]: https://github.com/rsuite/rsuite/pull/1037
|
|
1198
|
-
[#1036]: https://github.com/rsuite/rsuite/pull/1036
|
|
1199
|
-
[rsuite-table#152]: https://github.com/rsuite/rsuite-table/pull/152
|
|
1200
|
-
|
|
1201
|
-
# 4.5.0
|
|
1202
|
-
|
|
1203
|
-
> May 7, 2020
|
|
1204
|
-
|
|
1205
|
-
- **Feature**: Support `maxItems` and `onExpand` on `<Breadcrumb>`.([#1009])
|
|
1206
|
-
- **Bugfix**: Fixed TableProps onDataUpdated & shouldUpdateScroll optional. ([#1035])
|
|
1207
|
-
- **Bugfix**: Fixed Carousel unable to render invalid children. ([#1027])
|
|
1208
|
-
- **Bugfix**: Fixed the clear button style issue on Picker. ([#1029])
|
|
1209
|
-
- **Bugfix**: Fixed Sidenav style issue. ([#1020])
|
|
1210
|
-
|
|
1211
|
-
---
|
|
1212
|
-
|
|
1213
|
-
- **Feature**: `<Breadcrumb>` 新增属性 `maxItems` 和 `onExpand` 。([#1009])
|
|
1214
|
-
- **Bugfix**: 修复 TableProps 的属性 `onDataUpdated` 与 `shouldUpdateScroll` 为可选属性. ([#1035])
|
|
1215
|
-
- **Bugfix**: 修复 `<Carousel>` 出现无效子项导致组件渲染错误的问题. ([#1027])
|
|
1216
|
-
- **Bugfix**: 修复了 `Picker` 上清除按钮样式问题。 ([#1029])
|
|
1217
|
-
- **Bugfix**: 修复了 `<Sidenav>` 样式问题。([#1020])
|
|
1218
|
-
|
|
1219
|
-
[#1035]: https://github.com/rsuite/rsuite/pull/1035
|
|
1220
|
-
[#1029]: https://github.com/rsuite/rsuite/pull/1029
|
|
1221
|
-
[#1027]: https://github.com/rsuite/rsuite/pull/1027
|
|
1222
|
-
[#1020]: https://github.com/rsuite/rsuite/pull/1020
|
|
1223
|
-
[#1009]: https://github.com/rsuite/rsuite/pull/1009
|
|
1224
|
-
|
|
1225
|
-
# 4.4.1
|
|
1226
|
-
|
|
1227
|
-
> April 29, 2020
|
|
1228
|
-
|
|
1229
|
-
- **Bugfix**: Fix the clear button of picker not clickable in IE11. ([#1017])
|
|
1230
|
-
- **Bugfix**: Fix toggle clean button styles issue. ([#1016])
|
|
1231
|
-
- **Bugfix**: Fix missing typescript type definitions. ([#1008])
|
|
1232
|
-
- **Bugfix**: Fix the expanded state of the menu. ([#1007])
|
|
1233
|
-
|
|
1234
|
-
---
|
|
1235
|
-
|
|
1236
|
-
- **Bugfix**: 修复了 IE11 的一个兼容性问题,Picker 的清除按钮不可点击 ([#1017])
|
|
1237
|
-
- **Bugfix**: 修复了 Toggle 按钮样式问题。 ([#1016])
|
|
1238
|
-
- **Bugfix**: 修复了遗漏的 Typescript 类型定义。 ([#1008])
|
|
1239
|
-
- **Bugfix**: 修复了 Dropdown 中的菜单状态错误的问题。([#1007])
|
|
1240
|
-
|
|
1241
|
-
[#1017]: https://github.com/rsuite/rsuite/pull/1017
|
|
1242
|
-
[#1016]: https://github.com/rsuite/rsuite/pull/1016
|
|
1243
|
-
[#1008]: https://github.com/rsuite/rsuite/pull/1008
|
|
1244
|
-
[#1007]: https://github.com/rsuite/rsuite/pull/1007
|
|
1245
|
-
|
|
1246
|
-
# 4.4.0
|
|
1247
|
-
|
|
1248
|
-
> April 24, 2020
|
|
1249
|
-
|
|
1250
|
-
- **Feature**: Support `draggable` on `<Tree>` ([#987])
|
|
1251
|
-
- **Feature**: Added `<Rete>`. ([#981])
|
|
1252
|
-
- **Feature**: Added support for Italian ([#971])
|
|
1253
|
-
- **Feature**: Added support for custom overlay. ([#969])
|
|
1254
|
-
- **Feature**: Support `endless` on `<Timeline>` ([#982])
|
|
1255
|
-
- **Feature**: Support `vertical` on `<Progress.Line>`. ([#938])
|
|
1256
|
-
- **Feature**: Support `showMeridian` on `<DatePicker>`. ([#932])
|
|
1257
|
-
- **Feature**: Support `searchBy` on all picker. ([#928],[#965])
|
|
1258
|
-
- **Feature**: Support `tagProps` on `<TagPicker>`. ([#927])
|
|
1259
|
-
- **Feature**: Support `container` on `<Affix>`. ([#912])
|
|
1260
|
-
- **Feature**: Support `onDataUpdated` on `<Table>`. ([rsuite-table#140])
|
|
1261
|
-
- **Feature**: Support `affixHorizontalScrollbar` on `<Table>`. ([rsuite-table#137])
|
|
1262
|
-
- **Breaking**: Fix misspelling of Uploader props `dragable`, modify to`draggable`.
|
|
1263
|
-
- **Improve**: Picker support size props at default. ([#917])
|
|
1264
|
-
- **Improve** Improved animation of `<Placeholder>` active state.
|
|
1265
|
-
- **Improve**: Improved `wordWrap` property for compatibility with `rowHeight`. ([rsuite-table#138])
|
|
1266
|
-
- **Bugfix**: Fix Types.PlacementAuto definition. ([#962])
|
|
1267
|
-
- **Chore**: Migrating `rsuite-utils` to `rsuite`. ([#963])
|
|
1268
|
-
- **Example**: Add with-preact example. ([#977])
|
|
1269
|
-
|
|
1270
|
-
---
|
|
1271
|
-
|
|
1272
|
-
- **Feature**: `<Tree>` 组件新增 `draggable`属性, 支持拖拽。 ([#987])
|
|
1273
|
-
- **Feature**: 新增 `<Rete>` 组件。 ([#981])
|
|
1274
|
-
- **Feature**: 新增对意大利语言支持。 ([#971])
|
|
1275
|
-
- **Feature**: 支持自定义浮层。 ([#969])
|
|
1276
|
-
- **Feature**: `<Timeline>` 组件新增 `endless` 属性。 ([#982])
|
|
1277
|
-
- **Feature**: `<Progress.Line>` 组件新增 `vertical` 属性,垂直显示进度条。 ([#938])
|
|
1278
|
-
- **Feature**: `<DatePicker>` 组件新增 `showMeridian` 属性,支持时间 12 小时格式显示。 ([#932])
|
|
1279
|
-
- **Feature**: `<TagPicker>` 组件支持 `tagProps`,设置 Tag 属性。 ([#927])
|
|
1280
|
-
- **Feature**: `<Affix>` 支持 `container` 属性,把元素只在容器可见范围内才固定。 ([#912])
|
|
1281
|
-
- **Feature**: `<Table>` 支持 `onDataUpdated` 属性,在表格数据加载完成以后的回调函数。 ([rsuite-table#140])
|
|
1282
|
-
- **Feature**: `<Table>` 支持 `affixHorizontalScrollbar` 属性,让表格底部横向滚动条固定在可视范围内。 ([rsuite-table#137])
|
|
1283
|
-
- **Feature**: 所有带搜索功能的 Picker 组件 `searchBy`属性,可以自定义搜索规则。 ([#928],[#965])
|
|
1284
|
-
- **Breaking**: 修复 Uploader 属性 `dragable` 拼写错误,修改为 `draggable`。 ([#984])
|
|
1285
|
-
- **Improve**: 改进所有的 Picker 组件,默认支持 `size` 属性。([#917])
|
|
1286
|
-
- **Improve** 改进 `<Placeholder>` 的动画效果。
|
|
1287
|
-
- **Bugfix**: 修复 `<Table>` 的 `wordWrap` 属性与 `rowHeight`不兼容的问题。 ([rsuite-table#138])
|
|
1288
|
-
- **Bugfix**: 修复 Typescript 一些定义错误。([#962])
|
|
1289
|
-
- **Example**: 新增示例项目 with-preact。 ([#977])
|
|
1290
|
-
- **Chore**: 迁移 `rsuite-utils` 库到 `rsuite`,方便维护。 ([#963])
|
|
1291
|
-
|
|
1292
|
-
[#987]: https://github.com/rsuite/rsuite/pull/987
|
|
1293
|
-
[#984]: https://github.com/rsuite/rsuite/pull/984
|
|
1294
|
-
[#987]: https://github.com/rsuite/rsuite/pull/982
|
|
1295
|
-
[#981]: https://github.com/rsuite/rsuite/pull/981
|
|
1296
|
-
[#977]: https://github.com/rsuite/rsuite/pull/977
|
|
1297
|
-
[#971]: https://github.com/rsuite/rsuite/pull/971
|
|
1298
|
-
[#969]: https://github.com/rsuite/rsuite/pull/969
|
|
1299
|
-
[#965]: https://github.com/rsuite/rsuite/pull/965
|
|
1300
|
-
[#963]: https://github.com/rsuite/rsuite/pull/963
|
|
1301
|
-
[#962]: https://github.com/rsuite/rsuite/pull/962
|
|
1302
|
-
[#938]: https://github.com/rsuite/rsuite/pull/938
|
|
1303
|
-
[#933]: https://github.com/rsuite/rsuite/pull/933
|
|
1304
|
-
[#932]: https://github.com/rsuite/rsuite/pull/932
|
|
1305
|
-
[#928]: https://github.com/rsuite/rsuite/pull/928
|
|
1306
|
-
[#927]: https://github.com/rsuite/rsuite/pull/927
|
|
1307
|
-
[#917]: https://github.com/rsuite/rsuite/pull/917
|
|
1308
|
-
[#912]: https://github.com/rsuite/rsuite/pull/912
|
|
1309
|
-
[rsuite-table#140]: https://github.com/rsuite/rsuite-table/pull/140
|
|
1310
|
-
[rsuite-table#138]: https://github.com/rsuite/rsuite-table/pull/138
|
|
1311
|
-
[rsuite-table#137]: https://github.com/rsuite/rsuite-table/pull/137
|
|
1312
|
-
|
|
1313
|
-
# 4.3.4
|
|
1314
|
-
|
|
1315
|
-
> April 10, 2020
|
|
1316
|
-
|
|
1317
|
-
- **Bugfix**: Fixed `<DatePciker>` onlyTime icon to clock icon. ([#933])
|
|
1318
|
-
- **Bugfix**: Fixed an issue where the cache was not reset after the data was updated in `<InputPicker>`. ([#948])
|
|
1319
|
-
|
|
1320
|
-
---
|
|
1321
|
-
|
|
1322
|
-
- **Bugfix**: 修复了 `<DatePciker>` 在只显示时间时图标错误的问题。([#933])
|
|
1323
|
-
- **Bugfix**: 修复了 `<InputPicker>` 在更新数据后未重置缓存的问题,导致新建项重复。 ([#948])
|
|
1324
|
-
|
|
1325
|
-
[#948]: https://github.com/rsuite/rsuite/pull/948
|
|
1326
|
-
[#933]: https://github.com/rsuite/rsuite/pull/933
|
|
1327
|
-
|
|
1328
|
-
# 4.3.3
|
|
1329
|
-
|
|
1330
|
-
> March 26, 2020
|
|
1331
|
-
|
|
1332
|
-
- **Bugfix**: Fixed `<InputNumber>` triggering `onChange` event incorrectly when losing focus. ([#923])
|
|
1333
|
-
- **Bugfix**: Update broken types in `<DateRangePicker>`. ([#916])
|
|
1334
|
-
- **Bugfix**: `rowHeight` should be optional on `<Table>`. ([#913])
|
|
1335
|
-
- **Improve**: The `content` props value supports `false` on `<Badge>`. ([#915])
|
|
1336
|
-
- **Improve**: Support keyboard enter key selection after the search is completed on Picker. ([#914])
|
|
1337
|
-
|
|
1338
|
-
---
|
|
1339
|
-
|
|
1340
|
-
- **Bugfix**: 修复了 `<InputNumber>` 在失去焦点时候,值未改变的情况下也触发了 `onChange` 事件。 ([#923])
|
|
1341
|
-
- **Bugfix**: 修复了 `<DateRangePicker>` 中错误的 typescript 类型定义。 ([#916])
|
|
1342
|
-
- **Bugfix**: 修复了 `<Table>` 错误的 typescript 类型定义, `rowHeight` 应该是可选属性。 ([#913])
|
|
1343
|
-
- **Improve**: 更新 `<Badge>` 组件 `content` 属性的值可以设置为 `false`。 ([#915])
|
|
1344
|
-
- **Improve**: 改进了 `Picker` 组件在搜索后,支持键盘 `Enter` 键直接选中第一个结果。 ([#914])
|
|
1345
|
-
|
|
1346
|
-
[#923]: https://github.com/rsuite/rsuite/pull/923
|
|
1347
|
-
[#916]: https://github.com/rsuite/rsuite/pull/916
|
|
1348
|
-
[#915]: https://github.com/rsuite/rsuite/pull/915
|
|
1349
|
-
[#914]: https://github.com/rsuite/rsuite/pull/914
|
|
1350
|
-
[#913]: https://github.com/rsuite/rsuite/pull/913
|
|
1351
|
-
|
|
1352
|
-
# 4.3.2
|
|
1353
|
-
|
|
1354
|
-
> March 19, 2020
|
|
1355
|
-
|
|
1356
|
-
- **Feature**: Support `showOneCalendar` on `<DateRangePicker>`. ([#911],[#848])
|
|
1357
|
-
- **Bugfix**: Fixed an issue where the scroll bar would not reset after the table was updated with data. ([rsuite-table#136])
|
|
1358
|
-
- **Bugfix**: Fixed missing typescript type definition in table.
|
|
1359
|
-
- **Example**: Added example for `Nav.Item` with `react-router-dom/link`. ([#909])
|
|
1360
|
-
- **Example**: Added example for `Nav.Item` with `next/link`. ([#907])
|
|
1361
|
-
|
|
1362
|
-
---
|
|
1363
|
-
|
|
1364
|
-
- **Feature**: `<DateRangePicker>` 新增 `showOneCalendar` 属性,支持只显示一个日历。([#911],[#848])
|
|
1365
|
-
- **Bugfix**: 修复了 `<Table>` 在数据更新后,滚动条位置未重重的问题。 ([rsuite-table#136])
|
|
1366
|
-
- **Bugfix**: 修复了 `<Table>` 缺少 Typescript 的类型定义。
|
|
1367
|
-
- **Example**: 新增 `Nav.Item` 与 `react-router-dom/link`组合的示例 ([#909])
|
|
1368
|
-
- **Example**: 新增 `Nav.Item` 与 `next/link`组合的示例 ([#907])
|
|
1369
|
-
|
|
1370
|
-
[#911]: https://github.com/rsuite/rsuite/pull/911
|
|
1371
|
-
[#909]: https://github.com/rsuite/rsuite/pull/909
|
|
1372
|
-
[#907]: https://github.com/rsuite/rsuite/pull/907
|
|
1373
|
-
[#904]: https://github.com/rsuite/rsuite/pull/904
|
|
1374
|
-
[#848]: https://github.com/rsuite/rsuite/pull/848
|
|
1375
|
-
[rsuite-table#136]: https://github.com/rsuite/rsuite-table/pull/136
|
|
1376
|
-
|
|
1377
|
-
# 4.3.1
|
|
1378
|
-
|
|
1379
|
-
> March 13, 2020
|
|
1380
|
-
|
|
1381
|
-
- **Bugfix**: Fixed rendering error in local language. ([#903])
|
|
1382
|
-
- **Bugfix**: Fixed the problem that the `resizable` property of the columns of the table would not work. ([rsuite-table#135])
|
|
1383
|
-
- **Bugfix**: Fix Icon issue when Panel is nested. ([#894])
|
|
1384
|
-
- **Bugfix**: Fix incorrect value passing. ([#888])
|
|
1385
|
-
- **Bugfix**: [docs] Fixed issue that website can't load in safari and ie. ([#901])
|
|
1386
|
-
- **Bugfix**: [docs] Add title to home page. ([#898])
|
|
1387
|
-
- **Example**: Add with-gatsby example. ([#897])
|
|
1388
|
-
|
|
1389
|
-
---
|
|
1390
|
-
|
|
1391
|
-
- **Bugfix**: 修复本地语言渲染错误的问题。 ([#903])
|
|
1392
|
-
- **Bugfix**: 修复 Table 列设置 `resizable` 以后拖拽列宽不工作的问题。 ([rsuite-table#135])
|
|
1393
|
-
- **Bugfix**: 修复 Panel 组件嵌套 Icon 重复显示的问题 ([#894])
|
|
1394
|
-
- **Bugfix**: 修复 PaginationButton 中传递的错误值。 ([#888])
|
|
1395
|
-
- **Bugfix**: [docs] 修复文档不能再 safari 和 ie 浏览器正常访问的问题。 ([#901])
|
|
1396
|
-
- **Bugfix**: [docs] 修复文档首页缺失 title 的问题 ([#898])
|
|
1397
|
-
- **Example**: 添加 rsuite 与 gatsby 集成的示例 ([#897])
|
|
1398
|
-
|
|
1399
|
-
[#903]: https://github.com/rsuite/rsuite/pull/903
|
|
1400
|
-
[#901]: https://github.com/rsuite/rsuite/pull/901
|
|
1401
|
-
[#898]: https://github.com/rsuite/rsuite/pull/898
|
|
1402
|
-
[#894]: https://github.com/rsuite/rsuite/pull/894
|
|
1403
|
-
[#888]: https://github.com/rsuite/rsuite/pull/888
|
|
1404
|
-
[#897]: https://github.com/rsuite/rsuite/pull/897
|
|
1405
|
-
[rsuite-table#135]: https://github.com/rsuite/rsuite-table/pull/135
|
|
1406
|
-
|
|
1407
|
-
# 4.3.0
|
|
1408
|
-
|
|
1409
|
-
> March 5, 2020
|
|
1410
|
-
|
|
1411
|
-
- **Feature**: Added Arabic, Finnish, Swedish and Danish locales. ([#849],[#821])
|
|
1412
|
-
- **Feature**: Added `expanded` parameter in `renderTreeToggle` of `<Table>`. ([rsuite-table#130])
|
|
1413
|
-
- **Feature**: Added support `treeCol` on `<Table.Column>`. ([rsuite-table#129])
|
|
1414
|
-
- **Bugfix**: Fixed `<CheckPicker>` rendering error when setting `groupBy`. ([#887])
|
|
1415
|
-
- **Bugfix**: Fixed `<Slider>` bar is invisible on Drawer in dark mode. ([#876])
|
|
1416
|
-
- **Bugfix**: Fixed disabled `<InputNumber>` in `<InputGroup>` shows unexpected border radius. ([#875])
|
|
1417
|
-
- **Bugfix**: Fixed radio-group inline item styles. ([#872])
|
|
1418
|
-
- **Bugfix**: Fixed missing typescript declaration files \*.d.ts in `/locales`. ([#856])
|
|
1419
|
-
- **Bugfix**: Fixed mark cannot be customized rendering in `<Slider>` correctly. ([#840])
|
|
1420
|
-
- **Improve**: Updated check rules for disabled times on `<DatePicker>`. ([#852])
|
|
1421
|
-
- **Improve**: Support for getting the `active` property when the Pagination button is a custom element. ([#833])
|
|
1422
|
-
- **Breaking**: The `rowHeight` property of Table supports function values. Remove the`setRowHeight` property.
|
|
1423
|
-
- **Chore**: Improved HoC to support ref passing. ([#862],[#872])
|
|
1424
|
-
- **Chore**: Added some integrated examples. ([#860],[examples])
|
|
1425
|
-
- **Chore**: The Table component migrates Typescript from Flow. ([rsuite-table#127])
|
|
1426
|
-
|
|
1427
|
-
---
|
|
1428
|
-
|
|
1429
|
-
- **Feature**: 新增支持阿拉伯语,芬兰语,瑞典语和丹麦语。 ([#849],[#821])
|
|
1430
|
-
- **Feature**: `<Table>` 的 `renderTreeToggle`属性新增 `expanded` 参数。 ([rsuite-table#130])
|
|
1431
|
-
- **Feature**: `<Table.Column>` 上新增 `treeCol` 属性,指定 Tree 显示的列。 ([rsuite-table#129])
|
|
1432
|
-
- **Bugfix**: 修复了 `<CheckPicker>` 当设置 `groupBy='group'`渲染出错。 ([#887])
|
|
1433
|
-
- **Bugfix**: 修复了 `<Slider>` 在 dark 主题下选择栏不可见的问题。 ([#876])
|
|
1434
|
-
- **Bugfix**: 修复了 `<InputGroup>` 里禁用的 `<InputNumber>` 显示错误的边框。 ([#875])
|
|
1435
|
-
- **Bugfix**: 修复了 `<RadioGroup>` 单行显示时的样式问题。 ([#872])
|
|
1436
|
-
- **Bugfix**: 修复了 locales 目录下语言包缺少 Typescript 类型定义。 ([#856])
|
|
1437
|
-
- **Bugfix**: 修复了 `<Slider>` 的标记在自定义时候无法正确呈现。 ([#840])
|
|
1438
|
-
- **Improve**: 更新了 `<DatePicker>` 上禁用时间的检查规则。 ([#852])
|
|
1439
|
-
- **Improve**: 支持在 `<Pagination>` 按钮是自定义元素时获取 `active` 属性 。 ([#833])
|
|
1440
|
-
- **Breaking**: `<Table>` 的 `rowHeight` 属性值支持函数,同时删除了 `setRowHeight` 属性。
|
|
1441
|
-
- **Chore**: 改进了高阶组件以支持 ref 传递。 ([#862],[#872])
|
|
1442
|
-
- **Chore**: 新增了一些集成的示例项目。 ([#860],[examples])
|
|
1443
|
-
- **Chore**: Table 组件库从 Flow 迁移到 Typescript。 ([rsuite-table#127])
|
|
1444
|
-
|
|
1445
|
-
[#887]: https://github.com/rsuite/rsuite/pull/887
|
|
1446
|
-
[#876]: https://github.com/rsuite/rsuite/pull/876
|
|
1447
|
-
[#875]: https://github.com/rsuite/rsuite/pull/875
|
|
1448
|
-
[#873]: https://github.com/rsuite/rsuite/pull/873
|
|
1449
|
-
[#872]: https://github.com/rsuite/rsuite/pull/872
|
|
1450
|
-
[#862]: https://github.com/rsuite/rsuite/pull/862
|
|
1451
|
-
[#860]: https://github.com/rsuite/rsuite/pull/860
|
|
1452
|
-
[#856]: https://github.com/rsuite/rsuite/pull/856
|
|
1453
|
-
[#852]: https://github.com/rsuite/rsuite/pull/852
|
|
1454
|
-
[#849]: https://github.com/rsuite/rsuite/pull/849
|
|
1455
|
-
[#840]: https://github.com/rsuite/rsuite/pull/840
|
|
1456
|
-
[#833]: https://github.com/rsuite/rsuite/pull/831
|
|
1457
|
-
[#821]: https://github.com/rsuite/rsuite/pull/821
|
|
1458
|
-
[rsuite-table#130]: https://github.com/rsuite/rsuite-table/pull/130
|
|
1459
|
-
[rsuite-table#129]: https://github.com/rsuite/rsuite-table/pull/129
|
|
1460
|
-
[rsuite-table#127]: https://github.com/rsuite/rsuite-table/pull/127
|
|
1461
|
-
[examples]: https://github.com/rsuite/rsuite/tree/master/examples
|
|
1462
|
-
|
|
1463
|
-
# 4.2.1
|
|
1464
|
-
|
|
1465
|
-
> February 2, 2020
|
|
1466
|
-
|
|
1467
|
-
- **Bugfix**: Fixed "script-src" content security policy (CSP) failure ([#830])
|
|
1468
|
-
- **Bugfix**: Fixed an issue where `onSelect` was called undefined, when using `enter` on the `<AutoComplete>` to select it. ([#828])
|
|
1469
|
-
- **Bugfix**: Fixed vertical alignment of xs `<Datepicker>` icon. ([#817])
|
|
1470
|
-
- **Bugfix**: Fixed List and Modal combo setting has drag issue. ([#812])
|
|
1471
|
-
- **Bugfix**: Fixed toggle text/icon font size. ([#810])
|
|
1472
|
-
- **Bugfix**: Fixed an issue where `scrollTop` would not work in `<Table>`. ([rsuite-table#13da7a9])
|
|
1473
|
-
- **Bugfix**: Fixed `<Table>` style overlap problem, when there are both loading and empty states. ([rsuite-table#120])
|
|
1474
|
-
- **Bugfix**: [TS] Update ts type definition for Animation. ([#822])
|
|
1475
|
-
- **Improve**: Special handling of `<Button>` when it is used as a `link`. ([#831])
|
|
1476
|
-
- **Improve**: Remove defalut value of `parentSelectable` in `<Cascader>` ([#808])
|
|
1477
|
-
- **Chore**: Update eslint ([#808])
|
|
1478
|
-
|
|
1479
|
-
---
|
|
1480
|
-
|
|
1481
|
-
- **Bugfix**: 修复了 `script-src` 内容安全策略(CSP)失败的问题。 ([#830])
|
|
1482
|
-
- **Bugfix**: 修复了 `<AutoComplete>` 组件使用 `enter` 选择时候 `onSelect` 回调未被调用的问题。([#828])
|
|
1483
|
-
- **Bugfix**: 修复了 xs `<Datepicker>` 图标的垂直对齐方式。 ([#817])
|
|
1484
|
-
- **Bugfix**: 修复了 List 和 Modal 组合时候存在的拖拽问题。 ([#812])
|
|
1485
|
-
- **Bugfix**: 修复了 Toggle 字体大小的问题。 ([#810])
|
|
1486
|
-
- **Bugfix**: 修复了 `<Table>` 的 `scrollTop` API 调用无效的问题。([rsuite-table#13da7a9])
|
|
1487
|
-
- **Bugfix**: 修复了 `<Table>` 的加载中状态与数据为空状态的样式重叠的问题。 ([rsuite-table#120])
|
|
1488
|
-
- **Bugfix**: [TS] 更新了 Animation 的类型定义。 ([#822])
|
|
1489
|
-
- **Improve**: 当 `<Button>` 为 `link` 的时候的特殊处理。 ([#831])
|
|
1490
|
-
- **Improve**: 删除 `<Cascader>` 的 `parentSelectable` 属性的默认值。 ([#808])
|
|
1491
|
-
- **Chore**: 更新 eslint 配置。 ([#808])
|
|
1492
|
-
|
|
1493
|
-
[#831]: https://github.com/rsuite/rsuite/pull/831
|
|
1494
|
-
[#830]: https://github.com/rsuite/rsuite/pull/830
|
|
1495
|
-
[#828]: https://github.com/rsuite/rsuite/pull/828
|
|
1496
|
-
[#822]: https://github.com/rsuite/rsuite/pull/822
|
|
1497
|
-
[#817]: https://github.com/rsuite/rsuite/pull/817
|
|
1498
|
-
[#812]: https://github.com/rsuite/rsuite/pull/812
|
|
1499
|
-
[#810]: https://github.com/rsuite/rsuite/pull/810
|
|
1500
|
-
[#808]: https://github.com/rsuite/rsuite/pull/808
|
|
1501
|
-
[rsuite-table#13da7a9]: https://github.com/rsuite/rsuite-table/commit/476c7573172205ba8df976035a1e770298a33367
|
|
1502
|
-
[rsuite-table#120]: https://github.com/rsuite/rsuite-table/pull/124
|
|
1503
|
-
|
|
1504
|
-
# 4.2.0
|
|
1505
|
-
|
|
1506
|
-
> January 2, 2020
|
|
1507
|
-
|
|
1508
|
-
- **Feature**: Added support for `<RangeSlider>` ([#805])
|
|
1509
|
-
- **Feature**: Added support for `parentSelectable` on `<Cascader>`. ([#802])
|
|
1510
|
-
- **Feature**: Added support for Russian. ([#799])
|
|
1511
|
-
- **Feature**: Added option `image` to the `graph` property of `<Placeholder>` ([#755])
|
|
1512
|
-
- **Feature**: Added support for `draggable` on `<Uploader>`. ([#752])
|
|
1513
|
-
- **Improve**: Enhance `<Tooltip>` and `<Popover>` to support HTML attributes ([#806])
|
|
1514
|
-
- **Bugfix**: Fixed the height of the buttons in the `<InputGroup>`.([#807])
|
|
1515
|
-
- **Bugfix**: Fixed `Drawer` gap bug when in RTL mode.([#803])
|
|
1516
|
-
- **Bugfix**: Fixed `<TreePicker>` changing width does not work when setting `virtualized` props. ([#796])
|
|
1517
|
-
- **Bugfix**: Fixed `<TreePicker>` not showing child nodes when loading data asynchronously. ([#796])
|
|
1518
|
-
- **Bugfix**: Fixed `xsHidden` don't work as expected ([#795])
|
|
1519
|
-
|
|
1520
|
-
---
|
|
1521
|
-
|
|
1522
|
-
- **Feature**: 新增组件 `<RangeSlider>` ([#805])
|
|
1523
|
-
- **Feature**: `<Cascader>` 组件支持 `parentSelectable` 属性,让父节点可选择。([#802])
|
|
1524
|
-
- **Feature**: 添加对俄语支持。([#799])
|
|
1525
|
-
- **Feature**: `<Placeholder>`的 `graph` 属性值添加了 `image` 选项。 ([#755])
|
|
1526
|
-
- **Feature**: `<Uploader>` 组件支持 `draggable` 属性,可以拖拽上传文件。([#752])
|
|
1527
|
-
- **Improve**: `<Tooltip>` 和 `<Popover>` 支持 HTML 元素默认属性。 ([#806])
|
|
1528
|
-
- **Bugfix**: 修复了 `<InputGroup>` 内部按钮高度的问题。([#807])
|
|
1529
|
-
- **Bugfix**: 修复了 `<Drawer>` 在 RTL 模式下,左侧存在间隙的样式问题。([#803])
|
|
1530
|
-
- **Bugfix**: 修复了 `<TreePicker>` 在设置 `virtualized` 属性后,改变宽度无效的问题。 ([#796])
|
|
1531
|
-
- **Bugfix**: 修复了 `<TreePicker>` 在异步更新后,不能展示子节点的问题。 ([#796])
|
|
1532
|
-
- **Bugfix**: 修复了 `xsHidden` 属性不能按照预期显示的问题。 ([#795])
|
|
1533
|
-
|
|
1534
|
-
[#807]: https://github.com/rsuite/rsuite/pull/807
|
|
1535
|
-
[#806]: https://github.com/rsuite/rsuite/pull/806
|
|
1536
|
-
[#805]: https://github.com/rsuite/rsuite/pull/805
|
|
1537
|
-
[#803]: https://github.com/rsuite/rsuite/pull/803
|
|
1538
|
-
[#802]: https://github.com/rsuite/rsuite/pull/802
|
|
1539
|
-
[#799]: https://github.com/rsuite/rsuite/pull/799
|
|
1540
|
-
[#796]: https://github.com/rsuite/rsuite/pull/796
|
|
1541
|
-
[#795]: https://github.com/rsuite/rsuite/pull/795
|
|
1542
|
-
[#755]: https://github.com/rsuite/rsuite/pull/755
|
|
1543
|
-
[#752]: https://github.com/rsuite/rsuite/pull/752
|
|
1544
|
-
|
|
1545
|
-
# 4.1.5
|
|
1546
|
-
|
|
1547
|
-
> December 19, 2019
|
|
1548
|
-
|
|
1549
|
-
- **Feature**: Added support for `virtualized` on picker.([#786])
|
|
1550
|
-
- **Bugfix**: Fixed `<CheckTreePicker>` checkbox style issue.([#786])
|
|
1551
|
-
- **Bugfix**: Fixed RTL related bugs. ([#779])
|
|
1552
|
-
- **Bugfix**: Fixed `<Icon>` rotate props not working. ([#790])
|
|
1553
|
-
- **Improve**: Added parameter to Uploader's callback method. ([#781])
|
|
1554
|
-
- **Chore**: Added component prefix to `<Popover>` arrow. ([#791])
|
|
1555
|
-
- **Chore**: upgrade ESLint and format code. ([#780])
|
|
1556
|
-
|
|
1557
|
-
---
|
|
1558
|
-
|
|
1559
|
-
- **Feature**: Picker 相关组件添加了 `virtualized` 属性。([#786])
|
|
1560
|
-
- **Bugfix**: 修复了 `<CheckTreePicker>` 复选框样式问题。([#786])
|
|
1561
|
-
- **Bugfix**: 修复了 RTL 相关的 Bug。 ([#779])
|
|
1562
|
-
- **Bugfix**: 修复 `<Icon>` rotate 属性无效的问题。 ([#790])
|
|
1563
|
-
- **Improve**: 为 `<Uploader>` 的回调方法中添加参数 `XMLHttpRequest`。 ([#781])
|
|
1564
|
-
- **Chore**: 调整 `<Popover>` 内部样式的命名。 ([#791])
|
|
1565
|
-
- **Chore**: 更新了 ESLint。 ([#780])
|
|
1566
|
-
|
|
1567
|
-
[#792]: https://github.com/rsuite/rsuite/pull/792
|
|
1568
|
-
[#791]: https://github.com/rsuite/rsuite/pull/791
|
|
1569
|
-
[#790]: https://github.com/rsuite/rsuite/pull/790
|
|
1570
|
-
[#789]: https://github.com/rsuite/rsuite/pull/789
|
|
1571
|
-
[#786]: https://github.com/rsuite/rsuite/pull/786
|
|
1572
|
-
[#781]: https://github.com/rsuite/rsuite/pull/781
|
|
1573
|
-
[#780]: https://github.com/rsuite/rsuite/pull/780
|
|
1574
|
-
[#779]: https://github.com/rsuite/rsuite/pull/779
|
|
1575
|
-
|
|
1576
|
-
# 4.1.4
|
|
1577
|
-
|
|
1578
|
-
> December 12, 2019
|
|
1579
|
-
|
|
1580
|
-
- **Improve**: Improve the performance of virtualized table ([rsuite-table#120])
|
|
1581
|
-
- **Chore**: Adjusted the sideEffects configuration.. ([#774])
|
|
1582
|
-
|
|
1583
|
-
---
|
|
1584
|
-
|
|
1585
|
-
- **Improve**: 优化了 Table 组件在渲染大数据时候性能。 ([rsuite-table#120])
|
|
1586
|
-
- **Chore**: 调整了 sideEffects 配置。 ([#774])
|
|
1587
|
-
|
|
1588
|
-
[#774]: https://github.com/rsuite/rsuite/pull/774
|
|
1589
|
-
[rsuite-table#120]: https://github.com/rsuite/rsuite-table/pull/120
|
|
1590
|
-
|
|
1591
|
-
# 4.1.3
|
|
1592
|
-
|
|
1593
|
-
> December 5, 2019
|
|
1594
|
-
|
|
1595
|
-
- **Bugfix**: Fixed some style issues. ([#770],[#771],[#767])
|
|
1596
|
-
- **Bugfix**: Fixed the issue that events cannot be accessed in asynchronous callbacks. ([#763])
|
|
1597
|
-
- **Bugfix**: Fix RTL related bugs ([#757],[#760],[#769])
|
|
1598
|
-
- **Improve**: Improved the speed at which `<DateRangePicker`> opens. ([#768])
|
|
1599
|
-
|
|
1600
|
-
---
|
|
1601
|
-
|
|
1602
|
-
- **Bugfix**: 修复了一些样式问题。 ([#770],[#771],[#767])
|
|
1603
|
-
- **Bugfix**: 修复了无法在组件的异步回调中获取 Event 对象的问题。 ([#763])
|
|
1604
|
-
- **Bugfix**: 修复 RTL 相关 Bug。 ([#757],[#760],[#769])
|
|
1605
|
-
- **Improve**: 优化了 `<DateRangePicker>` 打开的速度。 ([#768])
|
|
1606
|
-
|
|
1607
|
-
[#771]: https://github.com/rsuite/rsuite/pull/771
|
|
1608
|
-
[#770]: https://github.com/rsuite/rsuite/pull/770
|
|
1609
|
-
[#769]: https://github.com/rsuite/rsuite/pull/769
|
|
1610
|
-
[#768]: https://github.com/rsuite/rsuite/pull/768
|
|
1611
|
-
[#767]: https://github.com/rsuite/rsuite/pull/767
|
|
1612
|
-
[#763]: https://github.com/rsuite/rsuite/pull/763
|
|
1613
|
-
[#760]: https://github.com/rsuite/rsuite/pull/760
|
|
1614
|
-
[#757]: https://github.com/rsuite/rsuite/pull/757
|
|
1615
|
-
|
|
1616
|
-
# 4.1.2
|
|
1617
|
-
|
|
1618
|
-
> November 29, 2019
|
|
1619
|
-
|
|
1620
|
-
- **Bugfix**: Fixed the issue where `<DateRangePicker>` was not disabled in the previous month and the next month. ([#747])
|
|
1621
|
-
- **Bugfix**: Fixed `<DateRangePicker>` panel collapse issue. ([#746])
|
|
1622
|
-
- **Bugfix**: Fixed multiple picker count label vertical align issue when set `size=lg` ([#742])
|
|
1623
|
-
- **Bugfix**: Fix FormControl typescript type definition error ([#741])
|
|
1624
|
-
- **Bugfix**: Fix RTL related bugs ([#732],[#733],[#734],[#743],[#748],[#749])
|
|
1625
|
-
- **Chore**: Update Schema typescript definition. ([#754])
|
|
1626
|
-
- **Chore**: Add a default value for the variable in `createConcatChildrenFunction`. ([#753])
|
|
1627
|
-
|
|
1628
|
-
---
|
|
1629
|
-
|
|
1630
|
-
- **Bugfix**: 修复 `<DateRangePicker>` 上一月与下一月未禁用的问题。 ([#747])
|
|
1631
|
-
- **Bugfix**: 修复了 `<DateRangePicker>` 面板折叠的问题。 ([#746])
|
|
1632
|
-
- **Bugfix**: 修复了设置 `size = lg` 时 `Picker` 计数标签垂直对齐的问题 ([#742])
|
|
1633
|
-
- **Bugfix**: 修复 `FormControl` 的 `Typescript` 类型定义错误 ([#741])
|
|
1634
|
-
- **Bugfix**: 修复 RTL 相关 Bug ([#732],[#733],[#734],[#743],[#748],[#749])
|
|
1635
|
-
- **Chore**: 更新 Schema typescript 类型定义。 ([#754])
|
|
1636
|
-
- **Chore**: 在 `createConcatChildrenFunction` 中为变量添加一个默认值。 ([#753])
|
|
1637
|
-
|
|
1638
|
-
[#754]: https://github.com/rsuite/rsuite/pull/754
|
|
1639
|
-
[#753]: https://github.com/rsuite/rsuite/pull/753
|
|
1640
|
-
[#749]: https://github.com/rsuite/rsuite/pull/749
|
|
1641
|
-
[#748]: https://github.com/rsuite/rsuite/pull/748
|
|
1642
|
-
[#747]: https://github.com/rsuite/rsuite/pull/747
|
|
1643
|
-
[#746]: https://github.com/rsuite/rsuite/pull/746
|
|
1644
|
-
[#743]: https://github.com/rsuite/rsuite/pull/743
|
|
1645
|
-
[#742]: https://github.com/rsuite/rsuite/pull/742
|
|
1646
|
-
[#741]: https://github.com/rsuite/rsuite/pull/741
|
|
1647
|
-
[#734]: https://github.com/rsuite/rsuite/pull/734
|
|
1648
|
-
[#733]: https://github.com/rsuite/rsuite/pull/733
|
|
1649
|
-
[#732]: https://github.com/rsuite/rsuite/pull/732
|
|
1650
|
-
|
|
1651
|
-
# 4.1.1
|
|
1652
|
-
|
|
1653
|
-
> November 14, 2019
|
|
1654
|
-
|
|
1655
|
-
- **Feature**: Added support for `affixHeader` on `<Table>`. ([#720],[rsuite-table#105])
|
|
1656
|
-
- **Feature**: Added support for `inline` on Cascader and MultiCascader ([#724])
|
|
1657
|
-
- **Bugfix**: Fixed a problem where the Chinese formatting characters were too long to cause time wrap on the DatePicker. ([#722])
|
|
1658
|
-
- **Bugfix**: Fixed checktree menu item text-algin styles issue. ([#718])
|
|
1659
|
-
- **Bugfix**: Fixed DatePicker format issue. ([#723])
|
|
1660
|
-
- **Bugfix**: Fixed an issue where the Table scroll bar was out of control.([rsuite-table#105])
|
|
1661
|
-
- **Chore**: Upgrade to typescirpt 3.7. ([#721])
|
|
1662
|
-
|
|
1663
|
-
---
|
|
1664
|
-
|
|
1665
|
-
- **Feature**: 在 `<Table>` 组件上新增 `affixHeader` 属性,可以让表头页面级固定。([#720],[rsuite-table#105])
|
|
1666
|
-
- **Feature**: 在 `<Cascader>` 与 `<MultiCascader>` 组件上新增 `inline` 属性。 ([#724])
|
|
1667
|
-
- **Bugfix**: 修复了日期中文格式化字符过长而导致 `<DatePicker>` 上的时间换行的问题。 ([#722])
|
|
1668
|
-
- **Bugfix**: 修复了 `<CheckTree>` 菜单项文本对齐样式问题。 ([#718])
|
|
1669
|
-
- **Bugfix**: 修复了 `<DatePicker>` 日期格式化问题。 ([#723])
|
|
1670
|
-
- **Bugfix**: 修复了 `<Table>` 滚动条失控的问题。 ([rsuite-table#105])
|
|
1671
|
-
- **Chore**: 升级 Typescirpt 至 3.7 版本。 ([#721])
|
|
1672
|
-
|
|
1673
|
-
[#724]: https://github.com/rsuite/rsuite/pull/724
|
|
1674
|
-
[#723]: https://github.com/rsuite/rsuite/pull/723
|
|
1675
|
-
[#722]: https://github.com/rsuite/rsuite/pull/722
|
|
1676
|
-
[#721]: https://github.com/rsuite/rsuite/pull/721
|
|
1677
|
-
[#720]: https://github.com/rsuite/rsuite/pull/720
|
|
1678
|
-
[#718]: https://github.com/rsuite/rsuite/pull/718
|
|
1679
|
-
[rsuite-table#106]: https://github.com/rsuite/rsuite-table/pull/106
|
|
1680
|
-
[rsuite-table#105]: https://github.com/rsuite/rsuite-table/pull/105
|
|
1681
|
-
|
|
1682
|
-
# 4.1.0
|
|
1683
|
-
|
|
1684
|
-
> November 7, 2019
|
|
1685
|
-
|
|
1686
|
-
- **Feature**: Add support for `<Carousel>`. ([#716])
|
|
1687
|
-
- **Feature**: Added Right-to-left supported. ([#715])
|
|
1688
|
-
- **Feature**: Add support for `renderItem` on the navigation component. ([#713])
|
|
1689
|
-
- **Feature**: Added for `fileListVisible` on `<Uploader>`. ([#709])
|
|
1690
|
-
- **Feature**: Added `shaded` props for `<Panel>`. ([#677])
|
|
1691
|
-
- **Feature**: Added support for `<Affix>` . ([#701])
|
|
1692
|
-
- **Feature**: Supported show mode and customizing time for `<Timeline>`. ([#666])
|
|
1693
|
-
- **Bugfix**: Fixed sideEffects configuration. ([#706])
|
|
1694
|
-
- **Bugfix**: Fixed when setting `sticky` and all options were selected to not render the menu. ([#710])
|
|
1695
|
-
|
|
1696
|
-
---
|
|
1697
|
-
|
|
1698
|
-
- **Feature**: 支持 `<Carousel>` 组件。 ([#716])
|
|
1699
|
-
- **Feature**: 支持 Right-to-left。 ([#715])
|
|
1700
|
-
- **Feature**: 导航相关组件添加 `renderItem` 属性。 ([#713])
|
|
1701
|
-
- **Feature**: 在 `<Uploader>` 组件上,添加支持 `fileListVisible` 属性,默认为 `true`, 设置 `false` 则不显示文件列表。 ([#709])
|
|
1702
|
-
- **Feature**: 在 `<Panel>`组件上,添加支持 `shaded`属性,用于显示阴影。 ([#677])
|
|
1703
|
-
- **Feature**: 支持 `<Affix>` 组件。 ([#701])
|
|
1704
|
-
- **Feature**: 在 `<Timeline>` 组件添加了更多显示模式。 ([#666])
|
|
1705
|
-
- **Bugfix**: 修复 sideEffects 配置错误导致样式文件丢失的问题。 ([#706])
|
|
1706
|
-
- **Bugfix**: 修复了当设置`sticky`并选择了所有选项的时候,不渲染菜单的问题。([#710])
|
|
1707
|
-
|
|
1708
|
-
[#716]: https://github.com/rsuite/rsuite/pull/716
|
|
1709
|
-
[#715]: https://github.com/rsuite/rsuite/pull/715
|
|
1710
|
-
[#713]: https://github.com/rsuite/rsuite/pull/713
|
|
1711
|
-
[#710]: https://github.com/rsuite/rsuite/pull/710
|
|
1712
|
-
[#709]: https://github.com/rsuite/rsuite/pull/709
|
|
1713
|
-
[#706]: https://github.com/rsuite/rsuite/pull/706
|
|
1714
|
-
[#701]: https://github.com/rsuite/rsuite/pull/701
|
|
1715
|
-
[#677]: https://github.com/rsuite/rsuite/pull/677
|
|
1716
|
-
[#666]: https://github.com/rsuite/rsuite/pull/666
|
|
1717
|
-
|
|
1718
|
-
# 4.0.5
|
|
1719
|
-
|
|
1720
|
-
> October 31, 2019
|
|
1721
|
-
|
|
1722
|
-
- **Improve**: Use context to refactor the logic of partial arguments. ([#695])
|
|
1723
|
-
- **Improve**: Adjust the implementation logic of `preventOverflow` in all Picker. ([rsuite-utils#14])
|
|
1724
|
-
- **Bugfix**: Fix `<Alert>` font color problem under dark theme. ([#697])
|
|
1725
|
-
- **Bugfix**: Fix the problem that can't extends in the ie10 browser. ([#694])
|
|
1726
|
-
|
|
1727
|
-
---
|
|
1728
|
-
|
|
1729
|
-
- **Improve**: 使用 context API 重构部分子父组件传参的逻辑。 ([#695])
|
|
1730
|
-
- **Improve**: 调整了所有 `Picker`组件的 `preventOverflow` 属性的实现方式。 ([rsuite-utils#14])
|
|
1731
|
-
- **Bugfix**: 修复 `<Alert>` 组件在 dark 主题下字体颜色问题。 ([#697])
|
|
1732
|
-
- **Bugfix**: 修复 ie10 兼容性问题,context API 在高价函数中未继承。 ([#694])
|
|
1733
|
-
|
|
1734
|
-
[#697]: https://github.com/rsuite/rsuite/pull/697
|
|
1735
|
-
[#695]: https://github.com/rsuite/rsuite/pull/695
|
|
1736
|
-
[#694]: https://github.com/rsuite/rsuite/pull/694
|
|
1737
|
-
[rsuite-utils#14]: https://github.com/rsuite/rsuite-utils/pull/14
|
|
1738
|
-
|
|
1739
|
-
# 4.0.4
|
|
1740
|
-
|
|
1741
|
-
> October 17, 2019
|
|
1742
|
-
|
|
1743
|
-
- **Bugfix**: Fixed a problem with the `Dropdown` and `Button`, the `ButtonGroup` is vertically aligned. ([#682])
|
|
1744
|
-
- **Bugfix**: Fixed an error when `CheckTreePicker` changed data. ([#681])
|
|
1745
|
-
- **Bugfix**: Fixed an issue where `isOneOf` was not valid in `Schema.Types.StringType`. ([schema-typed#18])
|
|
1746
|
-
- **Bugfix**: Fixed a misalignment of scroll position after `Table` data update. ([rsuite-table#100])
|
|
1747
|
-
- **Bugfix**: [TS] Fixed an issue with type definition errors in `List`. ([#678])
|
|
1748
|
-
|
|
1749
|
-
---
|
|
1750
|
-
|
|
1751
|
-
- **Bugfix**: 修复了 `Dropdown`, `Button` 与 `ButtonGroup` 垂直对齐的问题。 ([#682])
|
|
1752
|
-
- **Bugfix**: 修复了 `CheckTreePicker` 数据改变后出现错误的问题 ([#681])
|
|
1753
|
-
- **Bugfix**: 修复了 `Schema.Types.StringType` 中的 `isOneOf` 方法无效的问题。 ([schema-typed#18])
|
|
1754
|
-
- **Bugfix**: 修复了 `Table` 数据更新后滚动位置出现偏移。 ([rsuite-table#100])
|
|
1755
|
-
- **Bugfix**: [TS] 修复了 `List` 中类型定义错误的问题。 ([#678])
|
|
1756
|
-
|
|
1757
|
-
[#682]: https://github.com/rsuite/rsuite/pull/682
|
|
1758
|
-
[#681]: https://github.com/rsuite/rsuite/pull/681
|
|
1759
|
-
[#678]: https://github.com/rsuite/rsuite/pull/678
|
|
1760
|
-
[schema-typed#18]: https://github.com/rsuite/schema-typed/pull/18
|
|
1761
|
-
[rsuite-table#100]: https://github.com/rsuite/rsuite-table/pull/100
|
|
1762
|
-
|
|
1763
|
-
# 4.0.3
|
|
1764
|
-
|
|
1765
|
-
> October 10, 2019
|
|
1766
|
-
|
|
1767
|
-
- **Feature**: Added support for Korean ([#675])
|
|
1768
|
-
- **Improve**: The corresponding format date is displayed on the calendar according to different regional languages. ([#668])
|
|
1769
|
-
- **Bugfix**: Add the babel plugin for `lodash` and `date-fns`. ([#674])
|
|
1770
|
-
- **Bugfix**: Change the sm breakpoint to 480px in the Grid ([#671])
|
|
1771
|
-
- **Bugfix**: Fix the precision of floating point arithmetic in Slider. ([#660])
|
|
1772
|
-
- **Bugfix**: Fixed an issue with type definition errors in `List`. ([#676])
|
|
1773
|
-
|
|
1774
|
-
---
|
|
1775
|
-
|
|
1776
|
-
- **Feature**: 添加对韩语/朝鲜语的支持。 ([#675])
|
|
1777
|
-
- **Improve**: 根据不同地域语言在日历上显示对应格式日期。([#668])
|
|
1778
|
-
- **Bugfix**: 为 `lodash` 和 `date-fns` 添加 babel 插件,按需加载代码。 ([#674])
|
|
1779
|
-
- **Bugfix**: 在 `<Grid>` 中将 `sm` 断点更改为 `480px`。 ([#671])
|
|
1780
|
-
- **Bugfix**: 修复`<Slider>` 中浮点运算的精度问题。 ([#660])
|
|
1781
|
-
- **Bugfix**: [TS] 修复了 `List` 中类型定义错误的问题。 ([#676])
|
|
1782
|
-
|
|
1783
|
-
[#676]: https://github.com/rsuite/rsuite/pull/676
|
|
1784
|
-
[#675]: https://github.com/rsuite/rsuite/pull/675
|
|
1785
|
-
[#674]: https://github.com/rsuite/rsuite/pull/674
|
|
1786
|
-
[#671]: https://github.com/rsuite/rsuite/pull/671
|
|
1787
|
-
[#668]: https://github.com/rsuite/rsuite/pull/668
|
|
1788
|
-
[#660]: https://github.com/rsuite/rsuite/pull/660
|
|
1789
|
-
|
|
1790
|
-
# 4.0.2
|
|
1791
|
-
|
|
1792
|
-
> September 29, 2019
|
|
1793
|
-
|
|
1794
|
-
- **Feature**: Added language Traditional Chinese. ([#652])
|
|
1795
|
-
- **Feature**: Fixed an issue where the CheckTreePicker and TreePicker keyboard operations were invalid.
|
|
1796
|
-
- **Bugfix**: Fixed `<Cascader>` search styles ([#651])
|
|
1797
|
-
- **Bugfix**: Fixed uncontrolled issues with `<Cascader>` and `<MultiCascader>` ([#650])
|
|
1798
|
-
- **Bugfix**: Fixed `<Cascader>` crash while search RegExp special_characters. ([#648])
|
|
1799
|
-
- **Bugfix**: Fixed `<Panel>` title font size.([#644])
|
|
1800
|
-
- **Bugfix**: Fixed item styles when set active and disable. ([#641])
|
|
1801
|
-
- **Bugfix**: Fixed `<Sidebar>` can't collapse on Firefox browser ([#638])
|
|
1802
|
-
- **Bugfix**: Fixed `<Tree>` rendering error on the server side.([#637])
|
|
1803
|
-
- **Bugfix**: Fixed `<CheckTreePicker>` setting root node uncheckable error.([#637])
|
|
1804
|
-
- **Bugfix**: Fixed IE browser compatibility issue. ([#631],[#632])
|
|
1805
|
-
- **Bugfix**: Fixed a rendering error when the column in the `<Table>` was null. ([rsuite/rsuite-table#99])
|
|
1806
|
-
- **Bugfix**: Fixed a problem with scrolling white screen after changing height on `<Table>`. ([rsuite/rsuite-table#97])
|
|
1807
|
-
- **Bugfix**: [TS] Fixed type definitions for missing `Notification` and `Alert`. ([#633])
|
|
1808
|
-
- **Bugfix**: [TS] Fixed `List` component not exported. ([#625])
|
|
1809
|
-
|
|
1810
|
-
---
|
|
1811
|
-
|
|
1812
|
-
- **Feature**: 添加组件对繁体中文的支持。 ([#652])
|
|
1813
|
-
- **Bugfix**: 修复了 CheckTreePicker 和 TreePicker 键盘操作无效的问题。
|
|
1814
|
-
- **Bugfix**: 修复了 `<Cascader>` 搜索列表样式问题。 ([#651])
|
|
1815
|
-
- **Bugfix**: 修复了 `<Cascader>` 和 `<MultiCascader>` 不受控的问题。 ([#650])
|
|
1816
|
-
- **Bugfix**: 修复了 `<Cascader>` 搜索正则表达元字符报错的问题。 ([#648])
|
|
1817
|
-
- **Bugfix**: 修复了 `<Panel>` 标题字体大小与设计不符的问题。([#644])
|
|
1818
|
-
- **Bugfix**: 修复了选项在设置 `active` 或者 `disable` 后的样式问题。 ([#641])
|
|
1819
|
-
- **Bugfix**: 修复了 `<Sidebar>`在 Firefox 浏览器不能收缩的问题。 ([#638])
|
|
1820
|
-
- **Bugfix**: 修复了 `<Tree>` 在服务端渲染报错的问。([#637])
|
|
1821
|
-
- **Bugfix**: 修复了 `<CheckTreePicker>` 设置根节点不可点击后出现的渲染问题。([#637])
|
|
1822
|
-
- **Bugfix**: 修复了 IE 浏览器兼容性问题。 ([#631],[#632])
|
|
1823
|
-
- **Bugfix**: 修复了 `<Table>` 的列设置中存在 `null` 时候,导致的渲染出错问题。 ([rsuite/rsuite-table#99])
|
|
1824
|
-
- **Bugfix**: 修复了 `<Table>` 在改变高度后出现白屏的问题。 ([rsuite/rsuite-table#97])
|
|
1825
|
-
- **Bugfix**: [TS] 修复了 `Notification` 和 `Alert` 中缺少的方法定义。 ([#633])
|
|
1826
|
-
- **Bugfix**: [TS] 修复了 `List` 组件找不到定义。 ([#625])
|
|
1827
|
-
|
|
1828
|
-
[#653]: https://github.com/rsuite/rsuite/pull/653
|
|
1829
|
-
[#652]: https://github.com/rsuite/rsuite/pull/652
|
|
1830
|
-
[#651]: https://github.com/rsuite/rsuite/pull/651
|
|
1831
|
-
[#650]: https://github.com/rsuite/rsuite/pull/650
|
|
1832
|
-
[#648]: https://github.com/rsuite/rsuite/pull/648
|
|
1833
|
-
[#644]: https://github.com/rsuite/rsuite/pull/644
|
|
1834
|
-
[#641]: https://github.com/rsuite/rsuite/pull/641
|
|
1835
|
-
[#638]: https://github.com/rsuite/rsuite/pull/638
|
|
1836
|
-
[#637]: https://github.com/rsuite/rsuite/pull/637
|
|
1837
|
-
[#633]: https://github.com/rsuite/rsuite/pull/633
|
|
1838
|
-
[#632]: https://github.com/rsuite/rsuite/pull/632
|
|
1839
|
-
[#631]: https://github.com/rsuite/rsuite/pull/631
|
|
1840
|
-
[#625]: https://github.com/rsuite/rsuite/pull/625
|
|
1841
|
-
[rsuite/rsuite-table#99]: https://github.com/rsuite/rsuite-table/pull/99
|
|
1842
|
-
[rsuite/rsuite-table#97]: https://github.com/rsuite/rsuite-table/pull/97
|
|
1843
|
-
|
|
1844
|
-
# 4.0.1
|
|
1845
|
-
|
|
1846
|
-
> September 19, 2019
|
|
1847
|
-
|
|
1848
|
-
- **Feature**: Support `defaultCalendarValue` on `<DateRangePicker>` ([#610])
|
|
1849
|
-
- **Improve**: Add ARIA for accessibility ([#612],[#613])
|
|
1850
|
-
- **Improve**: Use grab cursors for sortable List.Item ([#617])
|
|
1851
|
-
- **Bugfix**: Fixed ESM build error ([#611])
|
|
1852
|
-
- **Bugfix**: Fixed component not re-rendered after `sortType` update on `<Table>`. ([rsuite/rsuite-table#96])
|
|
1853
|
-
- **Bugfix**: Fixed the position of the scroll bar when the height of the `<Table>` changes. ([rsuite/rsuite-table#95])
|
|
1854
|
-
- **Bugfix**: Fixed validation of merged cells for custom children in `<Table>` ([rsuite/rsuite-table#94])
|
|
1855
|
-
- **Bugfix**: Fixed unable to find node on an unmounted component in `<Dropdown>` ([rsuite/rsuite-utils@f205799])
|
|
1856
|
-
|
|
1857
|
-
---
|
|
1858
|
-
|
|
1859
|
-
- **Feature**: `<DateRangePicker>` 支持 `defaultCalendarValue` 属性。([#610])
|
|
1860
|
-
- **Improve**: 为可访问性添加 ARIA。 ([#612],[#613])
|
|
1861
|
-
- **Improve**: 调整 List.Item 拖拽时候的光标为 grab。 ([#617])
|
|
1862
|
-
- **Bugfix**: 修复 ESM 构建时候报错。 ([#611])
|
|
1863
|
-
- **Bugfix**: 修复在 `<Table>` 上 `sortType` 更新后没有重新渲染的组件。 ([rsuite/rsuite-table#96])
|
|
1864
|
-
- **Bugfix**: 修复 `<Table>` 高度变化后更新滚动条位置 ([rsuite/rsuite-table#95])
|
|
1865
|
-
- **Bugfix**: 修复 `<Table>` 中自定义 `children` 后,合并单元格的校验逻辑 ([rsuite/rsuite-table#94])
|
|
1866
|
-
- **Bugfix**: 修复 `<Dropdown>` 中报错"无法在已卸载组件上找到节点"([rsuite/rsuite-utils@f205799])
|
|
1867
|
-
|
|
1868
|
-
[#617]: https://github.com/rsuite/rsuite/pull/617
|
|
1869
|
-
[#613]: https://github.com/rsuite/rsuite/pull/613
|
|
1870
|
-
[#612]: https://github.com/rsuite/rsuite/pull/612
|
|
1871
|
-
[#611]: https://github.com/rsuite/rsuite/pull/611
|
|
1872
|
-
[#610]: https://github.com/rsuite/rsuite/pull/610
|
|
1873
|
-
[rsuite/rsuite-table#96]: https://github.com/rsuite/rsuite-table/pull/96
|
|
1874
|
-
[rsuite/rsuite-table#95]: https://github.com/rsuite/rsuite-table/pull/95
|
|
1875
|
-
[rsuite/rsuite-table#94]: https://github.com/rsuite/rsuite-table/pull/94
|
|
1876
|
-
[rsuite/rsuite-utils@f205799]: https://github.com/rsuite/rsuite-utils/commit/f205799796595d78dff990b0f740c8c4a9e3d581
|
|
1877
|
-
|
|
1878
|
-
# 4.0.0
|
|
1879
|
-
|
|
1880
|
-
> September 9, 2019
|
|
1881
|
-
|
|
1882
|
-
- **Feature**: Add `<Placeholder>`. ([#418],[#420],[#423])
|
|
1883
|
-
- **Feature**: Add `<List>`. ([#451])
|
|
1884
|
-
- **Feature**: Add `<Calendar>`. ([#492])
|
|
1885
|
-
- **Feature**: Add `<Avatar>`.([#486])
|
|
1886
|
-
- **Feature**: Add `<Badge>`.([#484])
|
|
1887
|
-
- **Feature**: Support `size` on all `Picker`.([#494])
|
|
1888
|
-
- **Feature**: Support dark theme.([#544])
|
|
1889
|
-
- **Feature**: Support for asynchronous validation in `<Form>`, based on Schema. ([#570])
|
|
1890
|
-
- **Feature**: Support for expandItemValues on `<TreePicker>` and `<CheckTreePicker>`.([#569])
|
|
1891
|
-
- **Feature**: Support `readOnly` prop on `<FormControl>`. ([#432])
|
|
1892
|
-
- **Feature**: Support `plaintext` prop on `<FormControl>`. ([#448],[#449])
|
|
1893
|
-
- **Feature**: `<Whisper>` and all `Picker` components support the `preventOverfow` property to prevent overflow. ([#443])
|
|
1894
|
-
- **Improve**: Adjust swatch algorithm to adjust font color contrast. ([#433])
|
|
1895
|
-
- **Improve**: Migrate from Flow to Typescript. ([#531])
|
|
1896
|
-
- **Improve**: Support showWeekNumbers on <DatePicker> and <DateRangePicker>. ([#526] @viart)
|
|
1897
|
-
- **Breaking**: Adjust the value of `<Whisper>` with all `Picker` components `placement` properties.([#443])
|
|
1898
|
-
- **Bugfix**: Fixed an issue where the `<Uploader>` upload file was larger than 1GB.([#536])
|
|
1899
|
-
- **Bugfix**: Fixed compatibility issue with `<Input>` on IE browser display. ([#507])
|
|
1900
|
-
- **Bugfix**: Fixed `<InputPicker>` on the keyboard Delete key will clear the input worthy question. ([#577])
|
|
1901
|
-
- **Bugfix**: Fixed an issue where `<Dropdown>` set `toggleComponentClass={Button}` background style error.([#525])
|
|
1902
|
-
- **Bugfix**: Fixed an issue where styles were missing when introduced on demand.([#567])
|
|
1903
|
-
- **Bugfix**: Fixed an issue where `<DatePicker>` disabled day and inactive month were inconsistent.([#595])
|
|
1904
|
-
- **Bugfix**: Fixed an issue where the scrollbar position was not updated after the `<Table>` data was updated.([#table-92])
|
|
1905
|
-
- **Bugfix**: Fixed `<Table>` property `expandedRowKeys` The update value is not controlled. ([#table-90])
|
|
1906
|
-
- **Bugfix**: Fixed callback `<Table>` property `onRowClick`'s callback parameter is missing `event`. ([#table-89])
|
|
1907
|
-
- **Bugfix**: Fixed support for `focus` events by the `<Form>` component.([#566])
|
|
1908
|
-
- **Bugfix**: Modified the default separator for `<Breadcrumb>`.([#543])
|
|
1909
|
-
- **Bugfix**: Fixed an issue where `<Slider>` did not update the position of the handle after the change from hidden to display state.([#542])
|
|
1910
|
-
|
|
1911
|
-
---
|
|
1912
|
-
|
|
1913
|
-
- **Feature**: 支持 `<Placeholder>` 组件。 ([#418],[#420],[#423])
|
|
1914
|
-
- **Feature**: 支持 `<List>` 组件。 ([#451])
|
|
1915
|
-
- **Feature**: 支持 `<Calendar>` 组件。([#492])
|
|
1916
|
-
- **Feature**: 支持 `<Avatar>` 组件。([#486])
|
|
1917
|
-
- **Feature**: 支持 `<Badge>` 组件。([#484])
|
|
1918
|
-
- **Feature**: `<Picker>` 组件支持 `size` 属性。([#494])
|
|
1919
|
-
- **Feature**: 支持 dark 主题。([#544])
|
|
1920
|
-
- **Feature**: `<Form>`组件基于 Schema 支持异步校验。([#570])
|
|
1921
|
-
- **Feature**: `<TreePicker>` 与 `<CheckTreePicker>` 支持 expandItemValues 属性。([#569])
|
|
1922
|
-
- **Feature**: `<FormControl>` 组件支持 `readOnly` 属性。 ([#432])
|
|
1923
|
-
- **Feature**: `<FormControl>` 组件支持 `plaintext` 属性。 ([#448],[#449])
|
|
1924
|
-
- **Feature**: `<Whisper>` 组件与所有的 `Picker` 组件支持 `preventOverfow` 属性,防止溢出。
|
|
1925
|
-
- **Improve**: 调整色板算法,调整字体颜色对比度。 ([#433])
|
|
1926
|
-
- **Improve**: 从 Flow 迁移到 Typescript。 ([#531])
|
|
1927
|
-
- **Improve**: `<DatePicker>`和`<DateRangePicker>`组件支持 showWeekNumbers 属性,显示周数 。([#526] @viart)
|
|
1928
|
-
- **Breaking**: 调整 `<Whisper>` 组件与所有的 `<Picker>` 组件 `placement` 属性的值。([#443])
|
|
1929
|
-
- **Bugfix**: 修复了 `<Uploader>` 上传文件大于 1GB 显示问题。([#536])
|
|
1930
|
-
- **Bugfix**: 修复了 `<Input>` 在 IE 浏览器显示上的兼容性问题。 ([#507])
|
|
1931
|
-
- **Bugfix**: 修复了 `<InputPicker>` 在键盘 Delete 键会清除输入值得问题。([#577])
|
|
1932
|
-
- **Bugfix**: 修复了 `<Dropdown>` 设置 `toggleComponentClass={Button}` 背景样式错误的问题。([#525])
|
|
1933
|
-
- **Bugfix**: 修复了按需引入时候样式缺失的问题。 ([#567])
|
|
1934
|
-
- **Bugfix**: 修复了 `<DatePicker>` 禁用日与禁用月不一致的问题。([#595])
|
|
1935
|
-
- **Bugfix**: 修复了 `<Table>` 数据更新后滚动条位置不更新的问题。([#table-92])
|
|
1936
|
-
- **Bugfix**: 修复了 `<Table>` 属性 `expandedRowKeys` 更新值不受控。 ([#table-90])
|
|
1937
|
-
- **Bugfix**: 修复了 `<Table>` 属性 `onRowClick` 的回调参数缺少 `event`。 ([#table-89])
|
|
1938
|
-
- **Bugfix**: 修复了 `<Form>` 组件对 `focus` 事件的支持。([#566])
|
|
1939
|
-
- **Bugfix**: 修改了 `<Breadcrumb>` 的默认分隔符。([#543])
|
|
1940
|
-
- **Bugfix**: 修复了 `<Slider>` 在从隐藏到显示状态变化后,手柄的位置不更新的问题。([#542])
|
|
1941
|
-
|
|
1942
|
-
[#595]: https://github.com/rsuite/rsuite/pull/595
|
|
1943
|
-
[#577]: https://github.com/rsuite/rsuite/pull/577
|
|
1944
|
-
[#570]: https://github.com/rsuite/rsuite/pull/570
|
|
1945
|
-
[#569]: https://github.com/rsuite/rsuite/pull/569
|
|
1946
|
-
[#567]: https://github.com/rsuite/rsuite/pull/567
|
|
1947
|
-
[#566]: https://github.com/rsuite/rsuite/pull/566
|
|
1948
|
-
[#544]: https://github.com/rsuite/rsuite/pull/544
|
|
1949
|
-
[#543]: https://github.com/rsuite/rsuite/pull/543
|
|
1950
|
-
[#542]: https://github.com/rsuite/rsuite/pull/542
|
|
1951
|
-
[#536]: https://github.com/rsuite/rsuite/pull/536
|
|
1952
|
-
[#525]: https://github.com/rsuite/rsuite/pull/525
|
|
1953
|
-
[#507]: https://github.com/rsuite/rsuite/pull/507
|
|
1954
|
-
[#494]: https://github.com/rsuite/rsuite/pull/494
|
|
1955
|
-
[#492]: https://github.com/rsuite/rsuite/pull/492
|
|
1956
|
-
[#486]: https://github.com/rsuite/rsuite/pull/486
|
|
1957
|
-
[#484]: https://github.com/rsuite/rsuite/pull/484
|
|
1958
|
-
[#451]: https://github.com/rsuite/rsuite/pull/451
|
|
1959
|
-
[#449]: https://github.com/rsuite/rsuite/pull/449
|
|
1960
|
-
[#448]: https://github.com/rsuite/rsuite/pull/448
|
|
1961
|
-
[#443]: https://github.com/rsuite/rsuite/pull/443
|
|
1962
|
-
[#433]: https://github.com/rsuite/rsuite/pull/433
|
|
1963
|
-
[#432]: https://github.com/rsuite/rsuite/pull/432
|
|
1964
|
-
[#423]: https://github.com/rsuite/rsuite/pull/423
|
|
1965
|
-
[#420]: https://github.com/rsuite/rsuite/pull/420
|
|
1966
|
-
[#418]: https://github.com/rsuite/rsuite/pull/418
|
|
1967
|
-
[#table-92]: https://github.com/rsuite/rsuite-table/pull/92
|
|
1968
|
-
[#table-90]: https://github.com/rsuite/rsuite-table/pull/90
|
|
1969
|
-
[#table-89]: https://github.com/rsuite/rsuite-table/pull/89
|