tabler-react-2 0.1.138 → 0.1.139
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/dist/input/input.js
CHANGED
|
@@ -98,7 +98,7 @@ var Input = exports.Input = function Input(_ref) {
|
|
|
98
98
|
autoComplete: autocomplete
|
|
99
99
|
}, inputProps)) : /*#__PURE__*/_react["default"].createElement("input", _extends({
|
|
100
100
|
type: type,
|
|
101
|
-
className: (0, _classnames["default"])("form-control", variant && "border-".concat(variant), variant && "text-".concat(variant), variant && "bg-".concat(variant, "-lt"), size && "form-control-".concat(size)),
|
|
101
|
+
className: (0, _classnames["default"])("form-control", variant && "border-".concat(variant), variant && "text-".concat(variant), variant && "bg-".concat(variant, "-lt"), size && "form-control-".concat(size), props.inputClassName),
|
|
102
102
|
placeholder: placeholder,
|
|
103
103
|
value: value !== null && value !== void 0 ? value : "" // Always ensure value is a string
|
|
104
104
|
,
|
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
title: Changelog
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
+
# 0.1.138
|
|
6
|
+
|
|
7
|
+
- Added `autofocusSearch` prop to the `DropdownInput` component.
|
|
8
|
+
|
|
5
9
|
# 0.1.137
|
|
6
10
|
|
|
7
11
|
- Added `showIconInPrompt` prop to the `DropdownInput` component and allowed the `className` prop to be passed to the `DropdownInput` component.
|