@linzjs/lui 16.2.3 → 16.2.4

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/lui.esm.js CHANGED
@@ -863,7 +863,7 @@ var LuiCheckboxInput = function (props) {
863
863
  'LuiCheckboxInput--isDisabled': !!props.isDisabled,
864
864
  }, props.className) },
865
865
  React__default.createElement("label", { htmlFor: id, className: "LuiCheckboxInput-group" },
866
- props.mandatory && (React__default.createElement("span", { className: "LuiCheckboxInput-mandatory" }, "*")),
866
+ props.mandatory && (React__default.createElement("span", { "aria-label": "Required", className: "LuiCheckboxInput-mandatory" }, "*")),
867
867
  React__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)),
868
868
  React__default.createElement("span", { className: "LuiCheckboxInput-label" },
869
869
  props.label,