@useblu/ocean-react 1.38.1 → 1.38.2
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 +6 -0
- package/index.es.js +2 -2
- package/index.es.js.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.38.2](https://github.com/ocean-ds/ocean-web/compare/v1.38.1...v1.38.2) (2022-12-01)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- pass input value attribute ([#1044](https://github.com/ocean-ds/ocean-web/issues/1044)) ([b44dc7a](https://github.com/ocean-ds/ocean-web/commit/b44dc7a892c924472071ec764ee2a8209f9458b1))
|
|
11
|
+
|
|
6
12
|
## [1.38.1](https://github.com/ocean-ds/ocean-web/compare/v1.38.0...v1.38.1) (2022-11-16)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/index.es.js
CHANGED
|
@@ -8248,12 +8248,12 @@ var Search = e.forwardRef(function Input(_a, ref) {
|
|
|
8248
8248
|
defaultValue: defaultValue,
|
|
8249
8249
|
value: value,
|
|
8250
8250
|
onChange: onChange
|
|
8251
|
-
}),
|
|
8251
|
+
}), filled = _b.filled, handleChange = _b.handleChange;
|
|
8252
8252
|
return (e.createElement(FormControl, { htmlFor: id, disabled: disabled },
|
|
8253
8253
|
e.createElement("div", { className: classNames('ods-search', filled && 'ods-search--filled', disabled && 'ods-search--disabled', className) },
|
|
8254
8254
|
e.createElement("div", { className: "ods-search__adornment" },
|
|
8255
8255
|
e.createElement(jt, null)),
|
|
8256
|
-
e.createElement("input", __assign$1({ ref: ref, type: "text", id: id, disabled: disabled, onChange: handleChange, placeholder: placeholder, defaultValue: defaultValue, value:
|
|
8256
|
+
e.createElement("input", __assign$1({ ref: ref, type: "text", id: id, disabled: disabled, onChange: handleChange, placeholder: placeholder, defaultValue: defaultValue, value: value }, rest)),
|
|
8257
8257
|
filled && (e.createElement(IconButton, { "data-testid": "close", onClick: function () {
|
|
8258
8258
|
var e = {
|
|
8259
8259
|
target: { value: '' }
|