@linzjs/lui 16.2.2 → 16.2.3
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/components/LuiFormElements/LuiCheckboxInput/LuiCheckboxInput.d.ts +1 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/lui.css +33 -9
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +2 -1
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiBadge/LuiBadge.scss +1 -1
- package/dist/scss/Components/LuiError/LuiError.scss +5 -5
- package/dist/scss/Components/LuiFormElements/LuiCheckboxInput/LuiCheckboxInput.scss +40 -24
- package/dist/scss/Components/LuiFormElements/LuiFileInputBox.scss +7 -7
- package/dist/scss/Components/LuiFormElements/LuiRadioInput/LuiRadioInput.scss +17 -16
- package/dist/scss/Components/LuiFormElements/LuiSelectInput/LuiSelectInput.scss +37 -32
- package/dist/scss/Components/LuiFormElements/LuiTextAreaInput/LuiTextAreaInput.scss +37 -36
- package/dist/scss/Components/LuiFormElements/LuiTextInput/LuiTextInput.scss +42 -39
- package/dist/scss/Components/LuiFormSection/LuiFormSectionHeader.scss +4 -5
- package/dist/scss/Components/LuiFormSection/LuiHelpInfo/LuiHelpInfo.scss +4 -4
- package/dist/scss/Components/LuiForms/LuiComboSelect/LuiComboSelect.scss +11 -11
- package/dist/scss/Components/LuiShadow/LuiShadow.scss +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [16.2.3](https://github.com/linz/lui/compare/v16.2.2...v16.2.3) (2022-03-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Adding classname to luitextinput ([#638](https://github.com/linz/lui/issues/638)) ([92dc54f](https://github.com/linz/lui/commit/92dc54f595c6678c53a3393cc8d05d127be38d3a))
|
|
7
|
+
|
|
1
8
|
## [16.2.2](https://github.com/linz/lui/compare/v16.2.1...v16.2.2) (2022-03-24)
|
|
2
9
|
|
|
3
10
|
|
package/dist/index.js
CHANGED
|
@@ -888,8 +888,9 @@ var LuiCheckboxInput = function (props) {
|
|
|
888
888
|
'LuiCheckboxInput--isChecked': props.isChecked,
|
|
889
889
|
'LuiCheckboxInput--hasError': !!props.error,
|
|
890
890
|
'LuiCheckboxInput--isDisabled': !!props.isDisabled,
|
|
891
|
-
}) },
|
|
891
|
+
}, props.className) },
|
|
892
892
|
React__default["default"].createElement("label", { htmlFor: id, className: "LuiCheckboxInput-group" },
|
|
893
|
+
props.mandatory && (React__default["default"].createElement("span", { className: "LuiCheckboxInput-mandatory" }, "*")),
|
|
893
894
|
React__default["default"].createElement("input", __assign({ className: clsx('LuiCheckboxInput-input'), id: id, type: "checkbox", value: props.value, onChange: props.onChange, checked: props.isChecked, disabled: props.isDisabled }, props.inputProps)),
|
|
894
895
|
React__default["default"].createElement("span", { className: "LuiCheckboxInput-label" },
|
|
895
896
|
props.label,
|