acud 1.0.3 → 1.0.4

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.
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export default function useCombinedRefs(...refs: any[]): React.MutableRefObject<undefined>;
@@ -0,0 +1,22 @@
1
+ import React from 'react';
2
+ export default function useCombinedRefs() {
3
+ for (var _len = arguments.length, refs = new Array(_len), _key = 0; _key < _len; _key++) {
4
+ refs[_key] = arguments[_key];
5
+ }
6
+
7
+ var targetRef = React.useRef();
8
+ React.useEffect(function () {
9
+ refs.forEach(function (ref) {
10
+ if (!ref) {
11
+ return;
12
+ }
13
+
14
+ if (typeof ref === 'function') {
15
+ ref(targetRef.current);
16
+ } else {
17
+ ref.current = targetRef.current;
18
+ }
19
+ });
20
+ }, [refs]);
21
+ return targetRef;
22
+ }
package/es/input/Input.js CHANGED
@@ -24,35 +24,13 @@ import React, { useImperativeHandle, Fragment, useEffect, useState } from 'react
24
24
  import classNames from 'classnames';
25
25
  import { MultiToneClear } from 'acud-icon';
26
26
  import SizeContext from '../config-provider/SizeContext';
27
+ import useCombinedRefs from '../_util/hooks/useCombinedRefs';
27
28
  import Popover from '../popover';
28
29
  export var resolveTargetValue = function resolveTargetValue(event, value) {
29
30
  var newEvent = Object.create(event);
30
31
  newEvent.target.value = value;
31
32
  return newEvent;
32
33
  };
33
-
34
- function useCombinedRefs() {
35
- for (var _len = arguments.length, refs = new Array(_len), _key = 0; _key < _len; _key++) {
36
- refs[_key] = arguments[_key];
37
- }
38
-
39
- var targetRef = React.useRef();
40
- React.useEffect(function () {
41
- refs.forEach(function (ref) {
42
- if (!ref) {
43
- return;
44
- }
45
-
46
- if (typeof ref === 'function') {
47
- ref(targetRef.current);
48
- } else {
49
- ref.current = targetRef.current;
50
- }
51
- });
52
- }, [refs]);
53
- return targetRef;
54
- }
55
-
56
34
  var Input = /*#__PURE__*/React.forwardRef(function (props, ref) {
57
35
  var _classNames3;
58
36
 
@@ -42,10 +42,9 @@ var TextArea = /*#__PURE__*/React.forwardRef(function (props, ref) {
42
42
  onKeyDown = props.onKeyDown,
43
43
  onFocus = props.onFocus,
44
44
  onBlur = props.onBlur,
45
- style = props.style,
46
45
  _props$allowClear = props.allowClear,
47
46
  allowClear = _props$allowClear === void 0 ? true : _props$allowClear,
48
- rest = __rest(props, ["prefixCls", "placeholder", "className", "limitLength", "readonly", "autoSize", "onPressEnter", "onKeyDown", "onFocus", "onBlur", "style", "allowClear"]);
47
+ rest = __rest(props, ["prefixCls", "placeholder", "className", "limitLength", "readonly", "autoSize", "onPressEnter", "onKeyDown", "onFocus", "onBlur", "allowClear"]);
49
48
 
50
49
  var _useMergedState = useMergedState(props.defaultValue, {
51
50
  value: props.value
@@ -132,8 +131,7 @@ var TextArea = /*#__PURE__*/React.forwardRef(function (props, ref) {
132
131
  };
133
132
 
134
133
  return /*#__PURE__*/React.createElement("div", {
135
- className: "".concat(prefixCls, "-outer"),
136
- style: style
134
+ className: "".concat(prefixCls, "-outer")
137
135
  }, /*#__PURE__*/React.createElement(RcTextArea, _extends({}, rest, {
138
136
  ref: ref,
139
137
  placeholder: placeholder,
@@ -22,6 +22,7 @@ import { OutlinedSearch, OutlinedLoading } from 'acud-icon';
22
22
  import useMergedState from "rc-util/es/hooks/useMergedState";
23
23
  import { ConfigContext } from '../config-provider';
24
24
  import Select from '../select';
25
+ import useCombinedRefs from '../_util/hooks/useCombinedRefs';
25
26
  import Input from '../input';
26
27
  import Button from '../button';
27
28
  var Option = Select.Option;
@@ -69,7 +70,8 @@ var Search = /*#__PURE__*/React.forwardRef(function (props, ref) {
69
70
  var searchIconClass = "".concat(prefixCls, "-icon");
70
71
  var searchLoadingIconClass = "".concat(prefixCls, "-loading-icon"); // ref
71
72
 
72
- var inputRef = React.useRef(ref); // 函数
73
+ var inputRef = React.useRef(null);
74
+ var combinedRef = useCombinedRefs(ref, inputRef); // 函数
73
75
 
74
76
  var onChange = useCallback(function (e) {
75
77
  if (e && e.target && e.type === 'click' && customSearch) {
@@ -81,13 +83,13 @@ var Search = /*#__PURE__*/React.forwardRef(function (props, ref) {
81
83
  var onSearch = useCallback(function (e) {
82
84
  var _a;
83
85
 
84
- var value = (_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.value;
86
+ var value = (_a = combinedRef.current) === null || _a === void 0 ? void 0 : _a.value;
85
87
  var realValue = ifMultiple ? {
86
88
  type: multipleMergeValue,
87
89
  value: value
88
90
  } : value;
89
91
  customSearch && customSearch(realValue, e);
90
- }, [ifMultiple, customSearch, multipleMergeValue]);
92
+ }, [combinedRef, ifMultiple, multipleMergeValue, customSearch]);
91
93
  var onChangeMultiple = useCallback(function (value) {
92
94
  // 如果是不受控,就自己调用set
93
95
  if (!ifControlMutipleValue) {
@@ -134,7 +136,7 @@ var Search = /*#__PURE__*/React.forwardRef(function (props, ref) {
134
136
 
135
137
  var baseProps = _extends(_extends({}, otherProps), {
136
138
  size: size,
137
- ref: inputRef,
139
+ ref: combinedRef,
138
140
  onChange: onChange,
139
141
  disabled: disabled,
140
142
  onPressEnter: onSearch,
@@ -158,7 +160,7 @@ var Search = /*#__PURE__*/React.forwardRef(function (props, ref) {
158
160
  return /*#__PURE__*/React.createElement("span", {
159
161
  className: classes
160
162
  }, /*#__PURE__*/React.createElement(Input, _extends({}, realProps, {
161
- ref: inputRef
163
+ ref: combinedRef
162
164
  })), enterButton && button);
163
165
  });
164
166
  export default Search;
@@ -9,6 +9,9 @@
9
9
  /* 垂直 */
10
10
  /* 序号水平 */
11
11
  /* 序号垂直 */
12
+ ::-webkit-search-cancel-button {
13
+ display: none;
14
+ }
12
15
  .acud-input-search-multiple .acud-input {
13
16
  padding-left: 0;
14
17
  }
@@ -4,6 +4,9 @@
4
4
  @input-search-multiple-prefix-cls: ~'@{acud-prefix}-input-search-multiple';
5
5
  @input-search: ~'@{acud-prefix}-input-search';
6
6
 
7
+ ::-webkit-search-cancel-button{
8
+ display: none;
9
+ }
7
10
  .@{input-search-multiple-prefix-cls} {
8
11
  .acud-input {
9
12
  padding-left: 0;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export default function useCombinedRefs(...refs: any[]): React.MutableRefObject<undefined>;
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = useCombinedRefs;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
11
+
12
+ function useCombinedRefs() {
13
+ for (var _len = arguments.length, refs = new Array(_len), _key = 0; _key < _len; _key++) {
14
+ refs[_key] = arguments[_key];
15
+ }
16
+
17
+ var targetRef = _react["default"].useRef();
18
+
19
+ _react["default"].useEffect(function () {
20
+ refs.forEach(function (ref) {
21
+ if (!ref) {
22
+ return;
23
+ }
24
+
25
+ if (typeof ref === 'function') {
26
+ ref(targetRef.current);
27
+ } else {
28
+ ref.current = targetRef.current;
29
+ }
30
+ });
31
+ }, [refs]);
32
+
33
+ return targetRef;
34
+ }
@@ -23,6 +23,8 @@ var _acudIcon = require("acud-icon");
23
23
 
24
24
  var _SizeContext = _interopRequireDefault(require("../config-provider/SizeContext"));
25
25
 
26
+ var _useCombinedRefs = _interopRequireDefault(require("../_util/hooks/useCombinedRefs"));
27
+
26
28
  var _popover = _interopRequireDefault(require("../popover"));
27
29
 
28
30
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
@@ -55,30 +57,6 @@ var resolveTargetValue = function resolveTargetValue(event, value) {
55
57
 
56
58
  exports.resolveTargetValue = resolveTargetValue;
57
59
 
58
- function useCombinedRefs() {
59
- for (var _len = arguments.length, refs = new Array(_len), _key = 0; _key < _len; _key++) {
60
- refs[_key] = arguments[_key];
61
- }
62
-
63
- var targetRef = _react["default"].useRef();
64
-
65
- _react["default"].useEffect(function () {
66
- refs.forEach(function (ref) {
67
- if (!ref) {
68
- return;
69
- }
70
-
71
- if (typeof ref === 'function') {
72
- ref(targetRef.current);
73
- } else {
74
- ref.current = targetRef.current;
75
- }
76
- });
77
- }, [refs]);
78
-
79
- return targetRef;
80
- }
81
-
82
60
  var Input = /*#__PURE__*/_react["default"].forwardRef(function (props, ref) {
83
61
  var _classNames3;
84
62
 
@@ -133,7 +111,7 @@ var Input = /*#__PURE__*/_react["default"].forwardRef(function (props, ref) {
133
111
 
134
112
  var innerRef = _react["default"].useRef(null);
135
113
 
136
- var combinedRef = useCombinedRefs(ref, innerRef);
114
+ var combinedRef = (0, _useCombinedRefs["default"])(ref, innerRef);
137
115
  (0, _react.useImperativeHandle)(ref, function () {
138
116
  return {
139
117
  blur: function blur() {
@@ -65,10 +65,9 @@ var TextArea = /*#__PURE__*/_react["default"].forwardRef(function (props, ref) {
65
65
  onKeyDown = props.onKeyDown,
66
66
  onFocus = props.onFocus,
67
67
  onBlur = props.onBlur,
68
- style = props.style,
69
68
  _props$allowClear = props.allowClear,
70
69
  allowClear = _props$allowClear === void 0 ? true : _props$allowClear,
71
- rest = __rest(props, ["prefixCls", "placeholder", "className", "limitLength", "readonly", "autoSize", "onPressEnter", "onKeyDown", "onFocus", "onBlur", "style", "allowClear"]);
70
+ rest = __rest(props, ["prefixCls", "placeholder", "className", "limitLength", "readonly", "autoSize", "onPressEnter", "onKeyDown", "onFocus", "onBlur", "allowClear"]);
72
71
 
73
72
  var _useMergedState = (0, _useMergedState3["default"])(props.defaultValue, {
74
73
  value: props.value
@@ -155,8 +154,7 @@ var TextArea = /*#__PURE__*/_react["default"].forwardRef(function (props, ref) {
155
154
  };
156
155
 
157
156
  return /*#__PURE__*/_react["default"].createElement("div", {
158
- className: "".concat(prefixCls, "-outer"),
159
- style: style
157
+ className: "".concat(prefixCls, "-outer")
160
158
  }, /*#__PURE__*/_react["default"].createElement(_rcTextarea["default"], (0, _extends2["default"])({}, rest, {
161
159
  ref: ref,
162
160
  placeholder: placeholder,
@@ -29,6 +29,8 @@ var _configProvider = require("../config-provider");
29
29
 
30
30
  var _select = _interopRequireDefault(require("../select"));
31
31
 
32
+ var _useCombinedRefs = _interopRequireDefault(require("../_util/hooks/useCombinedRefs"));
33
+
32
34
  var _input = _interopRequireDefault(require("../input"));
33
35
 
34
36
  var _button = _interopRequireDefault(require("../button"));
@@ -96,8 +98,9 @@ var Search = /*#__PURE__*/_react["default"].forwardRef(function (props, ref) {
96
98
  var searchIconClass = "".concat(prefixCls, "-icon");
97
99
  var searchLoadingIconClass = "".concat(prefixCls, "-loading-icon"); // ref
98
100
 
99
- var inputRef = _react["default"].useRef(ref); // 函数
101
+ var inputRef = _react["default"].useRef(null);
100
102
 
103
+ var combinedRef = (0, _useCombinedRefs["default"])(ref, inputRef); // 函数
101
104
 
102
105
  var onChange = (0, _react.useCallback)(function (e) {
103
106
  if (e && e.target && e.type === 'click' && customSearch) {
@@ -109,13 +112,13 @@ var Search = /*#__PURE__*/_react["default"].forwardRef(function (props, ref) {
109
112
  var onSearch = (0, _react.useCallback)(function (e) {
110
113
  var _a;
111
114
 
112
- var value = (_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.value;
115
+ var value = (_a = combinedRef.current) === null || _a === void 0 ? void 0 : _a.value;
113
116
  var realValue = ifMultiple ? {
114
117
  type: multipleMergeValue,
115
118
  value: value
116
119
  } : value;
117
120
  customSearch && customSearch(realValue, e);
118
- }, [ifMultiple, customSearch, multipleMergeValue]);
121
+ }, [combinedRef, ifMultiple, multipleMergeValue, customSearch]);
119
122
  var onChangeMultiple = (0, _react.useCallback)(function (value) {
120
123
  // 如果是不受控,就自己调用set
121
124
  if (!ifControlMutipleValue) {
@@ -162,7 +165,7 @@ var Search = /*#__PURE__*/_react["default"].forwardRef(function (props, ref) {
162
165
 
163
166
  var baseProps = (0, _extends2["default"])((0, _extends2["default"])({}, otherProps), {
164
167
  size: size,
165
- ref: inputRef,
168
+ ref: combinedRef,
166
169
  onChange: onChange,
167
170
  disabled: disabled,
168
171
  onPressEnter: onSearch,
@@ -185,7 +188,7 @@ var Search = /*#__PURE__*/_react["default"].forwardRef(function (props, ref) {
185
188
  return /*#__PURE__*/_react["default"].createElement("span", {
186
189
  className: classes
187
190
  }, /*#__PURE__*/_react["default"].createElement(_input["default"], (0, _extends2["default"])({}, realProps, {
188
- ref: inputRef
191
+ ref: combinedRef
189
192
  })), enterButton && button);
190
193
  });
191
194
 
@@ -9,6 +9,9 @@
9
9
  /* 垂直 */
10
10
  /* 序号水平 */
11
11
  /* 序号垂直 */
12
+ ::-webkit-search-cancel-button {
13
+ display: none;
14
+ }
12
15
  .acud-input-search-multiple .acud-input {
13
16
  padding-left: 0;
14
17
  }
@@ -4,6 +4,9 @@
4
4
  @input-search-multiple-prefix-cls: ~'@{acud-prefix}-input-search-multiple';
5
5
  @input-search: ~'@{acud-prefix}-input-search';
6
6
 
7
+ ::-webkit-search-cancel-button{
8
+ display: none;
9
+ }
7
10
  .@{input-search-multiple-prefix-cls} {
8
11
  .acud-input {
9
12
  padding-left: 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "acud",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "acg react 组件库",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
package/CHANGELOG.md DELETED
@@ -1,187 +0,0 @@
1
- ## ACUD CHANGES LOG
2
-
3
- ### 1.0.3 (2022-07-07)
4
-
5
-
6
- ### Features
7
-
8
- * 评分标签圆角修改 ([513746c](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/513746c9f18c8aab46cb20cfb1bd0e07c279d17a))
9
- * 新增表单组件及周边 ([bb07ea3](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/bb07ea3f3b0f0100ab687ad9ce12e5a6fd64e986))
10
- * acud-19 代码规范问题修复 ([9db5582](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/9db55828c1f4c00ec81b004cdda2d70dff0fde2b))
11
- * acud-19 增加数字输入框 ([5af95eb](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/5af95eb3782fd488c219d09345d643b88186edce))
12
- * acud-19 InputNumber文案修改 ([2fbb7d3](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/2fbb7d34b8b3f4de2b3127fd463bcc54547eaebe))
13
- * acud-28 增加Tootip文字提示 ([3a72d16](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/3a72d1686d279ef6109da35a3f7abc0175fec565))
14
- * acud-33 增加Badge组件 ([bc49458](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/bc4945849fccdecf026fa11cd6d9c636eed7c66e))
15
- * acud-37 增加Alert组件 ([24cb7b2](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/24cb7b2d65edd4acc8c23ddc583526e21fbb17b1))
16
- * acud-38 新增Loading组件 ([13db5da](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/13db5da9b0d68eed03c5092f85449ab436103d68))
17
- * acud-40 add Popover组件 ([e933480](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/e9334805fa31972fbf7f17f93287df69cc9e90a7))
18
- * acud22 添加toast组件 ([503be62](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/503be6207ac941fcdcdffa173cc81f1dbc57fdc8))
19
- * add component carousel ([6960c34](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/6960c34f2d95168aa7272124195671819c922777))
20
- * add component/DatePicker ([4e2aac3](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/4e2aac3ab25a5199481aae271a38e19b8ea836c9))
21
- * add component/Tag ([13d5dba](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/13d5dbaee7809f5b06c6a845a8b62ddcfd5e46ae))
22
- * add multiple search ([27593cb](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/27593cb2e7d47742221f3681e208568fb72c0a37))
23
- * UE-Issues-1601 数字输入框新增对称模式 ([67bc325](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/67bc325078dccbd4dafc2b566512990ef23a9e1f))
24
- * UE-Issues-1615 抽屉组件样式更新 ([4c2c2a3](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/4c2c2a370ac4d70da1b76969211d1d5903a6fce5))
25
- * UE-Issues-1616 徽标优化 ([473a87f](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/473a87feb40c1bd014424654d2a6bbf6071bea8f))
26
- * UE-Issues-1616 徽标优化 ([9c4a2d5](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/9c4a2d5f1dfc3e20a025a4e5ddcbd96c1fb04683))
27
- * UE-Issues-1620 折叠面板样式更新 ([8f131c3](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/8f131c308701f79cc508d801afe0f791cc25b667))
28
- * UE-Issues-1621 文字提示去除不合适的示例 ([6d14389](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/6d143897e7d389a9bbb12025ac3d08fd24989114))
29
- * UE-Issues-1621 文字提示UE优化 ([d75d02c](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/d75d02cbf303f4b2746949d695d57d3b685f9e45))
30
- * UE-Issues-1621 修复Tooltip的某些子组件样式被覆盖问题 ([60cb1e5](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/60cb1e56e3c37b81cccd8f05ae7043febf9e3b9f))
31
- * UE-Issues-1621 修复Tooltip组件在子组件中存在disabled属性时, 不触发鼠标事件问题 ([75a4b7f](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/75a4b7fd306cea37924e7df348b08612a9d66a6a))
32
- * update datepicker & tag UE走查问题 ([e25a29b](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/e25a29b3145c6a5add978bd5bff21d21f7f32de1))
33
- * update tag UE走查 ([690221e](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/690221e18b24b21ad10101965a139c675d1c933f))
34
-
35
-
36
- ### Bug Fixes
37
-
38
- * 标签组件问题修复 UE-Issues-1617 ([ba2fb9a](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/ba2fb9ad3081a3f223d5df30c050c003e583e5f5))
39
- * 抽屉组件props类型定义增加onClick UE-Issues-1615 ([bd51f99](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/bd51f99cf172e18c6e2adbd8603ca0942f68f6cc))
40
- * **进度条:** ACG-CSC-Plat-2761 UE走查修改 ([b9799af](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/b9799af063a3bba206acea6748449b79c68a777f))
41
- * **进度条:** ACG-CSC-Plat-2761 UE走查修改(2) ([ee46c05](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/ee46c05965943da4c32cc30d28989e223327fe43))
42
- * **进度条:** ACG-CSC-Plat-2761 UE走查修改(3) ([c366bd0](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/c366bd0600914cb870500a888317bf8c8bcdca34))
43
- * 聚焦时取消显示蓝框 UE-Issues-1248 ([8d95d78](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/8d95d78ef5f4afabf2e5e8bcd5eed0298a1e8fe2))
44
- * 蓝色边框不确定性出现 UE-Issues-1271, 体验优化UE-Issues-1263 ([bf8e80d](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/bf8e80df2e3cbba9b3b27a2c7718a889999d6cd7))
45
- * acud-37 Alert组件icon更新 ([57e278b](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/57e278be2464a40905e7c4ca95b078049b843f9d))
46
- * acud-38 样式修复 ([2cac5b5](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/2cac5b5bb4f9f4ab94d107ac1f533a4ec3d592d5))
47
- * acud-38 显示bug ([0ea0707](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/0ea07075d6b0f030ad07ce0dcfb5370e4b14071b))
48
- * acud-38 export方式 ([c85d575](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/c85d5756643e75eb635af1a0e8459f9be6c7b818))
49
- * acud-38 UE设计稿改动 ([6b80eb8](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/6b80eb87cbe378163cd52174fa74e52f2bf443b7))
50
- * acud-40 Popover组件代码缩进优化 ([74e7e5d](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/74e7e5dadf265e48b873fb6b5c9d0d33164b4861))
51
- * badge demo简化 ([3399c73](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/3399c73e826347b7aa6d21eaeda8375555be1378))
52
- * datePicker focus方法ACG-CSC-Plat-3590 ([09eb842](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/09eb84283a047b0b18ac0343f08dd7789f9a3026))
53
- * Form Component support optional ([c884334](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/c884334718c1261959230673feca28459fd22238))
54
- * Modal default footer ([1ec3343](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/1ec33435f53a13595ae3b77c0fac8339cbf547b0))
55
- * **progress:** ACG-CSC-Plat-2761 修复环境进度条示例中文字重叠 ([8af3b6d](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/8af3b6d19e43d8bbf42eb887fe9d01b2a2006903))
56
- * **progress:** ACG-CSC-Plat-2761 UE走查修改 ([797e9a1](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/797e9a1d2311c9f1b5e4fe2acfb55b29fd1bc93b))
57
- * **progress:** ACG-CSC-Plat-2761 UE走查修改 ([9cf7c05](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/9cf7c056b2e27168621b21ed9ee58bd6adb3801f))
58
- * switch tip content ([4ea5449](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/4ea54490b4cfbf201551180419dc220483706d41))
59
- * table filter reset UE-Issues-1884 ([a5c4983](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/a5c4983c876615eefe2dc361d77f6b62b4b3d977))
60
- * Tag标签组件UE走查问题修复 UE-Issues-1617 ([f1e8e8b](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/f1e8e8bb831d9c7d6688df4169873e789a1453b3))
61
- * UE-Issues-1337 Popover组件修改为圆角 ([2cd42f9](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/2cd42f9d346a4f0df2beaf90bbbb043f42e2990e))
62
- * UE-Issues-1337 Popover组件增加demo&修改一些代码格式 ([64afd70](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/64afd70f52f87f09e31c165c0ac741a83f4cc925))
63
- * UE-Issues-1593 [Bug] 步骤条 ([514e2c5](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/514e2c53f56bae90bd460ac3eb9ecddcf3053cb6))
64
- * UE-Issues-1593 步骤条 走查样式间距调整 ([e28037d](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/e28037dc6e9db14c3d00cc242da8882610dc046b))
65
- * UE-Issues-1601 解决数字输入框失焦问题 ([1337e89](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/1337e89235f144c44190d3f478f3640960e6540f))
66
- * UE-Issues-1601 数字输入框使用rc7.3.4版本带precision的计算方法有误 ([0145404](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/01454041c61ae1b70ec03c6ed472446c611219fb))
67
- * UE-Issues-1601 数字输入框修复UE问题 ([0675e7b](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/0675e7b0b0fd575066c49839a062f2cafbb38a10))
68
- * UE-Issues-1601 数字输入框修复Wrapper组件无法显示浮窗问题 ([d20c6d1](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/d20c6d1e3716d1f59738ec839bcbc3a6f2f4ab2d))
69
- * UE-Issues-1601 数字输入框placeholder颜色异常 ([0062056](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/0062056946a0919ab8b557ce53e148241117cd46))
70
- * UE-Issues-1601 数字输入框UE优化 ([3a7ff00](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/3a7ff00ff911d18b0f9c2c3bb63fa91ec029c3eb))
71
- * UE-Issues-1601 数字输入框UE优化 ([aa84bc6](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/aa84bc67f7d429076353b06fb704dbace3bd2fcf))
72
- * UE-Issues-1611 调整表单弹窗报错背景色信息 ([1d364ab](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/1d364ab62da5b4720ee346ad041a51376b2e99a0))
73
- * UE-Issues-1611 修复表单检查异常时Textarea背景框颜色异常 ([c9ba031](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/c9ba03141adda55fbc0d5b9baae7aabfc64b8c05))
74
- * UE-Issues-1611 form表单二次走查问题修复 ([6e6d410](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/6e6d4106a47b43b14f6150787b9111323c04b858))
75
- * UE-Issues-1611 Form表单走查问题Fixed ([9e048c2](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/9e048c20c3133ea5f79d464dee22503614d7b72a))
76
- * UE-Issues-1611 Form控件UE走查问题修复 ([5d03926](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/5d0392626d609f2a8c2ac989247bc74f0267311f))
77
- * UE-Issues-1616 徽标 ([2c0afa0](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/2c0afa0c6a94d341cdf1a636c6466825fa7e7bb9))
78
- * UE-Issues-1616 徽标样式优化 ([6cbfb93](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/6cbfb9304462128d487e4f8bf1b83e357ca2edcc))
79
- * UE-Issues-1621 [Bug] 文字提示 ([1c81aed](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/1c81aed55159f264f9c73092e852b314af1168be))
80
- * UE-Issues-1621 删除容易误解的样例 ([3af02f7](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/3af02f70ee124da40d1f2b623dd199e88c0378a3))
81
- * UE-Issues-1622 [Bug] popover ([4d7a700](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/4d7a700c4e862f88a0ec24d539ce24db1c671931))
82
- * UE-Issues-1622 popover 样式修改 ([f1b7139](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/f1b7139c8b0d5e6cf9007d1a6b71f3c45a1e1d99))
83
- * UE-Issues-1622 popover basic demo修改 ([e00234e](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/e00234eadff11a6653a90431db8d61f65ffab4e5))
84
- * UE-Issues-1622 popover demo修改& hover修改为click ([e539feb](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/e539febda5935722d6628f6166995fdbbd813ec4))
85
- * UE-Issues-1622 popover switch 样式修改 ([6d8cee7](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/6d8cee7012555a5ec48722daa0b55f4d0f387ccb))
86
- * UE-Issues-1625 警示 ([27d3af8](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/27d3af8866b37060932b06871d1e3b103e447c4d))
87
- * UE-Issues-1628 样式修复+svg补充+样式补充 ([8e412c0](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/8e412c0e56fd0e987601805ab920b2ac0602ad2f))
88
- * UE-Issues-1790 数字输入框二次走查问题修复 ([27b6e86](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/27b6e862ee2e1df260859659e77502fdec33e25f))
89
- * UE-Issues-1896 Form demo 更新,label 样式调整 ([09f7dea](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/09f7deaefcc456afa9c17e15b6385fd67765f718))
90
- * UE-Issues-1896 label mark占用物理像素 ([a48ec09](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/a48ec093db38c96771736cd4fcbd940c45dda1a1))
91
- * update Switch md ([d65d9fb](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/d65d9fbe248225063a49e6aeda963e717ab05dfd))
92
- * update switch style && docs ([a3f33c1](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/a3f33c16e618fd3561689fa64dfeb61cde403bfd))
93
-
94
- ### 1.0.2 (2022-06-29)
95
-
96
-
97
- ### Features
98
-
99
- * 评分标签圆角修改 ([513746c](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/513746c9f18c8aab46cb20cfb1bd0e07c279d17a))
100
- * 新增表单组件及周边 ([bb07ea3](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/bb07ea3f3b0f0100ab687ad9ce12e5a6fd64e986))
101
- * acud-19 代码规范问题修复 ([9db5582](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/9db55828c1f4c00ec81b004cdda2d70dff0fde2b))
102
- * acud-19 增加数字输入框 ([5af95eb](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/5af95eb3782fd488c219d09345d643b88186edce))
103
- * acud-19 InputNumber文案修改 ([2fbb7d3](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/2fbb7d34b8b3f4de2b3127fd463bcc54547eaebe))
104
- * acud-28 增加Tootip文字提示 ([3a72d16](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/3a72d1686d279ef6109da35a3f7abc0175fec565))
105
- * acud-33 增加Badge组件 ([bc49458](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/bc4945849fccdecf026fa11cd6d9c636eed7c66e))
106
- * acud-37 增加Alert组件 ([24cb7b2](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/24cb7b2d65edd4acc8c23ddc583526e21fbb17b1))
107
- * acud-38 新增Loading组件 ([13db5da](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/13db5da9b0d68eed03c5092f85449ab436103d68))
108
- * acud-40 add Popover组件 ([e933480](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/e9334805fa31972fbf7f17f93287df69cc9e90a7))
109
- * acud22 添加toast组件 ([503be62](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/503be6207ac941fcdcdffa173cc81f1dbc57fdc8))
110
- * add component carousel ([6960c34](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/6960c34f2d95168aa7272124195671819c922777))
111
- * add component/DatePicker ([4e2aac3](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/4e2aac3ab25a5199481aae271a38e19b8ea836c9))
112
- * add component/Tag ([13d5dba](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/13d5dbaee7809f5b06c6a845a8b62ddcfd5e46ae))
113
- * add multiple search ([27593cb](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/27593cb2e7d47742221f3681e208568fb72c0a37))
114
- * UE-Issues-1601 数字输入框新增对称模式 ([67bc325](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/67bc325078dccbd4dafc2b566512990ef23a9e1f))
115
- * UE-Issues-1615 抽屉组件样式更新 ([4c2c2a3](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/4c2c2a370ac4d70da1b76969211d1d5903a6fce5))
116
- * UE-Issues-1616 徽标优化 ([473a87f](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/473a87feb40c1bd014424654d2a6bbf6071bea8f))
117
- * UE-Issues-1616 徽标优化 ([9c4a2d5](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/9c4a2d5f1dfc3e20a025a4e5ddcbd96c1fb04683))
118
- * UE-Issues-1620 折叠面板样式更新 ([8f131c3](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/8f131c308701f79cc508d801afe0f791cc25b667))
119
- * UE-Issues-1621 文字提示去除不合适的示例 ([6d14389](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/6d143897e7d389a9bbb12025ac3d08fd24989114))
120
- * UE-Issues-1621 文字提示UE优化 ([d75d02c](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/d75d02cbf303f4b2746949d695d57d3b685f9e45))
121
- * UE-Issues-1621 修复Tooltip的某些子组件样式被覆盖问题 ([60cb1e5](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/60cb1e56e3c37b81cccd8f05ae7043febf9e3b9f))
122
- * UE-Issues-1621 修复Tooltip组件在子组件中存在disabled属性时, 不触发鼠标事件问题 ([75a4b7f](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/75a4b7fd306cea37924e7df348b08612a9d66a6a))
123
- * update datepicker & tag UE走查问题 ([e25a29b](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/e25a29b3145c6a5add978bd5bff21d21f7f32de1))
124
- * update tag UE走查 ([690221e](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/690221e18b24b21ad10101965a139c675d1c933f))
125
-
126
-
127
- ### Bug Fixes
128
-
129
- * 标签组件问题修复 UE-Issues-1617 ([ba2fb9a](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/ba2fb9ad3081a3f223d5df30c050c003e583e5f5))
130
- * 抽屉组件props类型定义增加onClick UE-Issues-1615 ([bd51f99](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/bd51f99cf172e18c6e2adbd8603ca0942f68f6cc))
131
- * **进度条:** ACG-CSC-Plat-2761 UE走查修改 ([b9799af](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/b9799af063a3bba206acea6748449b79c68a777f))
132
- * **进度条:** ACG-CSC-Plat-2761 UE走查修改(2) ([ee46c05](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/ee46c05965943da4c32cc30d28989e223327fe43))
133
- * **进度条:** ACG-CSC-Plat-2761 UE走查修改(3) ([c366bd0](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/c366bd0600914cb870500a888317bf8c8bcdca34))
134
- * 聚焦时取消显示蓝框 UE-Issues-1248 ([8d95d78](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/8d95d78ef5f4afabf2e5e8bcd5eed0298a1e8fe2))
135
- * 蓝色边框不确定性出现 UE-Issues-1271, 体验优化UE-Issues-1263 ([bf8e80d](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/bf8e80df2e3cbba9b3b27a2c7718a889999d6cd7))
136
- * acud-37 Alert组件icon更新 ([57e278b](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/57e278be2464a40905e7c4ca95b078049b843f9d))
137
- * acud-38 样式修复 ([2cac5b5](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/2cac5b5bb4f9f4ab94d107ac1f533a4ec3d592d5))
138
- * acud-38 显示bug ([0ea0707](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/0ea07075d6b0f030ad07ce0dcfb5370e4b14071b))
139
- * acud-38 export方式 ([c85d575](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/c85d5756643e75eb635af1a0e8459f9be6c7b818))
140
- * acud-38 UE设计稿改动 ([6b80eb8](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/6b80eb87cbe378163cd52174fa74e52f2bf443b7))
141
- * acud-40 Popover组件代码缩进优化 ([74e7e5d](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/74e7e5dadf265e48b873fb6b5c9d0d33164b4861))
142
- * badge demo简化 ([3399c73](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/3399c73e826347b7aa6d21eaeda8375555be1378))
143
- * datePicker focus方法ACG-CSC-Plat-3590 ([09eb842](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/09eb84283a047b0b18ac0343f08dd7789f9a3026))
144
- * Form Component support optional ([c884334](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/c884334718c1261959230673feca28459fd22238))
145
- * Modal default footer ([1ec3343](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/1ec33435f53a13595ae3b77c0fac8339cbf547b0))
146
- * **progress:** ACG-CSC-Plat-2761 修复环境进度条示例中文字重叠 ([8af3b6d](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/8af3b6d19e43d8bbf42eb887fe9d01b2a2006903))
147
- * **progress:** ACG-CSC-Plat-2761 UE走查修改 ([797e9a1](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/797e9a1d2311c9f1b5e4fe2acfb55b29fd1bc93b))
148
- * **progress:** ACG-CSC-Plat-2761 UE走查修改 ([9cf7c05](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/9cf7c056b2e27168621b21ed9ee58bd6adb3801f))
149
- * switch tip content ([4ea5449](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/4ea54490b4cfbf201551180419dc220483706d41))
150
- * Tag标签组件UE走查问题修复 UE-Issues-1617 ([f1e8e8b](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/f1e8e8bb831d9c7d6688df4169873e789a1453b3))
151
- * UE-Issues-1337 Popover组件修改为圆角 ([2cd42f9](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/2cd42f9d346a4f0df2beaf90bbbb043f42e2990e))
152
- * UE-Issues-1337 Popover组件增加demo&修改一些代码格式 ([64afd70](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/64afd70f52f87f09e31c165c0ac741a83f4cc925))
153
- * UE-Issues-1593 [Bug] 步骤条 ([514e2c5](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/514e2c53f56bae90bd460ac3eb9ecddcf3053cb6))
154
- * UE-Issues-1593 步骤条 走查样式间距调整 ([e28037d](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/e28037dc6e9db14c3d00cc242da8882610dc046b))
155
- * UE-Issues-1601 解决数字输入框失焦问题 ([1337e89](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/1337e89235f144c44190d3f478f3640960e6540f))
156
- * UE-Issues-1601 数字输入框使用rc7.3.4版本带precision的计算方法有误 ([0145404](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/01454041c61ae1b70ec03c6ed472446c611219fb))
157
- * UE-Issues-1601 数字输入框修复UE问题 ([0675e7b](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/0675e7b0b0fd575066c49839a062f2cafbb38a10))
158
- * UE-Issues-1601 数字输入框修复Wrapper组件无法显示浮窗问题 ([d20c6d1](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/d20c6d1e3716d1f59738ec839bcbc3a6f2f4ab2d))
159
- * UE-Issues-1601 数字输入框placeholder颜色异常 ([0062056](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/0062056946a0919ab8b557ce53e148241117cd46))
160
- * UE-Issues-1601 数字输入框UE优化 ([3a7ff00](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/3a7ff00ff911d18b0f9c2c3bb63fa91ec029c3eb))
161
- * UE-Issues-1601 数字输入框UE优化 ([aa84bc6](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/aa84bc67f7d429076353b06fb704dbace3bd2fcf))
162
- * UE-Issues-1611 调整表单弹窗报错背景色信息 ([1d364ab](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/1d364ab62da5b4720ee346ad041a51376b2e99a0))
163
- * UE-Issues-1611 修复表单检查异常时Textarea背景框颜色异常 ([c9ba031](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/c9ba03141adda55fbc0d5b9baae7aabfc64b8c05))
164
- * UE-Issues-1611 form表单二次走查问题修复 ([6e6d410](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/6e6d4106a47b43b14f6150787b9111323c04b858))
165
- * UE-Issues-1611 Form表单走查问题Fixed ([9e048c2](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/9e048c20c3133ea5f79d464dee22503614d7b72a))
166
- * UE-Issues-1611 Form控件UE走查问题修复 ([5d03926](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/5d0392626d609f2a8c2ac989247bc74f0267311f))
167
- * UE-Issues-1616 徽标 ([2c0afa0](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/2c0afa0c6a94d341cdf1a636c6466825fa7e7bb9))
168
- * UE-Issues-1616 徽标样式优化 ([6cbfb93](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/6cbfb9304462128d487e4f8bf1b83e357ca2edcc))
169
- * UE-Issues-1621 [Bug] 文字提示 ([1c81aed](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/1c81aed55159f264f9c73092e852b314af1168be))
170
- * UE-Issues-1621 删除容易误解的样例 ([3af02f7](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/3af02f70ee124da40d1f2b623dd199e88c0378a3))
171
- * UE-Issues-1622 [Bug] popover ([4d7a700](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/4d7a700c4e862f88a0ec24d539ce24db1c671931))
172
- * UE-Issues-1622 popover 样式修改 ([f1b7139](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/f1b7139c8b0d5e6cf9007d1a6b71f3c45a1e1d99))
173
- * UE-Issues-1622 popover basic demo修改 ([e00234e](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/e00234eadff11a6653a90431db8d61f65ffab4e5))
174
- * UE-Issues-1622 popover demo修改& hover修改为click ([e539feb](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/e539febda5935722d6628f6166995fdbbd813ec4))
175
- * UE-Issues-1622 popover switch 样式修改 ([6d8cee7](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/6d8cee7012555a5ec48722daa0b55f4d0f387ccb))
176
- * UE-Issues-1625 警示 ([27d3af8](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/27d3af8866b37060932b06871d1e3b103e447c4d))
177
- * UE-Issues-1628 样式修复+svg补充+样式补充 ([8e412c0](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/8e412c0e56fd0e987601805ab920b2ac0602ad2f))
178
- * UE-Issues-1790 数字输入框二次走查问题修复 ([27b6e86](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/27b6e862ee2e1df260859659e77502fdec33e25f))
179
- * UE-Issues-1896 Form demo 更新,label 样式调整 ([09f7dea](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/09f7deaefcc456afa9c17e15b6385fd67765f718))
180
- * UE-Issues-1896 label mark占用物理像素 ([a48ec09](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/a48ec093db38c96771736cd4fcbd940c45dda1a1))
181
- * update Switch md ([d65d9fb](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/d65d9fbe248225063a49e6aeda963e717ab05dfd))
182
- * update switch style && docs ([a3f33c1](https://icode.baidu.com:8235/baidu/bce-console/react-ui/commit/a3f33c16e618fd3561689fa64dfeb61cde403bfd))
183
-
184
- # 0.0.16
185
- `2021-12-24`
186
- 1. fix input、textarea的clear不触发上层的onchange的bug
187
- 2. fix textarea的length 在有值得情况下初始化的时候展示0的bug