@linzjs/lui 11.6.0 → 11.7.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/lui.cjs.development.js +1 -1
- package/dist/lui.cjs.development.js.map +1 -1
- package/dist/lui.cjs.production.min.js +1 -1
- package/dist/lui.cjs.production.min.js.map +1 -1
- package/dist/lui.css +13 -1
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +1 -1
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiFormElements/LuiTextInput/LuiTextInput.scss +16 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [11.7.0](https://github.com/linz/lui/compare/v11.6.0...v11.7.0) (2022-01-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **LuiTextInput:** Label font styling change ([#508](https://github.com/linz/lui/issues/508)) ([460a800](https://github.com/linz/lui/commit/460a80061933f2945fb5f8fb13fc976b581730bc))
|
|
7
|
+
|
|
1
8
|
# [11.6.0](https://github.com/linz/lui/compare/v11.5.0...v11.6.0) (2022-01-11)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -984,7 +984,7 @@ var LuiTextInput = function LuiTextInput(props) {
|
|
|
984
984
|
}, props.mandatory && React__default.createElement("span", {
|
|
985
985
|
className: "LuiTextInput-mandatory"
|
|
986
986
|
}, "*"), React__default.createElement("span", {
|
|
987
|
-
className: clsx(props.hideLabel ? 'LuiScreenReadersOnly' : '')
|
|
987
|
+
className: 'LuiTextInput-label-text ' + clsx(props.hideLabel ? 'LuiScreenReadersOnly' : '')
|
|
988
988
|
}, props.label), React__default.createElement("span", {
|
|
989
989
|
className: "LuiTextInput-inputWrapper"
|
|
990
990
|
}, React__default.createElement("input", Object.assign({
|