rsuite 5.6.5 → 5.6.6
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 +7 -0
- package/cjs/InputNumber/InputNumber.js +2 -0
- package/cjs/Uploader/index.d.ts +1 -1
- package/dist/rsuite.js +1 -1
- package/dist/rsuite.min.js +1 -1
- package/dist/rsuite.min.js.map +1 -1
- package/esm/InputNumber/InputNumber.js +2 -0
- package/esm/Uploader/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -267,11 +267,13 @@ var InputNumber = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
267
267
|
}), prefixElement && /*#__PURE__*/React.createElement(InputGroupAddon, null, prefixElement), input, /*#__PURE__*/React.createElement("span", {
|
|
268
268
|
className: prefix('btn-group-vertical')
|
|
269
269
|
}, /*#__PURE__*/React.createElement(Button, {
|
|
270
|
+
tabIndex: -1,
|
|
270
271
|
appearance: buttonAppearance,
|
|
271
272
|
className: prefix('touchspin-up'),
|
|
272
273
|
onClick: handlePlus,
|
|
273
274
|
disabled: disabledUpButton || disabled || readOnly
|
|
274
275
|
}, /*#__PURE__*/React.createElement(AngleUpIcon, null)), /*#__PURE__*/React.createElement(Button, {
|
|
276
|
+
tabIndex: -1,
|
|
275
277
|
appearance: buttonAppearance,
|
|
276
278
|
className: prefix('touchspin-down'),
|
|
277
279
|
onClick: handleMinus,
|
package/esm/Uploader/index.d.ts
CHANGED