@linzjs/lui 17.43.2 → 17.43.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/dist/lui.esm.js CHANGED
@@ -15775,7 +15775,7 @@ var LuiSelectInput = function (props) {
15775
15775
  props.mandatory && React__default.createElement("span", { className: "LuiSelect-mandatory" }, "*"),
15776
15776
  React__default.createElement("span", { className: clsx$1('LuiSelect-label-text', props.hideLabel ? 'LuiScreenReadersOnly' : '') }, props.label),
15777
15777
  React__default.createElement("div", { className: "LuiSelect-wrapper" },
15778
- React__default.createElement("select", __assign$3({ name: id, onChange: props.onChange, value: props.value, className: "LuiSelect-select" }, props.selectProps),
15778
+ React__default.createElement("select", __assign$3({ name: id, id: id, onChange: props.onChange, value: props.value, className: "LuiSelect-select" }, props.selectProps),
15779
15779
  props.placeholderText && (React__default.createElement("option", { value: "", disabled: true }, props.placeholderText)),
15780
15780
  props.options.map(function (selection) { return (React__default.createElement("option", { key: selection.value, value: selection.value }, selection.label)); })),
15781
15781
  React__default.createElement(LuiIcon, { alt: 'Error', name: "ic_keyboard_arrow_down", className: "LuiSelect-chevron-icon", size: "md" })),