@linzjs/lui 16.1.1 → 16.2.0
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/lui.esm.js +1 -1
- package/dist/lui.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [16.2.0](https://github.com/linz/lui/compare/v16.1.1...v16.2.0) (2022-03-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* hideLabel ([#634](https://github.com/linz/lui/issues/634)) ([003a187](https://github.com/linz/lui/commit/003a187b2c95fb62a6410d660acfcca74ac20f62))
|
|
7
|
+
|
|
1
8
|
## [16.1.1](https://github.com/linz/lui/compare/v16.1.0...v16.1.1) (2022-03-23)
|
|
2
9
|
|
|
3
10
|
|
package/dist/index.js
CHANGED
|
@@ -55861,7 +55861,7 @@ var LuiFilterContainer = function (props) {
|
|
|
55861
55861
|
showFilter && (React__default["default"].createElement("div", { className: 'LuiFilterContainer-filter-container LuiDeprecatedForms' },
|
|
55862
55862
|
isFilterClearable && (React__default["default"].createElement(ClearableLuiTextInput, { label: 'Filter', inputProps: {
|
|
55863
55863
|
placeholder: 'Type to filter',
|
|
55864
|
-
}, onValueChange: function (value) { return setFilter(value); } })),
|
|
55864
|
+
}, hideLabel: true, onValueChange: function (value) { return setFilter(value); } })),
|
|
55865
55865
|
!isFilterClearable && (React__default["default"].createElement("input", { type: "text", placeholder: "Type to filter", value: filter, onChange: function (e) { return setFilter(e.target.value); } })))),
|
|
55866
55866
|
renderFunction(filterFunction(filter))));
|
|
55867
55867
|
};
|